:root {
  --orange: #ff4d12;
  --orange-hot: #ff6a2e;
  --orange-deep: #e83500;
  --orange-glow: rgba(255, 77, 18, 0.45);
  --orange-soft: rgba(255, 77, 18, 0.14);
  --amber: #ffaa00;
  --ink: #0a0a0c;
  --ink-soft: #141418;
  --ink-card: #1a1a20;
  --text: #f4f2ef;
  --text-muted: rgba(244, 242, 239, 0.62);
  --text-dark: #1a1a1f;
  --text-dark-muted: #5c5c68;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(20, 20, 23, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gradient-orange: linear-gradient(135deg, #ff4d12 0%, #ff8a00 45%, #ff2d00 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 77, 18, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(255, 138, 0, 0.2), transparent 50%),
    linear-gradient(180deg, #0a0a0c 0%, #121018 50%, #0f0d12 100%);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.gradient-text {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Animated background orbs ── */

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: drift 18s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 77, 18, 0.25);
  top: -10%;
  left: -5%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 138, 0, 0.18);
  top: 30%;
  right: -8%;
  animation-delay: -6s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 45, 0, 0.15);
  bottom: 10%;
  left: 30%;
  animation-delay: -12s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Nav ── */

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1rem 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.site-nav.scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 16px var(--orange-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--gradient-orange);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--orange-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--orange-glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.btn-glow {
  background: var(--gradient-orange);
  color: #fff;
  box-shadow: 0 4px 24px var(--orange-glow);
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--orange-glow);
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px var(--orange-glow); }
  50% { box-shadow: 0 4px 32px rgba(255, 77, 18, 0.6); }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ── Hero ── */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  animation: meshShift 20s linear infinite;
}

@keyframes meshShift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.hero-copy { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero app showcase — LARGE logos */

.hero-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hero-app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s, background 0.4s;
}

.hero-app-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 18, 0.4);
  background: rgba(255, 77, 18, 0.08);
  box-shadow: 0 20px 60px rgba(255, 77, 18, 0.2);
}

.hero-app-card strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-app-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Logo frames — crisp, large, no blur */

.logo-frame {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.logo-frame-lg {
  width: 140px;
  height: 140px;
  border-radius: 32px;
}

.logo-frame-gold {
  box-shadow: 0 16px 48px rgba(245, 184, 0, 0.25), 0 0 0 1px rgba(245, 184, 0, 0.2);
}

.logo-frame-green {
  box-shadow: 0 16px 48px rgba(61, 154, 106, 0.25), 0 0 0 1px rgba(61, 154, 106, 0.2);
}

.logo-frame-navy {
  box-shadow: 0 16px 48px rgba(15, 26, 61, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-app-card:hover .logo-frame {
  transform: scale(1.06);
}

.hero-app-card.hero-card-enter {
  animation: cardRise 0.8s var(--ease) backwards;
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.92);
  }
}

/* ── Journey ── */

.journey-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: linear-gradient(180deg, #0f0d12 0%, var(--ink-soft) 100%);
}

.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--text-muted);
  max-width: 50ch;
  margin-top: 0.75rem;
}

.journey-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.journey-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
}

.journey-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.journey-phase {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.journey-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto 1rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease);
}

.journey-step:hover .journey-logo {
  transform: scale(1.08) rotate(-2deg);
}

.journey-name {
  font-weight: 800;
  font-size: 1.05rem;
}

.journey-line {
  width: 60px;
  height: 2px;
  margin-top: 5.5rem;
  background: var(--gradient-orange);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Apps bento ── */

.apps-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: var(--ink-soft);
}

.apps-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  background: var(--ink-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  overflow: hidden;
  position: relative;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 18, 0.35);
  box-shadow: 0 24px 64px rgba(255, 77, 18, 0.15);
}

.bento-card:hover::before { opacity: 0.04; }

.bento-head {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
}

.bento-head h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.bento-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-hot);
  margin-top: 0.15rem;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

.bento-features {
  list-style: none;
  position: relative;
}

.bento-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.bento-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-orange);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-dev {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.badge-live {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

/* Mini mocks inside bento cards */

.bento-mock {
  margin-top: auto;
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 0.82rem;
  position: relative;
}

.bento-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.bento-mock-bar span:first-child {
  font-weight: 800;
  color: var(--amber);
}

.bento-mock-bar span:nth-child(2) {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.bento-mock-bar em {
  font-style: normal;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: var(--gradient-orange);
  color: #fff;
  font-size: 0.75rem;
}

.bento-mock-thank {
  background: rgba(61, 154, 106, 0.12);
  border: 1px solid rgba(61, 154, 106, 0.25);
  text-align: center;
}

.bento-mock-thank span {
  display: block;
  font-size: 0.72rem;
  color: #4ade80;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bento-mock-thank strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.bento-mock-thank code {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.bento-mock-wheel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 26, 61, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-wheel {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(#f5b800, #ff4d12, #4ade80, #60a5fa, #f5b800);
  border: 3px solid #fff;
  flex-shrink: 0;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.bento-mock-wheel span {
  font-weight: 700;
  color: var(--amber);
}

/* ── Values ── */

.values-section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  background: var(--ink);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 77, 18, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 77, 18, 0.15);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 18, 0.35);
}

.value-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── About ── */

.about-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ink) 0%, #120e10 100%);
}

.about-panel {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.about-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px var(--orange-glow);
}

/* ── CTA ── */

.cta-section {
  position: relative;
  z-index: 1;
  padding: 4rem 0 6rem;
}

.cta-panel {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem);
  border-radius: var(--radius-xl);
  background: var(--gradient-orange);
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.25), transparent 50%);
  pointer-events: none;
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  position: relative;
}

.cta-panel .btn-glow {
  background: #fff;
  color: var(--orange-deep);
  animation: none;
  position: relative;
}

.cta-panel .btn-glow:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ── Footer ── */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--ink);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--text);
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom a:hover { color: var(--text); }

/* ── Privacy page (light) ── */

body.privacy-page {
  background: #faf8f5;
  color: var(--text-dark);
}

body.privacy-page .page-bg { display: none; }

body.privacy-page .site-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

body.privacy-page .brand,
body.privacy-page .nav-links a { color: var(--text-dark); }

body.privacy-page .nav-links a { color: var(--text-dark-muted); }

body.privacy-page .nav-toggle span { background: var(--text-dark); }

body.privacy-page .nav-cta {
  background: var(--gradient-orange);
  color: #fff !important;
}

.page-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(180deg, #fff5f0 0%, #faf8f5 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-hero .meta { color: var(--text-dark-muted); }

.privacy-content {
  padding: 3rem 0 5rem;
  max-width: 720px;
  margin-inline: auto;
  width: min(720px, calc(100% - 2.5rem));
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 2.5rem 0 0.75rem;
}

.privacy-content p,
.privacy-content li { color: var(--text-dark-muted); margin-bottom: 1rem; }

.privacy-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.privacy-content th,
.privacy-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.privacy-content th {
  background: #f3f0eb;
  font-weight: 600;
  color: var(--text-dark);
}

.privacy-content a {
  color: var(--orange);
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.back-link:hover { color: var(--text-dark); }

body.privacy-page .site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.55);
}

/* ── Reveal animations ── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.45s; }

/* ── Responsive ── */

@media (max-width: 960px) {
  .hero-apps,
  .apps-bento,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .journey-line { display: none; }

  .journey-track {
    flex-direction: column;
    align-items: center;
  }

  .bento-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.25rem;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: block; }

  .hero-app-card .logo-frame {
    width: 100px;
    height: 100px;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
