/* aesi — modern glass one‑pager */

:root {
  --bg: hsl(235 23% 11%);
  --bg-2: hsl(235 21% 9%);
  --text: hsl(0 0% 98%);
  --muted: hsl(220 14% 72%);
  /* Blue-forward brand to match app */
  --brand: hsl(210 100% 56%); /* ~#0A84FF */
  --brand-2: hsl(199 100% 60%); /* bright cyan */
  --brand-3: hsl(195 100% 72%); /* light sky */
  --brand-4: hsl(195 100% 84%); /* light sky */
  --grid: hsla(0 0% 100% / 0.05);
  --glass: hsla(0 0% 100% / 0.06);
  --glass-border: hsla(0 0% 100% / 0.18);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-s: 12px;
  --radius-xs: 10px;
  --maxw: 1120px;
  --font-head: 'Chakra Petch', ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, Inter, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
  --font-body: 'Manrope', ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
}

* {
  box-sizing: border-box;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(
      1200px 800px at 10% -20%,
      hsl(260 90% 18% / 0.45),
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 100% 0%,
      hsl(195 90% 20% / 0.45),
      transparent 50%
    ),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  min-height: 100svh;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated aurora wash */
body::before {
  content: '';
  position: fixed;
  inset: -30% -10% -30% -10%;
  z-index: -2;
  background: conic-gradient(
    from 0deg at 50% 50%,
    hsl(210 100% 56% / 0.14),
    hsl(199 100% 60% / 0.12),
    hsl(195 100% 72% / 0.14),
    hsl(210 100% 56% / 0.14)
  );
  filter: blur(70px) saturate(140%);
  animation: aurora-rotate 36s linear infinite;
  pointer-events: none;
}
@keyframes aurora-rotate {
  to {
    transform: rotate(360deg);
  }
}

/* Utilities */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Tabler Icons Styling */
.tabler-icon {
  width: 1.2em;
  height: 1.2em;
  stroke-width: 1.5;
  vertical-align: middle;
}
.ti {
  /* Lighten Tabler icon stroke via variable font axis */
  font-variation-settings: 'wght' 250, 'opsz' 32;
}

/* Product Demo Carousel */
.product-demo {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 32px 0;
}

.product-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin: 24px 0;
}

.product-info {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-info .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-info .competitive-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.product-layout .product-demo {
  flex: 1 1 320px;
  margin: 0;
  justify-content: center;
}

.product-carousel {
  flex-shrink: 0;
}

.product-device {
  position: relative;
  width: min(360px, 90vw);
  aspect-ratio: 9/19.5;
  background: linear-gradient(180deg, hsl(240 10% 12%), hsl(240 12% 8%));
  border: 1.5px solid hsla(0 0% 100% / 0.08);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.product-device::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.slides {
  width: 100%;
  aspect-ratio: 9/19.5;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
}

.product-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 28px;
}

.product-screen.active {
  opacity: 1;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--glass-border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: var(--brand-2);
}

.dot:hover {
  background: var(--brand-2);
}

.product-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-point.active {
  border-color: var(--brand-2);
  background: transparent;
}

.feature-point.active span {
  color: var(--brand-2);
}

.feature-point:hover {
  border-color: var(--brand-2);
}

.feature-point i {
  color: var(--brand-2);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-point span {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .product-demo {
    flex-direction: column;
    gap: 24px;
  }
}

/* Title Slide Enhancements */
.title-hero {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 32px 0;
}

.title-content {
  text-align: center;
}

.title-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.title-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
}

.title-feature i {
  color: var(--brand-2);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.title-feature span {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.title-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.badge-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.badge-icon {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-2);
  text-shadow: 0 0 20px var(--brand-2);
}

.badge-text {
  text-align: left;
}

.badge-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.badge-tagline {
  font-size: 0.9rem;
  color: var(--brand-2);
  font-style: italic;
}

.badge-description {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .title-features {
    grid-template-columns: 1fr;
  }

  .badge-content {
    flex-direction: column;
    gap: 8px;
  }

  .badge-text {
    text-align: center;
  }
}

/* Deck Controls */
.deck-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 8px;
}

.deck-indicator {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.deck-progress {
  width: 100%;
  height: 4px;
  background: var(--glass-border);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.deck-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Enhanced Deck Styles */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.problem-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-s);
  padding: 24px;
  text-align: center;
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  color: var(--text);
  margin: 0 0 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.problem-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.stat-highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  padding: 20px;
  border-radius: var(--radius-s);
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
}

.solution-step-card {
  margin: 24px 0;
  padding: 24px;
  border-radius: var(--radius-s);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.solution-step-card h3 {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 1.1rem;
}


.step-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-flow i {
  color: #fff;
  font-size: 2.6rem;
}

.step-col {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
}

.step-label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-size: 1.1rem;
}

.step-col p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.step-summary {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
  text-align: center;
}

.feature-check {
  color: #00ff88;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-icon {
  font-size: 3.8rem;
  color: #fff;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.feature-content h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
}

.feature-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.workflow-steps {
  margin: 32px 0;
}

.workflow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
  margin-bottom: 16px;
}

