/* GC Gatuzo — title / display font (local, official) */
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-Thin-BF6941168b02d5f.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-ExtraLight-BF6941168ad0196.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-Light-BF6941168b1adb3.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-Regular-BF6941168ae9b00.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-Medium-BF6941168adca34.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-SemiBold-BF6941168b0f327.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-Bold-BF6941168a71516.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GC Gatuzo";
  src: url("assets/fonts/gc-gatuzo/GCGatuzoDemo-ExtraBold-BF6941168ac30df.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Fetchway landing — tokens from Figma */
:root {
  --color-navy: #030f2e;
  --color-slate: #2a3241;
  --color-blue-500: #2256db;
  --color-blue-800: #0e2258;
  --color-muted: #c1cbe6;
  --color-body: #555b67;
  --color-sub: #7f848d;
  --color-border: #d4d6d9;
  --color-green: #0fb94b;
  --color-link: #007aff;
  --color-grey-5: #f0f0f0;
  --color-grey-7: #e8e8e8;
  --color-grey-bg: #f7f7f7;
  --color-text-dim: #5a5a5a;
  --color-text-footer: #7e7e7e;
  --shadow-card: 0 7px 13px 1px #faeef4;
  --shadow-slider: 0 14px 44px rgba(153, 166, 190, 0.25);
  --radius-lg: 34px;
  --radius-md: 23px;
  --radius-sm: 6px;
  --font-title: "GC Gatuzo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: min(1410px, calc(100% - 48px));
  /* First viewport: hero fills space below header (Figma hero 841px max) */
  --header-height: 72px;
}

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

html {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-slate);
  background: #fff;
}

/* Sticky footer: shell fills viewport; footer sits flush at bottom when content is short */
.site-shell {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  width: 100%;
  margin: 0;
  padding: 0;
}

main {
  flex: 1 1 auto;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
}

input,
textarea,
select {
  font-weight: 500;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header__inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-slate);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--color-slate);
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-body);
}

.nav__link:hover {
  color: var(--color-slate);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--color-slate);
  color: #fff;
  border-color: var(--color-slate);
}

.btn--primary:hover {
  background: #1f2733;
}

.btn--accent {
  background: var(--color-blue-500);
  color: #fff;
  border-color: var(--color-blue-500);
  min-height: 52px;
  padding: 17px 16px;
}

.btn--accent:hover {
  background: #1b49c4;
}

.btn--outline {
  background: #fff;
  color: #191e27;
  border: 1px solid var(--color-border);
  min-height: 45px;
  padding: 12px 14px;
  font-size: 0.875rem;
}

.btn--outline:hover {
  border-color: var(--color-slate);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  min-height: 52px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--sm {
  min-height: 45px;
  padding: 12px 14px;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* Hero — full-viewport-width band; inner stage matches former 1410px frame (centered) */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--color-navy);
  border-radius: 0;
  overflow: hidden;
  height: min(841px, calc(100svh - var(--header-height)));
}

.hero__stage {
  position: relative;
  width: 100%;
  max-width: min(1410px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  isolation: isolate;
}

/* Combined hand + app art (assets/handwithapp-@3.png) — same frame as Figma 45:731 */
.hero__visual {
  position: absolute;
  left: 17.12%;
  bottom: 0;
  width: 74.41%;
  height: 93.57%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero__visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Copy: Figma 45:732 — left 88px, vertical center, w ~486px */
.hero__copy {
  position: absolute;
  left: 6.24%;
  top: 50%;
  transform: translateY(-50%);
  width: 34.45%;
  max-width: 486px;
  z-index: 5;
}

.hero__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.75rem, 4.2vw, 4rem);
  line-height: 1.11;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__subtitle {
  margin: 0 0 26px;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  line-height: 1.8;
  color: var(--color-muted);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Aside: Figma 45:741 — left 1031.46 / 1410 */
.hero__aside {
  position: absolute;
  left: 73.15%;
  top: 50%;
  transform: translateY(-50%);
  width: 21.79%;
  max-width: 308px;
  margin: 0;
  z-index: 5;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.75rem);
  line-height: 1.36;
  color: var(--color-muted);
}

/* Sections */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section--tight {
  padding-top: 56px;
}

.section__title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  text-align: center;
  color: #000;
}

