/* ── Migi Academy — design system ───────────────────────────── */
:root {
  --purple: #6C4DFF;
  --pink: #FF4F9A;
  --blue: #3B82F6;
  --green: #4CAF50;
  --orange: #FF9800;
  --ink: #16103a;
  --ink-soft: #4d4768;
  --bg: #ffffff;
  --lavender: #f6f4ff;
  --lavender-deep: #ece8ff;
  --line: #e9e6f7;
  --accent: var(--purple);
  --accent-2: var(--pink);
  --radius: 24px;
  --glow-opacity: 1;
  --font-display: "Sora", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --shadow-card: 0 2px 6px rgba(22, 16, 58, 0.04), 0 18px 44px -18px rgba(76, 49, 182, 0.18);
  --shadow-lift: 0 4px 10px rgba(22, 16, 58, 0.05), 0 32px 64px -24px rgba(76, 49, 182, 0.32);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; text-wrap: balance; }
p { text-wrap: pretty; }

.grad-text {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* section header pattern */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 700; max-width: 640px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.sec-sub { color: var(--ink-soft); font-size: 17px; line-height: 1.6; max-width: 560px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 16px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 28px -10px color-mix(in oklch, var(--accent) 65%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px color-mix(in oklch, var(--accent) 75%, transparent); }
.btn-ghost {
  color: var(--ink); background: #fff; border: 1.5px solid var(--line);
  box-shadow: 0 6px 18px -8px rgba(22, 16, 58, 0.12);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: color-mix(in oklch, var(--accent) 40%, var(--line)); }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translate(2px, -2px); }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233, 230, 247, 0.7);
}
.nav-inner { display: flex; align-items: center; gap: 40px; height: 76px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-word { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.03em; }
.logo-word .m1 { color: var(--purple); }
.logo-word .m2 { color: var(--pink); }
.logo-word .m3 { color: var(--orange); }
.logo-word .m4 { color: var(--blue); }
.logo-sub { font-size: 9px; font-weight: 800; letter-spacing: 0.42em; color: var(--ink-soft); margin-top: 3px; text-transform: uppercase; }
.nav-links { display: flex; gap: 6px; margin: 0 auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap;
  padding: 9px 14px; border-radius: 999px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: var(--lavender); }
.nav .btn { padding: 12px 22px; font-size: 14.5px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; overflow: clip; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: var(--glow-opacity);
  background:
    radial-gradient(720px 520px at 78% 30%, color-mix(in oklch, var(--accent) 16%, transparent), transparent 70%),
    radial-gradient(560px 420px at 92% 75%, color-mix(in oklch, var(--accent-2) 10%, transparent), transparent 70%),
    radial-gradient(480px 380px at 8% 90%, color-mix(in oklch, var(--blue) 8%, transparent), transparent 70%);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.02fr 1fr;
  align-items: center; gap: 48px; padding: 64px 0 24px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 64px); font-weight: 800; line-height: 1.06;
  margin-bottom: 24px;
}
.hero-sub { font-size: 18px; line-height: 1.65; color: var(--ink-soft); max-width: 480px; margin-bottom: 36px; }
.hero-sub strong { font-weight: 700; }
.hero-sub .hl-purple { color: var(--purple); } .hero-sub .hl-pink { color: var(--pink); }
.hero-sub .hl-blue { color: var(--blue); } .hero-sub .hl-orange { color: var(--orange); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.trust .tick {
  width: 19px; height: 19px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-visual { position: relative; }
.hero-visual::before {
  content: ""; position: absolute; inset: 6% -4% 10% 0;
  background: radial-gradient(closest-side, color-mix(in oklch, var(--accent) 26%, transparent), transparent);
  filter: blur(30px); opacity: var(--glow-opacity);
}
.hero-visual img {
  position: relative; width: 100%; border-radius: calc(var(--radius) * 1.2);
  -webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 76%, transparent 100%);
}
.hero-badge {
  position: absolute; left: -10px; bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px; padding: 12px 18px;
  box-shadow: var(--shadow-card);
}
.hero-badge .emoji { font-size: 24px; }
.hero-badge b { display: block; font-size: 14.5px; }
.hero-badge small { font-size: 12px; color: var(--ink-soft); font-weight: 600; }

/* ── Metrics band ───────────────────────────────────────────── */
.metrics { padding: 36px 0 0; }
.metrics-card {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 34px 12px;
}
.metric { text-align: center; position: relative; }
.metric + .metric::before {
  content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line);
}
.metric .num { font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); font-weight: 800; }
.metric .lbl { font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-top: 6px; }