.step-number {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 1.2rem;
}

.step-content p {
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.5;
}

.step-tech {
  font-size: 0.85rem;
  color: var(--brand-2);
  font-style: italic;
}

.workflow-arrow {
  text-align: center;
  font-size: 2rem;
  color: var(--brand);
  margin: 8px 0;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.security-layer {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.security-layer h4 {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 1.1rem;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}

.security-layer p {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.security-level {
  background: transparent;
  color: var(--brand-2);
  border: 1px solid var(--brand-2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.security-highlight {
  background: linear-gradient(135deg, #00ff88, #00cc66);
  color: white;
  padding: 20px;
  border-radius: var(--radius-s);
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
}

.token-benefits {
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.token-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.token-icon {
  font-size: 3rem;
}

.token-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
  font-family: var(--font-head);
}

.token-card strong {
  color: var(--text);
  font-weight: 600;
}

.token-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.market-segments {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.market-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  padding: 24px;
  backdrop-filter: blur(12px);
}

.market-card.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 1px solid var(--brand);
}

.market-size {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 12px;
}

.market-card.primary .market-size {
  color: white;
}

.market-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
}

.market-card.primary h3 {
  color: white;
}

.market-card p {
  margin: 0 0 16px 0;
  color: var(--muted);
  line-height: 1.5;
}

.market-card.primary p {
  color: rgba(255, 255, 255, 0.9);
}

.market-pain {
  font-size: 0.85rem;
  color: var(--brand-2);
  font-style: italic;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--brand-2);
  border-radius: 8px;
  margin-top: auto;
}

@media (max-width: 640px) {
  .market-segments {
    grid-template-columns: 1fr;
  }
}

.timing-alert {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  color: white;
  padding: 20px;
  border-radius: var(--radius-s);
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
}

.revenue-streams {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.revenue-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
}

.revenue-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.revenue-details h4 {
  margin: 0 0 8px 0;
  color: var(--text);
  font-size: 1.2rem;
}

.revenue-details p {
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.5;
}

.revenue-math {
  font-size: 0.9rem;
  color: var(--brand-2);
  line-height: 1.4;
}

.revenue-discount {
  color: #00ff88;
  font-weight: 600;
}

.business-highlight {
  background: transparent;
  color: var(--brand-2);
  border: 1px solid var(--brand-2);
  padding: 20px;
  border-radius: var(--radius-s);
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.progress-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
  text-align: center;
  align-items: center;
  gap: 12px;
}

.progress-item.completed,
.progress-item.in-progress,
.progress-item.upcoming {
  border-color: hsla(0 0% 100% / 0.14);
}

.progress-status {
  font-size: 0.85rem;
  font-weight: 600;
}

.progress-item .progress-status {
  color: var(--text);
}

.progress-icon {
  font-size: 3rem;
}

.progress-item h4 {
  margin: 0;
  color: var(--text);
}

.progress-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.traction-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.metric {
  text-align: center;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
}

.metric-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.team-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
}

.team-card.hiring {
  border-style: dashed;
  border-color: hsla(195 100% 72% / 0.5);
}

.team-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-head);
}