.section__lead {
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-body);
  line-height: 1.5;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.feature-card {
  text-align: center;
}

.feature-card__icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 8px;
}

.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-blue-800);
}

.feature-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-body);
}

/* Waitlist strip — Figma 200:752 / 200:756; 3D blob may sit outside the bar */
.waitlist-strip-bleed {
  position: relative;
  max-width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(56px, 8vw, 88px);
  margin-bottom: 48px;
}

.waitlist-strip {
  position: relative;
  overflow: visible;
  background: #2a3241;
  border-radius: var(--radius-lg);
  min-height: 199px;
  /* Figma ~409px inset on 1216px bar — keep text clear of ~348px blob */
  padding: 40px 40px 40px clamp(320px, 33.65%, 420px);
  display: flex;
  align-items: center;
}

.waitlist-strip__deco {
  position: absolute;
  left: clamp(-48px, -3vw, -12px);
  top: clamp(-72px, -10vw, -40px);
  width: min(348px, 72vw);
  max-width: none;
  pointer-events: none;
  z-index: 0;
}

.waitlist-strip__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.waitlist-strip__title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #fff;
}

.waitlist-strip__text p {
  margin: 0;
  max-width: 520px;
  font-family: var(--font-body);
  color: #bbc2d0;
  font-size: 1rem;
  line-height: 1.5;
}

.waitlist-strip__text strong {
  color: #fff;
  font-weight: 500;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  align-items: start;
}

.step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.step__num {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(120px, 18vw, 200px);
  line-height: 0.85;
  color: var(--color-grey-5);
  z-index: 0;
  pointer-events: none;
}

.step__img-wrap {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin: 0 auto 16px;
  aspect-ratio: 1;
}

.step__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step__title {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-blue-800);
}

.step__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-body);
  max-width: 280px;
  margin-inline: auto;
}

/* Slider */
.app-showcase {
  padding-bottom: 88px;
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.slider__viewport {
  flex: 1 1 480px;
  max-width: 928px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef1f6;
}

.slider__track {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  aspect-ratio: 928 / 603;
}

.slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Drop shadow on screenshots; payment-link slide is flat (no shadow) */
.slider__slide--shadow.is-active .slider__img {
  box-shadow: var(--shadow-slider);
}

.slider__slide--flat.is-active .slider__img {
  box-shadow: none;
}

.slider__img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 10px;
}

.slider__arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(42, 50, 65, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.slider__arrow:hover {
  background: var(--color-slate);
  color: #fff;
  border-color: var(--color-slate);
  box-shadow: 0 4px 14px rgba(42, 50, 65, 0.18);
  transform: scale(1.05);
}

.slider__arrow:active {
  transform: scale(0.98);
}

.slider__arrow:focus-visible {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 3px;
}

.slider__arrow-icon {
  display: block;
}

.slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  padding: 0;
  background: var(--color-grey-7);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.slider__dot:hover {
  background: #c0c4cc;
  transform: scale(1.15);
}

.slider__dot.is-active {
  background: var(--color-slate);
  transform: scale(1.2);
}

/* Pricing */
.pricing {
  max-width: min(1512px, calc(100% - 48px));
  margin: 0 auto 120px;
  padding: 56px 24px 64px;
  border-radius: 32px;
  background: linear-gradient(
    116deg,
    rgb(255, 243, 249) 2.4%,
    rgb(244, 247, 253) 88.7%
  );
}

.pricing__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing__title {
  margin: 0 0 21px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  color: #000;
}

.pricing__lead {
  margin: 0 0 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-body);
  line-height: 1.5;
}

.pricing__note {
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-sub);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 446px;
}

.price-card__head {
  margin-bottom: 14px;
}