/* ── Proof strip ────────────────────────────────────────────── */
.proof { padding: 40px 0 0; }
.proof-card {
  display: grid; grid-template-columns: 0.92fr 1.4fr; gap: 44px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 36px 40px;
}
.proof-lead { display: flex; align-items: center; gap: 22px; padding-right: 40px; border-right: 1px solid var(--line); }
.proof-years {
  font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 0.85; flex: none;
  background: linear-gradient(150deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-years span { display: block; font-size: 16px; font-weight: 700; letter-spacing: 0.04em; -webkit-text-fill-color: var(--ink-soft); margin-top: 4px; }
.proof-lead p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); }
.proof-lead strong { color: var(--ink); font-weight: 700; }
.proof-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-points li { display: flex; flex-direction: column; gap: 11px; }
.pp-ic {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ppc);
  background: color-mix(in oklch, var(--ppc) 12%, white);
}
.pp-ic svg { width: 21px; height: 21px; }
.proof-points b { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.proof-points span span, .proof-points li > span { font-size: 13px; line-height: 1.5; color: var(--ink-soft); }
.proof-points li > span { display: flex; flex-direction: column; }

/* ── Programs ───────────────────────────────────────────────── */
.programs { padding: 110px 0 0; }
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: start; }
.prog-card {
  --pc: var(--purple);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.prog-media { position: relative; aspect-ratio: 4 / 3.1; overflow: hidden; }
.prog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prog-card:hover .prog-media img { transform: scale(1.05); }
.prog-chip {
  position: absolute; top: 14px; left: 14px;
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
  background: color-mix(in oklch, var(--pc) 88%, white);
  box-shadow: 0 8px 20px -6px color-mix(in oklch, var(--pc) 70%, transparent);
}
.prog-body { padding: 22px 22px 24px; display: block; }
.prog-body h3 { font-size: 19px; font-weight: 700; color: var(--pc); margin-bottom: 6px; }
.prog-age { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.prog-body ul { list-style: none; display: grid; gap: 8px; margin-bottom: 20px; }
.prog-body li { display: flex; gap: 9px; font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.45; }
.prog-body li::before { content: "✦"; color: var(--pc); font-size: 11px; margin-top: 2px; }
.prog-more {
  margin-top: 0; font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: var(--pc); display: inline-flex; gap: 7px; align-items: center;
  background: none; border: none; padding: 0; cursor: pointer; text-align: left;
}
.prog-more .arr { transition: transform 0.3s ease; }
.prog-card:hover .prog-more .arr { transform: translateX(4px); }
.prog-more .prog-more-hide { display: none; }
.prog-more[aria-expanded="true"] .prog-more-show { display: none; }
.prog-more[aria-expanded="true"] .prog-more-hide { display: inline; }
.prog-more[aria-expanded="true"] .arr { transform: rotate(90deg); }
.prog-card:hover .prog-more[aria-expanded="true"] .arr { transform: rotate(90deg) translateX(4px); }

/* Expandable detail — height driven inline by JS (deterministic) */
.prog-detail {
  max-height: 0; overflow: hidden;
}
.prog-detail-inner > p {
  font-size: 13.5px; line-height: 1.6; color: var(--ink-soft);
  padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--line);
}
.prog-meta { display: grid; gap: 9px; margin: 14px 0 16px; }
.prog-meta > div { display: flex; align-items: baseline; gap: 10px; }
.prog-meta dt {
  flex: none; width: 96px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.prog-meta dd { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.prog-cta {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  font-size: 13.5px; font-weight: 700; color: #fff;
  background: var(--pc); padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 8px 20px -8px color-mix(in oklch, var(--pc) 70%, transparent);
  transition: transform 0.2s ease;
}
.prog-cta:hover { transform: translateY(-2px); }
.prog-cta .arr { transition: transform 0.2s ease; }
.prog-cta:hover .arr { transform: translateX(3px); }

/* ── Creations (dark bento) ─────────────────────────────────── */
.creations { margin-top: 120px; padding: 96px 0 104px; background: var(--ink); color: #fff; position: relative; overflow: clip; }
.creations .glow {
  position: absolute; inset: 0; pointer-events: none; opacity: var(--glow-opacity);
  background:
    radial-gradient(640px 420px at 12% 0%, color-mix(in oklch, var(--accent) 24%, transparent), transparent 70%),
    radial-gradient(560px 420px at 95% 100%, color-mix(in oklch, var(--accent-2) 16%, transparent), transparent 70%);
}
.creations .wrap { position: relative; }
.creations .kicker { color: #c9bfff; }
.creations h2 { color: #fff; }
.creations .sec-sub { color: #b6b0d6; }
.create-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.create-card {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px; padding: 16px;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.create-card:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.22); }
.create-card img { width: 124px; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 13px; flex: none; }
.create-card b { display: block; font-family: var(--font-display); font-size: 16.5px; font-weight: 600; margin-bottom: 5px; }
.create-card small { font-size: 13px; line-height: 1.5; color: #b6b0d6; display: block; }
.create-tagline {
  margin-top: 52px; text-align: center;
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 600;
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.create-tagline em { font-style: normal; }
.create-tagline em + em::before { content: "· "; color: #6c6494; margin-right: 14px; }

/* ── Journey ────────────────────────────────────────────────── */
.journey { padding: 120px 0 0; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.j-step { --jc: var(--purple); position: relative; text-align: center; }
.j-photo {
  width: 100%; aspect-ratio: 1.15; object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.j-conn { display: block; position: relative; height: 27px; margin: 20px 0 12px; }
.j-conn::before {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  height: 3px; border-radius: 3px; left: -9px; right: -9px;
  background: color-mix(in oklch, var(--jc) 30%, white);
}
.j-step:first-child .j-conn::before { left: 50%; }
.j-step:last-child .j-conn::before { right: 50%; }
.j-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--jc); border: 5px solid #fff; box-sizing: border-box;
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--jc) 30%, transparent), 0 6px 14px -4px color-mix(in oklch, var(--jc) 60%, transparent);
}
.j-step h3 { font-size: 19px; font-weight: 700; margin-bottom: 7px; color: var(--jc); }
.j-step p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); padding: 0 6px; }
.j-num { font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em; color: var(--ink-soft); display: block; margin-bottom: 4px; }

/* ── Why Migi ───────────────────────────────────────────────── */
.why { margin-top: 120px; padding: 100px 0; background: var(--lavender); }
.why-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  --wc: var(--purple);
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.why-card .ic {
  width: 38px; height: 38px; border-radius: 12px; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 13px;
  background: color-mix(in oklch, var(--wc) 13%, white);
}
.why-card b { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.why-card p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.why-photos { display: grid; gap: 16px; }
.why-photos img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-card); object-fit: cover; }
.why-photos img:first-child { aspect-ratio: 16 / 10; }
.why-photos img:last-child { aspect-ratio: 16 / 9; }

/* ── Testimonials ───────────────────────────────────────────── */
.stories { padding: 120px 0 0; }
.stories-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(380px, 82vw);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 6px 26px; margin: 0 -6px;
  scrollbar-width: none;
}
.stories-rail::-webkit-scrollbar { display: none; }
.story {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 20px;
}
.story .stars { color: var(--orange); font-size: 15px; letter-spacing: 3px; }
.story blockquote { font-size: 16.5px; line-height: 1.65; font-weight: 500; color: var(--ink); flex: 1; }
.story footer { display: flex; align-items: center; gap: 13px; }
.story .avatar {
  --ac: var(--purple);
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, var(--ac), color-mix(in oklch, var(--ac) 70%, var(--pink)));
}
.story footer b { display: block; font-size: 14.5px; }
.story footer small { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.rail-nav { display: flex; gap: 10px; }
.rail-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; cursor: pointer; font-size: 17px; color: var(--ink);
  transition: border-color 0.2s, transform 0.2s; display: flex; align-items: center; justify-content: center;
}
.rail-btn:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ── Final CTA ──────────────────────────────────────────────── */
.final { padding: 110px 0; }
.final-card {
  position: relative; overflow: clip; text-align: center;
  border-radius: calc(var(--radius) * 1.4);
  padding: 88px 48px;
  background: linear-gradient(115deg, var(--accent), color-mix(in oklch, var(--accent) 55%, var(--accent-2)), var(--accent-2));
  color: #fff;
  box-shadow: 0 40px 90px -30px color-mix(in oklch, var(--accent) 60%, transparent);
}
.final-card::before, .final-card::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; opacity: var(--glow-opacity);
}
.final-card::before { width: 480px; height: 480px; left: -160px; top: -200px; background: radial-gradient(closest-side, rgba(255,255,255,0.22), transparent); }
.final-card::after { width: 420px; height: 420px; right: -140px; bottom: -190px; background: radial-gradient(closest-side, rgba(255,255,255,0.16), transparent); }
.final-card h2 { position: relative; font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; max-width: 760px; margin: 0 auto 18px; }
.final-card p { position: relative; font-size: 17.5px; line-height: 1.6; opacity: 0.92; max-width: 540px; margin: 0 auto 38px; }
.final-card .btn {
  position: relative; background: #fff; color: var(--accent);
  box-shadow: 0 16px 36px -10px rgba(10, 5, 40, 0.45);
}
.final-note { position: relative; margin-top: 18px; font-size: 13.5px; font-weight: 600; opacity: 0.85; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 44px 0 52px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer small { color: var(--ink-soft); font-size: 13px; font-weight: 500; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.footer-links a:hover { color: var(--accent); }

/* ── Reveal animations ──────────────────────────────────────── */
/* Entrance animations only engage when JS confirms a live animation timeline
   (html.anim-ok) — print, export and frozen iframes show final state instead. */
@media (prefers-reduced-motion: no-preference) {
  html.anim-ok .reveal { transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
  html.anim-ok .reveal:not(.in) { opacity: 0; transform: translateY(26px); }
  html.anim-ok .reveal[data-d="1"] { transition-delay: 0.08s; } html.anim-ok .reveal[data-d="2"] { transition-delay: 0.16s; }
  html.anim-ok .reveal[data-d="3"] { transition-delay: 0.24s; } html.anim-ok .reveal[data-d="4"] { transition-delay: 0.32s; }
  html.anim-ok .hero-visual img { animation: hero-in 1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  html.anim-ok .hero-badge { animation: hero-in 1s 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  @keyframes hero-in { from { opacity: 0; transform: translateY(20px) scale(0.985); } }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .create-grid { grid-template-columns: 1fr 1fr; }
  .journey-track { grid-template-columns: repeat(5, minmax(170px, 1fr)); overflow-x: auto; padding-bottom: 12px; }
  .nav-links { display: none; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-visual { order: -1; max-width: 560px; }
  .metrics-card { grid-template-columns: 1fr 1fr; gap: 26px 0; }
  .metric:nth-child(3)::before { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .proof-card { grid-template-columns: 1fr; gap: 28px; }
  .proof-lead { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 26px; }
}
@media (max-width: 620px) {
  .prog-grid, .create-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .proof-points { grid-template-columns: 1fr; gap: 18px; }
  .proof-lead { flex-direction: column; align-items: flex-start; text-align: left; }
}