.team-card.hiring .team-avatar {
  font-size: 1.6rem;
}

.team-meta h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.team-title {
  margin: 4px 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-3);
}

.team-bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.team-footnote {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.roadmap-timeline {
  margin: 32px 0;
}

.roadmap-phase {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.roadmap-phase:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: -32px;
  width: 2px;
  background: var(--glass-border);
}

.roadmap-phase.current::after {
  background: var(--brand-2);
}

.phase-timeline {
  background: var(--glass);
  border: 2px solid var(--glass-border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.9rem;
  height: fit-content;
  min-width: 80px;
  text-align: center;
}

.roadmap-phase.current .phase-timeline {
  background: var(--brand-2);
  border-color: var(--brand-2);
  color: white;
}

.phase-content {
  flex: 1;
  padding: 0 0 0 16px;
}

.phase-content h4 {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 1.2rem;
}

.phase-content p {
  margin: 0 0 16px 0;
  color: var(--muted);
  line-height: 1.5;
}

.phase-deliverables {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.competitive-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.moat-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.moat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.moat-item h4 {
  margin: 0 0 12px 0;
  color: var(--text);
  font-size: 1.1rem;
}

.moat-item p {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.moat-strength {
  background: transparent;
  color: var(--brand-2);
  border: 1px solid var(--brand-2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.competition-comparison {
  margin-top: 32px;
}

.competition-comparison h4 {
  color: var(--text);
  margin: 0 0 20px 0;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.competitor,
.us {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.competitor strong {
  color: var(--text);
  font-size: 1.1rem;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}

.competitor {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.us {
  border: 1px solid var(--brand-2);
  color: var(--text);
}

.us strong {
  color: var(--brand-2);
  font-size: 1.1rem;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}

.ask-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.ask-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.ask-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.ask-item h4 {
  margin: 0 0 8px 0;
  color: var(--text);
  font-size: 1.2rem;
}

.ask-item p {
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.5;
}

.ask-details {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.ask-details strong {
  color: var(--text);
}

.urgency-banner {
  background: transparent;
  color: var(--brand-2);
  border: 1px solid var(--brand-2);
  padding: 24px;
  border-radius: var(--radius-s);
  text-align: center;
  margin-top: 32px;
}

.urgency-banner h4 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
}

.urgency-banner p {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workflow-step {
    flex-direction: column;
    text-align: center;
  }

  .feature-item,
  .revenue-item,
  .ask-item {
    flex-direction: column;
    text-align: center;
  }

  .roadmap-phase {
    flex-direction: column;
    gap: 12px;
  }

  .roadmap-phase::after {
    display: none;
  }

  .phase-content {
    padding: 0;
  }
}
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: var(--shadow), inset 0 1px 0 hsla(0 0% 100% / 0.04);
  border-radius: var(--radius);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid hsla(0 0% 100% / 0.16);
  background: linear-gradient(
    180deg,
    hsla(0 0% 100% / 0.08),
    hsla(0 0% 100% / 0.02)
  );
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: hsla(0 0% 100% / 0.28);
}
.btn:active {
  transform: translateY(0);
}
.btn.primary {
  border: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 30px hsl(210 100% 56% / 0.35),
    inset 0 0 0 1px hsla(0 0% 100% / 0.12);
}
.btn.primary:hover {
  box-shadow: 0 14px 36px hsl(210 100% 56% / 0.45);
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.badge.subtle {
  background: hsla(0 0% 100% / 0.08);
  border: 1px solid hsla(0 0% 100% / 0.18);
}

h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 4rem);
  line-height: 1.05;
  margin: 12px 0 14px;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}
h2 {
  font-size: clamp(1.6rem, 1.2vw + 1rem, 2.4rem);
  margin: 0 0 12px;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}
h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}
h4 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}
.brand .brand-mark {
  font-family: 'Exo', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Inter, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
}
.lede,
.section-lede {
  color: var(--muted);
}
.lede {
  font-size: clamp(1.05rem, 0.8vw + 0.8rem, 1.25rem);
}

/* Hero title container styling */
.hero-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-main {
  font-size: 64px;
  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-2) 50%,
    var(--brand-3)
  );
  letter-spacing: -7px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px hsl(210 100% 56% / 0.25);
}

.hero-title-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: var(--brand-4);
  letter-spacing: 0px;
  margin-top: -10px;
  margin-left: 35px;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
}

/* Gradient headline vibe for pitch deck */
.title-content h1 {
  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-2) 50%,
    var(--brand-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px hsl(210 100% 56% / 0.25);
}

/* Header */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  /* Expand header card to match content container width */
  width: min(var(--maxw), 100%);
}
.site-header.scrolled {
  background: hsla(0 0% 100% / 0.05);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.brand img {
  filter: drop-shadow(0 4px 10px hsl(210 100% 56% / 0.3));
}
/* Text mark for brand (replace SVG) */
.brand .brand-mark {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  /* Circle badge around the Æ mark */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: hsla(0 0% 100% / 0.08);
  color: var(--text);
  text-shadow: 0 0 0 transparent, 0 0 14px hsl(210 100% 56% / 0.35);
}
.brand-text-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}
.brand .brand-text {
  font-weight: 600;
  letter-spacing: -3px;
  font-family: 'Exo', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Inter, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
  text-align: center;
}
.brand .brand-subtitle {
  font-size: 11px;
  font-weight: 400;
  color: var(--brand-4);
  letter-spacing: 0px;
  margin-top: -10px;
  margin-left: 15px;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
}

/* Apply hero gradient styling to header brand text, but keep header font-size */
.site-header .brand .brand-text {
  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-2) 50%,
    var(--brand-3)
  );
  font-size: 22pt;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 40px hsl(210 100% 56% / 0.25);
}

