*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: #7C5CFC; color: #fff; }

:root {
  --bg: #F8F7FF;
  --bg2: #EEEBF8;
  --bg3: #E4E0F2;
  --border: rgba(0,0,0,0.08);
  --border-h: rgba(0,0,0,0.14);
  --text: #0F0D1E;
  --text2: #38355A;
  --muted: #6A6785;
  --accent: #7C5CFC;
  --accent2: #A183FF;
  --accent-glow: rgba(124,92,252,0.3);
  --accent-soft: rgba(124,92,252,0.1);
  --pink: #F472B6;
  --pink-glow: rgba(244,114,182,0.25);
  --amber: #FBBF24;
  --amber-soft: rgba(251,191,36,0.1);
  --green: #0B9065;
  --green-glow: rgba(11,144,101,0.25);
  --mono: 'JetBrains Mono', monospace;
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'DM Sans', sans-serif;
  --r: 12px;
}

html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body {
  background: #fff;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
body.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
body.js .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 60px;
  background: rgba(17,13,38,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,92,252,0.2);
  --text: #F2F0FF;
  --muted: #8480A0;
}
.logo {
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  color: var(--text); display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.logo b { color: var(--accent); }
.logo-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(124,92,252,0.45);
  border-radius: 9px;
  background: rgba(124,92,252,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.logo:hover .logo-icon { border-color: rgba(124,92,252,0.7); background: rgba(124,92,252,0.14); }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.nav-mid { display: none; gap: 28px; }
.nav-mid a { font-family: var(--mono); font-size: 14px; color: #fff; text-decoration: none; transition: color 0.2s; }
.nav-mid a:hover { color: var(--accent2); }
.nav-btn {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  padding: 8px 18px; background: #6040D0; color: #fff;
  border: none; border-radius: 99px; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-btn:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 20px 80px;
  position: relative; overflow: hidden;
}
.hero-cols {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center; width: 100%; max-width: 1440px;
}
.hero-left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-right { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.hero-poster {
  width: 100%; max-width: 480px;
  height: auto; border-radius: 16px;
  box-shadow: 0 24px 64px rgba(124,92,252,0.18);
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 8px; justify-content: center;
}
.btn {
  display: inline-flex; align-items: center;
  padding: 13px 26px; border-radius: var(--r);
  font-family: var(--body); font-weight: 600; font-size: 16px;
  text-decoration: none; transition: background 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap; border: none; cursor: pointer;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-h) !important;
}
.btn-secondary:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
  opacity: 1;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(108,79,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,79,255,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
}
.orb { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); }
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,79,255,0.14) 0%, transparent 70%);
  top: -180px; left: 50%; transform: translateX(-50%);
}
.orb2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(52,211,153,0.09) 0%, transparent 70%);
  top: 20%; right: -130px;
}
.orb3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
  bottom: 5%; left: -90px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  padding: 7px 18px;
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent2) 100%);
  border: none; border-radius: 99px; color: #fff;
  margin-bottom: 24px; letter-spacing: 0.06em;
}

h1 em, h2 em, h3 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent2) 45%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.kicker {
  font-family: var(--mono); font-size: clamp(15px, 1.3vw, 19px); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 24px;
}
.kicker::after {
  content: ''; display: block; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  border-radius: 2px; margin-top: 10px;
}
.final .kicker::after, .how .kicker::after, .features .kicker::after, .matters .kicker::after { margin: 10px auto 0; }
.hero-kicker {
  color: var(--muted); margin-bottom: 28px; letter-spacing: 0;
  text-transform: none; display: flex; align-items: center;
  gap: 6px; flex-wrap: wrap;
}
.hero-kicker kbd {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  padding: 3px 10px; border-radius: 6px;
  background: #fff; border: 1px solid var(--border-h);
  box-shadow: 0 2px 0 var(--border-h); color: var(--accent);
}