.price-card__name {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.625rem;
  color: #000;
}

.price-card__for {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-body);
}

.price-card__tier {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-slate);
}

.price-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-body);
}

.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 500;
  font-size: 0.875rem;
}

.price-card__foot {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-sub);
  line-height: 1.3;
}

/* Footer */
.footer {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 40px 0 0;
  background: var(--color-grey-bg);
  border-radius: 0;
}

/* Centered content column — art is absolute to this box (Figma ~1426px frame) */
.footer__body {
  position: relative;
  max-width: min(1426px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 32px 18px;
  padding-right: min(400px, 36%);
  min-height: 240px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.5fr 0.5fr;
  gap: 20px 36px;
  align-items: start;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.footer__name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-slate);
}

.footer__tagline {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--color-text-dim);
}

.footer__address {
  margin: 0 0 4px;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-footer);
}

.footer__email {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--color-text-footer);
}

.footer__heading {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: #000;
  text-transform: capitalize;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 4px;
}

.footer__links a,
.footer__link-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text-dim);
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer__links a:hover,
.footer__link-btn:hover {
  text-decoration: underline;
}

/* 3D asset — bottom/right anchor; no max-height so the full image can show */
.footer__art {
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: 0;
  right: clamp(-12px, -1vw, 4px);
  width: min(440px, 42vw);
  transform: none;
  pointer-events: none;
  line-height: 0;
}

.footer__art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

.footer__copy {
  margin: 0;
  padding: 10px 24px calc(8px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-footer);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  flex: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 46, 0.55);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-sub);
}

.modal__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal__subtitle {
  margin: 0 0 24px;
  font-family: var(--font-body);
  color: var(--color-body);
  font-size: 0.9375rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-slate);
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.field__input:focus {
  outline: 2px solid rgba(34, 86, 219, 0.35);
  border-color: var(--color-blue-500);
}

.modal__panel.is-success .modal__title,
.modal__panel.is-success .modal__subtitle {
  display: none;
}

.modal__success {
  display: none;
  margin: 0;
  padding: 8px 0 12px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-slate);
}

.modal__panel.is-success .modal__success {
  display: block;
}

.modal__success__check {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-green);
}

.modal__success__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 1.375rem;
  font-weight: 600;
  color: #000;
}

.modal__success__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-body);
}

.modal__success:focus {
  outline: none;
}

.modal__success:focus-visible {
  outline: 2px solid rgba(34, 86, 219, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero {
    height: auto;
    min-height: calc(100svh - var(--header-height));
    max-height: none;
  }

  .hero__stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: calc(100svh - var(--header-height));
    padding-bottom: 48px;
  }

  .hero__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 40rem;
    padding: 36px 28px 0;
    z-index: 5;
  }

  .hero__aside {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 40rem;
    padding: 20px 28px 0;
  }

  .hero__visual {
    position: relative;
    left: auto;
    width: 100%;
    max-width: 560px;
    height: auto;
    min-height: 260px;
    margin: 0 auto;
    padding: 16px 20px 0;
    flex: 1;
    display: flex;
    align-items: flex-end;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__body {
    padding-right: 28px;
    padding-left: 28px;
    min-height: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__art {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(260px, 72%);
    margin: 16px auto 0;
  }
}

@media (max-width: 900px) {
  .hero__stage {
    min-height: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .waitlist-strip-bleed {
    padding-top: clamp(40px, 12vw, 64px);
  }

  .waitlist-strip {
    padding: 28px 24px 28px clamp(100px, 26vw, 200px);
  }

  .waitlist-strip__deco {
    width: min(260px, 62vw);
    left: -28px;
    top: -52px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 100%);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 60;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav__actions {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }

  .nav__actions .btn {
    width: 100%;
  }

  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 55;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .slider {
    gap: 12px;
  }

  .slider__arrow {
    order: 2;
  }

  .slider__viewport {
    order: 1;
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .waitlist-strip__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-strip .btn {
    width: 100%;
  }
}