/* Match the Æ mark to the same gradient while keeping the faint circle bg */
.site-header .brand .brand-mark {
  /* Two layers: gradient for the glyph, subtle glass for the circle */
  background: linear-gradient(
      135deg,
      var(--brand),
      var(--brand-2) 50%,
      var(--brand-3)
    ),
    linear-gradient(0deg, hsla(0 0% 100% / 0.08), hsla(0 0% 100% / 0.08));
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  color: transparent;
  text-shadow: 0 12px 40px hsl(210 100% 56% / 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  position: relative;
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
}
.site-nav a:hover {
  opacity: 1;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand),
    var(--brand-2),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid hsla(0 0% 100% / 0.16);
  background: hsla(0 0% 100% / 0.04);
  color: var(--text);
}
.menu span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.menu span:nth-child(1) {
  top: 12px;
}
.menu span:nth-child(2) {
  top: 19px;
}
.menu span:nth-child(3) {
  top: 26px;
}
.site-header.open .menu span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.site-header.open .menu span:nth-child(2) {
  opacity: 0;
}
.site-header.open .menu span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Hero */
.content {
  position: relative;
  isolation: isolate;
}
/* Subtle grid overlay for tech vibe */
.content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  mask-image: radial-gradient(
    1200px 700px at 50% 10%,
    #000 55%,
    transparent 100%
  );
}
.hero {
  position: relative;
  padding: clamp(72px, 12vw, 120px) 0 clamp(40px, 8vw, 72px);
  text-align: center;
}
.hero .actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
/* Two‑column hero layout with device preview */
.hero .hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}
.hero .hero-copy {
  text-align: center;
}
.hero .hero-visual {
  display: flex;
  justify-content: center;
}