.hero-quote {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 36px; max-width: 100%;
}
.hero-quote .q1 { display: block; color: var(--text); }
.hero-quote .q2 {
  display: block;
  background: linear-gradient(110deg, var(--accent) 0%, var(--accent2) 45%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-truth { font-size: clamp(16px, 2vw, 20px); color: var(--text2); margin-bottom: 10px; line-height: 1.6; }
.hero-truth b { color: var(--text); font-weight: 600; }
.hero-said { font-size: 16px; color: var(--muted); margin-bottom: 20px; line-height: 1.85; }

/* ── WAITLIST ── */
.wl { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.wl-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.wl-input {
  font-family: var(--mono); font-size: 13px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px; color: #F2F0FF;
  width: 290px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.wl-input::placeholder { color: rgba(255,255,255,0.4); }
.wl-input:focus {
  background: rgba(0,0,0,0.05);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(108,79,255,0.18);
}
.wl-btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.wl-ok {
  display: none; font-family: var(--mono); font-size: 13px; color: var(--green);
  background: rgba(11,144,101,0.08); border: 1px solid rgba(11,144,101,0.25);
  padding: 13px 24px; border-radius: 10px;
}
.wl-note { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.wl-note b { color: var(--green); }

/* ── STATS STRIP ── */
.stats {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat { padding: 40px 28px; text-align: center; border-right: none; border-bottom: 1px solid var(--border); }
.stat:last-child { border-bottom: none; }
.stat-n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -2px; line-height: 1; margin-bottom: 10px;
}
.stat-n.cp { color: var(--pink); }
.stat-n.ca { color: var(--accent); }
.stat-l { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 350px; margin: 0 auto; }

/* ── TICKER ── */
.ticker-outer {
  overflow: hidden; background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ticker-outer::before, .ticker-outer::after {
  content: ''; position: absolute; top: 0; bottom: 0; z-index: 2; width: 140px; pointer-events: none;
}
.ticker-outer::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.ticker-outer::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.ticker-track { display: flex; width: max-content; animation: roll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.tick {
  font-family: var(--mono); font-size: 14px; color: var(--muted); white-space: nowrap;
  padding: 16px 40px; border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s, background 0.2s;
}
.tick:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.tick .sep { color: rgba(0,0,0,0.12); }
@keyframes roll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── WHY IT MATTERS ── */
.matters { padding: 64px 20px; border-top: 1px solid var(--border); text-align: center; }
.matters-header { margin-bottom: 48px; }
.matters h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 4.5vw, 62px);
  letter-spacing: -1px; line-height: 1.05;
}
.matters-intro { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted); line-height: 1.75; margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto; }
.matters-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.m-card {
  background: #fff; text-align: left;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  overflow: hidden; border-radius: 12px;
  display: grid; grid-template-columns: 1fr;
}
.m-card:hover { background: #2D2555; box-shadow: 0 8px 32px rgba(124,92,252,0.2); }
.m-card:hover .m-trigger,
.m-card:hover .m-body,
.m-card:hover .m-cost { color: #fff; }
.m-img { width: 100%; height: auto; object-fit: contain; display: block; transition: opacity 0.3s; }
.m-card-text { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; gap: 8px; line-height: 1.2; letter-spacing: 0; }
.m-trigger {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px); color: var(--text);
  margin-bottom: 10px; line-height: 1.2;
}
.m-body { font-size: 15px; color: var(--muted); line-height: 1.4; margin-bottom: 10px; }
.m-cost { font-size: 13px; font-family: var(--mono); color: var(--accent2); }

/* ── ICON LIBRARY ── */
.cp-icons-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.cp-icon { display: block; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.wl-check-ico { display: inline-block; vertical-align: middle; width: 13px; height: 13px; stroke: currentColor; stroke-width: 2.5; margin-right: 2px; }
.wl-note .wl-check-ico { color: var(--green); }
.back-top .cp-icon { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; }

/* ── HOW IT WORKS ── */
.how {
  max-width: 100%; margin: 0 auto; padding: 40px 16px; border-top: 1px solid var(--border); text-align: center;
  background-color: #F8F7FF;
  background-image: radial-gradient(circle, rgba(124,92,252,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.how-head {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5vw, 64px); letter-spacing: -1px; line-height: 1.05;
  margin-bottom: 40px;
}

.steps { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1440px; margin: 0 auto; }
.step {
  background: #fff; padding: 32px; text-align: left;
  position: relative; overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: background 0.25s, box-shadow 0.25s;
}
.step:hover { background: #fff; box-shadow: 0 8px 32px rgba(124,92,252,0.15); }

/* ── SHARED: card accent line on hover ── */
.step::before, .feat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.step:hover::before, .feat:hover::before { transform: scaleX(1); }

/* ── SHARED: step/feat number circle ── */
.step-num, .feat-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  font-family: var(--mono); font-size: 18px; font-weight: 700;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(110deg, var(--accent), var(--pink)) border-box;
  border: 2px solid transparent;
  color: var(--accent2); margin-bottom: 16px;
  position: static; pointer-events: none; user-select: none;
}
.feat:hover .feat-num, .step:hover .step-num {
  background: linear-gradient(110deg, var(--accent), var(--pink)) padding-box,
              linear-gradient(110deg, var(--accent), var(--pink)) border-box;
  color: #fff;
}

.step h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 22px; color: var(--text);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.step p { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ── STORY ── */
.story {
  padding: 64px 20px;
  position: relative;
  background: #F8F7FF;
}
.story::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(124,92,252,0.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 90%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 90%);
}
.story-cols {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1;
}
.story-left { display: flex; flex-direction: column; }
.story h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -1px; line-height: 1.05; margin-bottom: 0;
  color: var(--text);
}
.story-cards {
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.s-card {
  background: var(--bg2); padding: 22px 28px;
  font-size: 16px; color: var(--muted); line-height: 1.6;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.s-card:hover { background: var(--bg3); border-left-color: var(--accent); }
.s-card b { color: var(--text); font-weight: 500; }

/* ── FEATURES ── */
.features {
  max-width: 100%; margin: 0 auto; padding: 40px 16px; border-top: 1px solid var(--border); text-align: center;
  background-color: #F8F7FF;
  background-image: radial-gradient(circle, rgba(124,92,252,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.feat-head {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -1px; line-height: 1.05; margin-bottom: 16px;
}
.feat-sub { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted); margin-bottom: 30px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.feat {
  background: #fff; padding: 32px; text-align: left;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: background 0.2s, box-shadow 0.25s; position: relative; overflow: hidden;
}
.feat:hover { background: #fff; box-shadow: 0 8px 32px rgba(124,92,252,0.15); }
.feat h3 { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--text); margin-bottom: 10px; letter-spacing: -0.2px; }
.feat p { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ── FINAL CTA ── */
.final {
  text-align: center; padding: 60px 20px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(124,92,252,0.2);
  background: #110D26;
  --text: #F2F0FF;
  --text2: #C0BDD8;
  --muted: #8480A0;
}
.final-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(108,79,255,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% -20%, rgba(255,61,127,0.06) 0%, transparent 60%);
}
.final h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 5vw, 68px);
  letter-spacing: -1px; line-height: 1.05;
  margin-bottom: 24px; position: relative;
  color: var(--text);
}
.final h2 .l2 {
  display: inline;
  background: linear-gradient(110deg, var(--accent), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.final-sub { font-size: 16px; color: var(--muted); margin: 0 auto 30px; position: relative; line-height: 1.75; max-width: 550px; }
.final .wl { position: relative; }
.final .wl-note { margin-top: 8px; }

/* ── FOOTER ── */
footer {
  background: #110D26;
  border-top: 1px solid rgba(124,92,252,0.2);
  padding: 36px 20px 28px;
  display: flex; align-items: center; flex-direction: column;
  flex-wrap: wrap; gap: 24px; text-align: center;
  --text: #F2F0FF;
  --text2: #C0BDD8;
  --muted: #8480A0;
}
.foot-logo { font-family: var(--mono); font-size: 13px; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.foot-tagline { font-family: var(--body); font-size: 12px; color: #9B98B8; margin-top: 2px; }
.foot-logo b { color: var(--accent); }
.foot-logo-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  background: rgba(124,92,252,0.08);
  border: 1px solid rgba(124,92,252,0.3);
  display: flex; align-items: center; justify-content: center;
}
.foot-links { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.foot-links a {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.foot-links a:hover { color: var(--text); }
.foot-ico { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.75; flex-shrink: 0; }
.foot-social {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1.5px solid color-mix(in srgb, currentColor 35%, transparent);
  background: color-mix(in srgb, currentColor 6%, transparent);
  display: inline-flex !important; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.foot-social:hover { border-color: color-mix(in srgb, currentColor 60%, transparent) !important; background: color-mix(in srgb, currentColor 12%, transparent) !important; }
.foot-copy {
  width: 100%; font-family: var(--mono); font-size: 11px;
  color: var(--muted); text-align: center; margin-top: 8px;
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,92,252,0.08); color: var(--accent2);
  border: 1.5px solid rgba(124,92,252,0.4); cursor: pointer; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, border-color 0.2s, background 0.2s;
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { border-color: rgba(124,92,252,0.7); background: rgba(124,92,252,0.14); }

/* ── RESPONSIVE (mobile-first) ── */
@media (min-width: 641px) {
  nav { padding: 0 max(20px, calc((100vw - 1440px) / 2 + 20px)); }
  .hero { padding: 100px 50px 50px; }
  .hero-cols { grid-template-columns: 3fr 2fr; gap: 64px; }
  .hero-left { text-align: left; align-items: flex-start; }
  .hero-actions { justify-content: flex-start; }
  .hero-quote { letter-spacing: -1px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--border); border-bottom: none; }
  .stat:last-child { border-right: none; }
  .matters-grid { grid-template-columns: 1fr 1fr; }
  .how { padding: 64px 20px; }
  .story { padding: 64px 32px; }
  .story-cols { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .features { padding: 64px 20px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .final { padding: 80px 24px; }
  footer { flex-direction: row; align-items: center; justify-content: space-between; padding: 36px 40px; text-align: left; }
  .foot-logo { flex-direction: row; align-items: flex-start; text-align: left; }
}

@media (min-width: 861px) {
  .nav-mid { display: flex; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .m-card { grid-template-columns: 1fr 1fr; }
  .m-img { height: 100%; object-fit: cover; }
}

@media (min-width: 1025px) {
  .matters-grid { grid-template-columns: repeat(3, 1fr); }
}
