@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("poppins-800.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("poppins-900.woff2") format("woff2");
}

:root {
  --red: #f01824;
  --red-dark: #cf0712;
  --navy: #0b192c;
  --ink: #132038;
  --muted: #68748a;
  --soft: #f3f5f9;
  --line: #e6e9f0;
  --white: #fff;
  --shadow: 0 28px 80px rgba(18, 30, 52, .14);
  --font-brand: "Poppins", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-brand);
  -webkit-font-smoothing: antialiased;
}

input, button { font: inherit; }

a { color: inherit; }

.landing-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.landing-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(225, 229, 238, .85);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 34px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 152px; height: 48px; object-fit: contain; }

.main-nav { display: flex; margin: 0 auto; gap: 34px; }
.main-nav a, .login-link {
  color: #536077;
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}
.main-nav a:hover, .login-link:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 22px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #e00815);
  box-shadow: 0 12px 26px rgba(240, 24, 36, .23);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(240, 24, 36, .3); }
.button-small { min-height: 42px; padding-inline: 19px; border-radius: 10px; font-size: .86rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
  background:
    linear-gradient(90deg, rgba(11,25,44,.025) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(11,25,44,.025) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(135deg, #fff 10%, #f7f8fb 100%);
}

.hero::after {
  position: absolute;
  right: -140px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(240, 24, 36, .08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(240,24,36,.025), 0 0 0 140px rgba(240,24,36,.018);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { top: 18%; left: -210px; width: 430px; height: 430px; background: rgba(240,24,36,.045); }
.hero-glow-two { top: 5%; right: 29%; width: 180px; height: 180px; background: rgba(49,107,196,.04); }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(55px, 7vw, 104px);
}

.hero-copy { padding: 20px 0; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--red); }

.hero h1 {
  max-width: 650px;
  margin: 25px 0 22px;
  color: var(--navy);
  font-size: clamp(3.4rem, 5.4vw, 5.75rem);
  font-weight: 850;
  letter-spacing: -.062em;
  line-height: .94;
}
.hero h1 strong { color: var(--red); font-weight: inherit; }
.hero-lead { max-width: 570px; margin: 0; color: #5f6c81; font-size: 1.12rem; line-height: 1.75; }

.hero-benefits {
  display: grid;
  max-width: 580px;
  margin: 37px 0 0;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero-benefits > div { display: flex; align-items: flex-start; gap: 9px; }
.benefit-icon {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: .7rem;
  font-weight: 900;
}
.hero-benefits p { display: grid; margin: 0; gap: 4px; }
.hero-benefits strong { color: #17253d; font-size: .8rem; }
.hero-benefits small { color: #80899a; font-size: .7rem; line-height: 1.4; }

.hero-trust { display: flex; align-items: center; max-width: 500px; margin-top: 25px; gap: 15px; color: #7c8699; font-size: .75rem; line-height: 1.5; }
.hero-trust b { color: #344057; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack i {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: .65rem;
  font-style: normal;
  font-weight: 800;
}
.avatar-stack i:nth-child(2) { background: #5d708d; }
.avatar-stack i:nth-child(3) { background: var(--red); }
.avatar-stack i:nth-child(4) { color: var(--red); background: #ffecee; }

.signup-card {
  position: relative;
  padding: 38px 40px 30px;
  border: 1px solid rgba(225,229,238,.86);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.signup-card::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--red);
  content: "";
}
.signup-heading { text-align: center; }
.signup-badge { display: inline-block; margin-bottom: 13px; color: var(--red); font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.signup-heading h2 { margin: 0; color: var(--navy); font-size: 1.85rem; letter-spacing: -.035em; }
.signup-heading p { margin: 7px 0 22px; color: #8a93a3; font-size: .84rem; }

.form-notice { display: flex; align-items: flex-start; margin-bottom: 18px; padding: 13px 14px; border-radius: 11px; gap: 10px; font-size: .78rem; line-height: 1.4; }
.form-notice > span { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: #fff; font-weight: 900; }
.form-notice strong, .form-notice p { display: block; margin: 0; }
.form-notice p { margin-top: 2px; }
.form-notice a { display: inline-block; margin-top: 6px; font-weight: 800; }
.notice-error { color: #9d252d; background: #fff0f1; }
.notice-error > span { background: #e13a45; }
.notice-success { color: #176d52; background: #eaf9f3; }
.notice-success > span { background: #20a77d; }

.signup-form { position: relative; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.field-label { display: block; margin: 14px 0 7px; color: #455168; font-size: .73rem; font-weight: 750; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap > svg, .password-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #9ba4b3;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.input-wrap > svg { position: absolute; z-index: 1; left: 14px; pointer-events: none; }
.input-wrap input {
  width: 100%;
  height: 48px;
  padding: 0 44px;
  border: 1px solid #dfe3eb;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fbfcfe;
  font-size: .83rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.input-wrap input::placeholder { color: #a9b0bd; }
.input-wrap input:focus { border-color: rgba(240,24,36,.62); background: #fff; box-shadow: 0 0 0 4px rgba(240,24,36,.07); }
.input-wrap input:user-invalid { border-color: #ef6570; }
.input-wrap.is-checking input { border-color: #e4ad42; background: #fffdf7; }
.input-wrap.is-valid input { border-color: #35ae83; background: #f8fffc; }
.input-wrap.is-invalid input { border-color: #ef6570; background: #fff9fa; }
.field-feedback {
  display: block;
  min-height: 15px;
  margin: 5px 4px -5px;
  color: #7e8797;
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transition: opacity .18s ease;
}
.field-feedback.is-visible { opacity: 1; }
.field-feedback.is-checking { color: #a06b0a; }
.field-feedback.is-valid { color: #168461; }
.field-feedback.is-invalid { color: #c43743; }
.input-at b { position: absolute; left: 15px; color: #98a1b0; font-size: 1rem; }
.input-at input { padding-left: 38px; }
.form-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; }
.password-toggle { position: absolute; right: 7px; display: grid; width: 35px; height: 35px; padding: 0; place-items: center; border: 0; border-radius: 7px; background: transparent; cursor: pointer; }
.password-toggle:hover { background: #f0f2f6; }

.password-meter { display: grid; margin: 8px 2px 0; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.password-meter span { height: 3px; border-radius: 4px; background: #e5e8ee; transition: background .2s; }
.password-meter[data-strength="1"] span:nth-child(-n+1) { background: #ef5963; }
.password-meter[data-strength="2"] span:nth-child(-n+2) { background: #f2a93b; }
.password-meter[data-strength="3"] span:nth-child(-n+3) { background: #54b98f; }
.password-meter[data-strength="4"] span { background: #18a471; }

.signup-submit { width: 100%; min-height: 54px; margin-top: 22px; }
.signup-submit svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.signup-submit:disabled { cursor: wait; opacity: .7; }
.terms { margin: 12px auto; max-width: 360px; color: #9aa2b0; font-size: .64rem; line-height: 1.5; text-align: center; }
.secure-note { display: flex; justify-content: center; align-items: center; padding-top: 14px; border-top: 1px solid #edf0f4; color: #7b8596; font-size: .69rem; gap: 7px; }
.secure-note span { color: #18a471; font-weight: 900; }

.how-section { padding: 112px 0; background: #fff; }
.section-intro { max-width: 750px; margin: 0 auto 55px; text-align: center; }
.section-intro h2 { margin: 15px 0 13px; color: var(--navy); font-size: clamp(2.15rem, 4vw, 3.45rem); letter-spacing: -.048em; line-height: 1.08; }
.section-intro p { margin: 0; color: #7a8597; font-size: .96rem; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps-grid::before { position: absolute; top: 55px; right: 17%; left: 17%; height: 1px; background: repeating-linear-gradient(90deg, #e1e5ec 0 8px, transparent 8px 16px); content: ""; }
.steps-grid article { position: relative; z-index: 1; padding: 6px 28px; text-align: center; }
.step-number { position: absolute; top: 0; right: 20%; color: #e9ecf1; font-size: 3rem; font-weight: 900; letter-spacing: -.08em; }
.step-icon { position: relative; display: grid; width: 86px; height: 86px; margin: 0 auto 26px; place-items: center; border: 8px solid #fff; border-radius: 24px; color: #fff; background: var(--navy); box-shadow: 0 12px 28px rgba(11,25,44,.16); font-size: 1.5rem; font-weight: 800; }
.steps-grid article:nth-child(2) .step-icon { background: var(--red); box-shadow: 0 12px 28px rgba(240,24,36,.2); }
.steps-grid h3 { margin: 0 0 11px; color: var(--navy); font-size: 1.06rem; }
.steps-grid p { max-width: 270px; margin: auto; color: #7a8597; font-size: .82rem; line-height: 1.65; }

.screens-section { padding: 112px 0 126px; background: var(--soft); }
.section-intro-left { max-width: none; margin: 0 0 52px; text-align: left; }
.screens-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.screen-card { display: flex; overflow: hidden; flex-direction: column; border: 1px solid #e1e5ec; border-radius: 18px; background: #fff; box-shadow: 0 18px 50px rgba(20,33,55,.08); }
.screen-card:first-child {
  grid-column: auto;
  grid-row: span 2;
}
.screen-card:nth-child(6) { grid-column: 1 / -1; }
.browser-bar { display: flex; align-items: center; height: 37px; padding: 0 13px; border-bottom: 1px solid #e5e8ee; background: #f8f9fb; gap: 6px; }
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #ff6961; }
.browser-bar > span:nth-child(2) { background: #f6bd4f; }
.browser-bar > span:nth-child(3) { background: #54c36d; }
.browser-bar small { margin-left: 10px; color: #a0a8b4; font-size: .52rem; }
.screen-media { aspect-ratio: 16 / 8.8; overflow: hidden; background: #e9edf3; }
.screen-card:first-child .screen-media {
  flex: none;
  min-height: 0;
  aspect-ratio: 8 / 15;
  background: #111722;
}
.screen-card:first-child .screen-caption { flex: 0 0 auto; }
.screen-card:nth-child(n + 2):nth-child(-n + 5) .screen-media {
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
}
.screen-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.screen-card:first-child .screen-media img,
.screen-card:nth-child(n + 2):nth-child(-n + 5) .screen-media img { object-fit: contain; }
.screen-card:nth-child(6) .screen-media { background: #171923; }
.screen-card:nth-child(6) .screen-media img { object-fit: contain; object-position: center top; }
.screen-placeholder { position: relative; display: flex; width: 100%; height: 100%; padding: 24px; background: linear-gradient(145deg, #0e2038, #1b3556); gap: 20px; }
.screen-placeholder-2 { background: linear-gradient(145deg, #f9fafc, #e5eaf2); }
.screen-placeholder-3 { background: linear-gradient(145deg, #fff3f4, #f9dfe2); }
.screen-placeholder-4 { background: linear-gradient(145deg, #20131b, #72242e); }
.screen-placeholder-5 { background: linear-gradient(145deg, #eef3fb, #dce7f7); }
.screen-placeholder-6 { background: linear-gradient(145deg, #111318, #2d3140); }
.mock-sidebar { display: grid; align-content: start; flex: 0 0 24%; padding: 18px 12px; border-radius: 10px; background: rgba(255,255,255,.1); gap: 12px; }
.mock-sidebar i, .mock-content b, .mock-content span { display: block; border-radius: 5px; background: rgba(255,255,255,.16); }
.mock-sidebar i { width: 100%; height: 8px; }
.mock-content { display: grid; flex: 1; align-content: start; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mock-content b { height: 42px; grid-column: 1 / -1; }
.mock-content span { height: 72px; }
.screen-placeholder-2 .mock-sidebar, .screen-placeholder-2 .mock-sidebar i, .screen-placeholder-2 .mock-content b, .screen-placeholder-2 .mock-content span,
.screen-placeholder-5 .mock-sidebar, .screen-placeholder-5 .mock-sidebar i, .screen-placeholder-5 .mock-content b, .screen-placeholder-5 .mock-content span { background: rgba(11,25,44,.09); }
.screen-placeholder-3 .mock-sidebar, .screen-placeholder-3 .mock-sidebar i, .screen-placeholder-3 .mock-content b, .screen-placeholder-3 .mock-content span { background: rgba(240,24,36,.09); }
.replace-hint { position: absolute; right: 18px; bottom: 15px; padding: 7px 10px; border-radius: 7px; color: rgba(255,255,255,.8); background: rgba(0,0,0,.22); font-size: .6rem; font-weight: 700; }
.screen-placeholder-2 .replace-hint, .screen-placeholder-3 .replace-hint, .screen-placeholder-5 .replace-hint { color: #6f7a8d; background: rgba(255,255,255,.75); }
.screen-caption { display: flex; align-items: flex-start; padding: 22px 24px; gap: 15px; }
.screen-caption > span { color: var(--red); font-size: .67rem; font-weight: 900; }
.screen-caption h3 { margin: 0 0 5px; color: var(--navy); font-size: .95rem; }
.screen-caption p { margin: 0; color: #8791a1; font-size: .74rem; }

.final-cta { position: relative; overflow: hidden; padding: 73px 0; color: #fff; background: var(--red); }
.final-cta::before { position: absolute; top: -120px; left: 5%; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.055); border-radius: 50%; content: ""; }
.final-cta::after { position: absolute; right: -100px; bottom: -150px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.035), 0 0 0 110px rgba(255,255,255,.025); content: ""; }
.final-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta span { display: block; margin-bottom: 8px; font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; opacity: .76; }
.final-cta h2 { margin: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -.045em; }
.button-light { min-width: 245px; color: var(--red); background: #fff; box-shadow: 0 14px 32px rgba(117,0,7,.2); }

.landing-footer { padding: 30px 0; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; color: #8992a1; font-size: .72rem; }
.footer-inner img { width: 130px; height: 43px; object-fit: contain; }
.footer-inner a { color: #5a6578; font-weight: 750; text-decoration: none; }
.footer-links { display: inline-flex; align-items: center; gap: 20px; }
.footer-links a { position: relative; }
.footer-links a + a::before { position: absolute; top: 50%; left: -11px; width: 3px; height: 3px; border-radius: 50%; background: #c3c9d2; content: ""; transform: translateY(-50%); }
.footer-inner a:hover, .footer-inner a:focus-visible { color: var(--red); }

body.terms-modal-open { overflow: hidden; }
.terms-modal {
  width: min(820px, calc(100% - 32px));
  max-width: none;
  max-height: min(88vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 90px rgba(9, 20, 37, .34);
}
.terms-modal::backdrop { background: rgba(8, 17, 31, .72); backdrop-filter: blur(5px); }
.terms-modal-card { display: grid; max-height: min(88vh, 900px); grid-template-rows: auto minmax(0, 1fr) auto; }
.terms-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 28px 20px;
  border-bottom: 1px solid #e8ebf0;
  gap: 20px;
  background: linear-gradient(135deg, #fff 55%, #fff1f2);
}
.terms-modal-header span { display: block; margin-bottom: 4px; color: var(--red); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.terms-modal-header h2 { margin: 0; color: var(--navy); font-size: clamp(1.55rem, 4vw, 2.1rem); letter-spacing: -.035em; }
.terms-modal-header p { margin: 5px 0 0; color: #8b94a3; font-size: .72rem; }
.terms-modal-close {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid #e0e4eb;
  border-radius: 50%;
  color: #5c6677;
  background: #fff;
  cursor: pointer;
}
.terms-modal-close:hover, .terms-modal-close:focus-visible { color: #fff; border-color: var(--red); background: var(--red); }
.terms-modal-close svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.terms-modal-content { padding: 28px; overflow-y: auto; overscroll-behavior: contain; color: #596477; font-size: .86rem; line-height: 1.72; }
.terms-modal-intro { margin: 0 0 26px; padding: 17px 19px; border-left: 4px solid var(--red); border-radius: 0 11px 11px 0; color: #344157; background: #fff6f7; font-weight: 650; }
.terms-modal-content section + section { margin-top: 25px; padding-top: 24px; border-top: 1px solid #edf0f4; }
.terms-modal-content h3 { margin: 0 0 8px; color: var(--navy); font-size: 1rem; }
.terms-modal-content p { margin: 0; }
.terms-modal-content p + p { margin-top: 10px; }
.terms-modal-content ul { margin: 10px 0 0; padding-left: 21px; }
.terms-modal-content li + li { margin-top: 5px; }
.terms-modal-footer { display: flex; justify-content: flex-end; padding: 16px 28px; border-top: 1px solid #e8ebf0; background: #f8f9fb; }
.terms-modal-footer .button { min-height: 44px; padding: 0 22px; font-size: .78rem; }

@media (max-width: 1020px) {
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 45px; }
  .hero h1 { font-size: 4.2rem; }
  .hero-benefits { grid-template-columns: 1fr; gap: 14px; }
  .hero-benefits small { display: none; }
  .screens-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen-card:first-child { grid-column: auto; grid-row: span 2; }
}

@media (max-width: 820px) {
  .hero { padding-top: 55px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1, .hero-lead, .hero-benefits, .hero-trust { margin-inline: auto; }
  .hero-benefits { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .hero-benefits small { display: block; }
  .signup-card { width: min(100%, 540px); margin: auto; }
  .steps-grid::before { display: none; }
  .steps-grid { gap: 5px; }
  .steps-grid article { padding-inline: 10px; }
  .screens-grid { grid-template-columns: 1fr; }
  .screen-card:first-child { grid-column: auto; grid-row: auto; }
  .screen-card:first-child .screen-media {
    flex: none;
    min-height: 0;
    aspect-ratio: 8 / 15;
  }
  .screen-card:nth-child(n + 2):nth-child(-n + 5) .screen-media {
    flex: none;
    aspect-ratio: 800 / 559;
  }
  .screen-card:nth-child(6) { grid-column: auto; }
  .final-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  .landing-container { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 66px; }
  .brand img { width: 122px; height: 40px; }
  .login-link { display: none; }
  .button-small { min-height: 39px; padding-inline: 14px; }
  .hero { padding: 43px 0 66px; }
  .hero h1 { margin-top: 20px; font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-lead { font-size: 1rem; }
  .hero-benefits { grid-template-columns: 1fr; }
  .hero-benefits small { display: block; }
  .hero-trust { justify-content: center; text-align: left; }
  .signup-card { padding: 32px 22px 25px; border-radius: 19px; }
  .signup-heading h2 { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .how-section, .screens-section { padding: 80px 0; }
  .section-intro { margin-bottom: 42px; }
  .section-intro h2 br { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 44px; }
  .screen-caption { padding: 18px; }
  .screen-card:first-child .screen-media { min-height: 0; }
  .final-cta { padding: 60px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-links a + a::before { display: none; }
  .terms-modal { width: calc(100% - 20px); max-height: 92vh; border-radius: 17px; }
  .terms-modal-card { max-height: 92vh; }
  .terms-modal-header { padding: 20px 18px 17px; }
  .terms-modal-content { padding: 21px 18px; font-size: .81rem; }
  .terms-modal-footer { padding: 13px 18px; }
  .terms-modal-footer .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