/* iPhone device frame */
.device.iphone {
  position: relative;
  width: min(360px, 90vw);
  padding: 12px;
  border-radius: 40px;
  background: linear-gradient(180deg, hsl(240 10% 12%), hsl(240 12% 8%));
  border: 1.5px solid hsla(0 0% 100% / 0.08);
  box-shadow: var(--shadow);
}
.iphone-screen {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  background: #000;
}

/* --- Hero carousel (inside device frame) --- */
.carousel {
  position: relative;
  width: 100%;
}
.carousel .slides {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}
.carousel .iphone-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.carousel .iphone-screen.active {
  position: relative;
  opacity: 1;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: hsla(0 0% 100% / 0.08);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.carousel-btn:hover {
  background: hsla(0 0% 100% / 0.14);
}
.carousel-btn.prev {
  left: 8px;
}
.carousel-btn.next {
  right: 8px;
}
.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: hsla(0 0% 100% / 0.35);
  cursor: pointer;
}
.carousel-dots .dot.active {
  background: var(--text);
}

.orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px) saturate(140%);
}
.orb {
  position: absolute;
  width: 36vw;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.6;
}
.orb-a {
  left: -8vw;
  top: -6vw;
  background: radial-gradient(closest-side, var(--brand), transparent 70%);
}
.orb-b {
  right: -10vw;
  top: 2vw;
  background: radial-gradient(closest-side, var(--brand-2), transparent 70%);
}
.orb-c {
  left: 22vw;
  bottom: -18vw;
  background: radial-gradient(closest-side, var(--brand-3), transparent 70%);
}

/* Sections */
.section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.section.alt {
  background: linear-gradient(
    180deg,
    hsla(0 0% 100% / 0.02),
    hsla(0 0% 0% / 0.02)
  );
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.card {
  padding: 22px;
  position: relative;
  will-change: transform, opacity;
}
.card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card .icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 0;
}
.card .icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  filter: drop-shadow(0 10px 22px hsl(210 100% 56% / 0.25));
}

/* Neon glass borders for cards */
.card.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    hsl(210 100% 56% / 0.35),
    hsl(199 100% 60% / 0.35),
    hsl(195 100% 72% / 0.35)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  padding: 18px;
  text-align: center;
}
.stat strong {
  font-size: 1.6rem;
  display: block;
  line-height: 1.1;
}
.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  text-align: center;
  padding: clamp(24px, 4vw, 36px);
}
.cta h2 {
  margin: 0 0 8px;
}
.cta .btn {
  margin-top: 10px;
}

/* Footer */
.site-footer {
  /* More vertical padding for breathing room */
  padding: clamp(48px, 6vw, 72px) 0;
  color: var(--muted);
  /* Glass background and subtle divider on top */
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}
.site-footer .wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
}
.site-footer .brand {
  opacity: 0.9;
}
.site-footer .links {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.site-footer .links a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer .links a:hover {
  color: var(--text);
}
.site-footer .copy {
  justify-self: end;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .hero-wrap {
    display: block;
  }
  .hero .hero-copy {
    text-align: center;
  }
  .hero .hero-visual {
    margin-top: 20px;
  }
  .carousel-btn {
    display: none;
  }
  .site-nav {
    position: absolute;
    right: 12px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    width: 230px;
    background: hsla(0 0% 100% / 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-header.open .site-nav {
    display: flex;
  }
  .menu {
    display: inline-block;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .site-footer .copy {
    justify-self: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  .btn,
  .menu span {
    transition: none;
  }
  .reveal-card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Docs */
.doc {
  padding: clamp(24px, 4vw, 36px);
  line-height: 1.65;
}
.doc h1 {
  margin-top: 0;
  margin-bottom: 12px;
}
.doc h2,
.doc h3,
.doc h4 {
  margin-top: 22px;
  margin-bottom: 8px;
}
.doc h1,
.doc h2,
.doc h3,
.doc h4 {
  font-family: var(--font-head);
  letter-spacing: 0.2px;
}
.doc p {
  margin: 10px 0;
}
.doc a {
  color: var(--brand);
  text-decoration: none;
}
.doc a:hover {
  text-decoration: underline;
}
.doc ul,
.doc ol {
  margin: 10px 0 10px 20px;
  padding-left: 18px;
}
.doc li {
  margin: 6px 0;
}
.doc hr {
  border: 0;
  border-top: 1px solid var(--glass-border);
  margin: 22px 0;
}
.doc code {
  background: hsla(0 0% 100% / 0.08);
  border: 1px solid hsla(0 0% 100% / 0.16);
  border-radius: 6px;
  padding: 1px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  font-size: 0.95em;
}
.doc pre {
  background: hsla(0 0% 100% / 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px;
  overflow: auto;
}
.doc pre code {
  background: transparent;
  border: 0;
  padding: 0;
}

/* Contact Section */
.contact-grid {
  margin: 32px 0;
}

.contact-info {
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-methods {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-s);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
}

.contact-link:hover {
  border-color: var(--brand-2);
  background: hsla(0 0% 100% / 0.08);
}

.contact-icon {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-2);
}

/* Pitch Deck */
.deck {
  padding: clamp(20px, 3vw, 28px);
}
.deck .slide {
  display: none;
  min-height: min(62vh, 720px);
}
.deck .slide.active {
  display: block;
  animation: deck-fade 220ms ease;
}
.deck .slide.active[aria-label='Title'] {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@keyframes deck-fade {
  from {
    opacity: 0;
    transform: translate3d(0, 6px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.deck .slide h1,
.deck .slide h2 {
  margin-top: 0;
}
.deck .slide .slide-media {
  margin: 12px 0 10px;
}
.deck .slide .slide-media img,
.deck .slide .slide-media video {
  width: min(520px, 100%);
  height: auto;
  display: block;
  border-radius: var(--radius-s);
  border: 1px solid var(--glass-border);
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.deck-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.deck-indicator {
  color: var(--muted);
  font-weight: 600;
}
.deck-brand {
  font-family: 'Exo', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Inter, 'Helvetica Neue', Arial, Noto Sans, 'Apple Color Emoji',
    'Segoe UI Emoji';
  font-weight: 600;
  letter-spacing: -3px;
  font-size: 20pt;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  opacity: 1;
  color: transparent;
  background: linear-gradient(
    135deg,
    var(--brand),
    var(--brand-2) 50%,
    var(--brand-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 30px hsl(210 100% 56% / 0.22);
  transition: text-shadow 0.2s ease, transform 0.2s ease, opacity 0.25s ease;
}
.deck-brand:hover,
.deck-brand:focus-visible {
  text-shadow: 0 16px 40px hsl(210 100% 56% / 0.32);
  transform: translateY(-1px);
}
.deck-brand.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.deck-progress {
  margin-top: 10px;
  height: 6px;
  border-radius: 999px;
  background: hsla(0 0% 100% / 0.08);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}
.deck-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

/* Button upgrades: neon shine */
.btn {
  position: relative;
  overflow: hidden;
}
.btn.primary::after {
  content: '';
  position: absolute;
  top: -50%;
  bottom: -50%;
  width: 40%;
  left: -20%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    hsla(0 0% 100% / 0.45) 45%,
    transparent 60%
  );
  transform: translateX(-120%) skewX(-12deg);
  transition: transform 0.5s ease;
}
.btn.primary:hover::after {
  transform: translateX(220%) skewX(-12deg);
}

/* Card reveal animations */
.reveal-card {
  opacity: 0;
  transform: translate3d(var(--slide-x, 0px), 16px, 0) scale(0.98);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-card.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
/* slight lateral variety per column */
.grid .card:nth-child(3n + 1) {
  --slide-x: -10px;
}
.grid .card:nth-child(3n + 2) {
  --slide-x: 0px;
}
.grid .card:nth-child(3n + 3) {
  --slide-x: 10px;
}
