/* Public landing page. The visual art is the app's live galaxy canvas, fixed
   behind this scroll surface; translucent bands create the depth changes. */
#sg-auth.landing {
  --land-line: rgba(168, 188, 255, .18);
  --land-muted: #a8b1d1;
  --land-bright: #f6f7ff;
  display: block;
  padding: 0;
  scroll-behavior: smooth;
  background: linear-gradient(180deg, rgba(3, 4, 10, .18), rgba(3, 4, 10, .5) 78%, #04050c 100%);
  color: var(--land-bright);
}
#sg-auth.landing .land-shell { position: relative; min-height: 100%; isolation: isolate; }
#sg-auth.landing .land-shell::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, transparent 0 19%, rgba(4,5,12,.7) 31%, rgba(4,5,12,.9) 62%, #04050c 100%);
}
#sg-auth.landing .land-top {
  position: sticky; top: 0; z-index: 5; min-height: 72px; padding: 0 clamp(20px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
#sg-auth.landing .has-scrolled .land-top {
  background: rgba(4, 5, 12, .72); border-color: var(--land-line); backdrop-filter: blur(18px);
}
#sg-auth.landing .land-mark { display: inline-flex; align-items: center; gap: 10px; width: max-content;
  color: #edf1ff; text-decoration: none; font: italic 400 19px Georgia, serif; }
#sg-auth.landing .land-mark .sg-mark { color: #9fb4ff; font-size: 18px; }
#sg-auth.landing .land-mark b { font: 600 19px 'Space Grotesk'; font-style: normal; }
#sg-auth.landing .land-nav { display: flex; gap: 28px; }
#sg-auth.landing .land-nav a { color: #aeb8d8; text-decoration: none; font-size: 12.5px; }
#sg-auth.landing .land-nav a:hover { color: #fff; }
#sg-auth.landing .land-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; }
#sg-auth.landing .land-signin, #sg-auth.landing .land-nav-cta {
  min-height: 38px; padding: 9px 16px; border-radius: 999px; font: 600 12px 'Space Grotesk';
  text-decoration: none; cursor: pointer;
}
#sg-auth.landing .land-signin { border: 0; background: transparent; color: #cbd4ef; }
#sg-auth.landing .land-nav-cta { border: 1px solid rgba(184,200,255,.44); color: #eef2ff; background: rgba(19,25,48,.48); }

#sg-auth.landing .land-main { display: block; }
#sg-auth.landing .land-hero {
  position: relative; min-height: calc(100svh - 72px); margin: 0; padding: clamp(64px, 11vh, 128px) clamp(24px, 8vw, 120px) 72px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; gap: 0;
}
#sg-auth.landing .land-kicker { margin: 0 0 22px; color: #9eb2ff; font: 600 10.5px 'Space Grotesk';
  letter-spacing: .22em; text-transform: uppercase; }
#sg-auth.landing .land-hero h1 { margin: 0; max-width: 900px; color: #f8f8ff;
  font: 400 clamp(48px, 7.4vw, 104px)/.98 Georgia, serif; letter-spacing: -.055em;
  text-wrap: balance; text-shadow: 0 2px 28px rgba(2,3,8,.9); }
#sg-auth.landing .land-hero h1 em { color: #b9c7ff; font-weight: 400; }
#sg-auth.landing .land-lede { max-width: 630px; margin: 30px 0 0; color: #c3cbe3;
  font-size: clamp(15px, 1.7vw, 19px); line-height: 1.65; text-shadow: 0 2px 16px #03040a; }
#sg-auth.landing .land-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
#sg-auth.landing .land-primary, #sg-auth.landing .land-secondary {
  min-height: 52px; display: inline-flex; align-items: center; gap: 14px; padding: 13px 20px;
  border-radius: 999px; text-decoration: none; cursor: pointer; font: 600 13.5px 'Space Grotesk';
}
#sg-auth.landing .land-primary { color: #080a13; background: #f1f3ff; border: 1px solid #fff;
  box-shadow: 0 12px 38px rgba(117,139,230,.25); }
#sg-auth.landing .land-secondary { color: #e7ebff; border: 1px solid rgba(177,194,255,.4);
  background: rgba(10,13,27,.48); backdrop-filter: blur(10px); }
#sg-auth.landing .land-built { display: flex; align-items: center; gap: 12px; margin-top: 36px;
  color: #9ba5c5; font-size: 11.5px; }
#sg-auth.landing .land-built-avatars { display: flex; }
#sg-auth.landing .land-built-avatars i { width: 27px; height: 27px; margin-left: -6px; display: grid; place-items: center;
  border: 1px solid rgba(184,201,255,.4); border-radius: 50%; background: rgba(13,17,32,.9);
  color: #cbd5ff; font: normal 600 8px 'Space Grotesk'; }
#sg-auth.landing .land-built-avatars i:first-child { margin-left: 0; }
#sg-auth.landing .land-scroll { position: absolute; left: clamp(24px, 8vw, 120px); bottom: 28px;
  display: flex; align-items: center; gap: 10px; color: #7e88aa; text-decoration: none;
  font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
#sg-auth.landing .land-scroll i { width: 20px; height: 31px; border: 1px solid rgba(180,197,255,.3); border-radius: 999px; position: relative; }
#sg-auth.landing .land-scroll i::after { content: ''; position: absolute; width: 2px; height: 6px; left: 8px; top: 6px;
  border-radius: 2px; background: #a8baff; animation: land-scroll 1.8s ease-in-out infinite; }
@keyframes land-scroll { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(10px); opacity: 1; } }

#sg-auth.landing .land-trusted { padding: 34px clamp(24px, 6vw, 90px) 40px; border-block: 1px solid var(--land-line);
  background: rgba(7,9,18,.72); backdrop-filter: blur(16px); text-align: center; }
#sg-auth.landing .land-trusted > p { color: #7f89aa; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
#sg-auth.landing .land-logo-row { display: flex; justify-content: center; align-items: center; gap: clamp(22px, 5vw, 68px);
  flex-wrap: wrap; margin-top: 22px; color: #b9c1d8; }
#sg-auth.landing .land-logo-row span { display: flex; align-items: center; gap: 8px; font: 600 14px 'Space Grotesk'; opacity: .8; }
#sg-auth.landing .land-logo-row i { color: #879cf0; font-style: normal; font-size: 18px; }
#sg-auth.landing .land-trusted small { display: block; margin-top: 20px; color: #505978; font-size: 9px; }

/* BrickBuilder's landing entrance uses a keyframe rather than a transition.
   That distinction matters here because this stylesheet is loaded dynamically:
   an observer may add is-visible before CSS arrives, leaving a transition with
   no painted starting state. A keyframe reliably starts whenever the rule is
   applied. `translate` remains separate from the parallax-owned `transform`. */
@keyframes land-reveal-in {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
#sg-auth.landing .land-reveal {
  opacity: 0;
  will-change: opacity, translate;
}
#sg-auth.landing .land-reveal.is-visible {
  animation: land-reveal-in 700ms cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: var(--land-reveal-delay, 0ms);
}

#sg-auth.landing [data-land-parallax] {
  transform: translate3d(0, var(--land-parallax-y, 0), 0);
  will-change: transform;
}
#sg-auth.landing .land-section {
  width: min(1200px, calc(100% - 48px)); margin: 0 auto;
  padding: clamp(96px, 13vw, 180px) clamp(6px, 3vw, 38px);
}
#sg-auth.landing .land-section-heading { max-width: 850px; }
#sg-auth.landing .land-section-heading.centered { margin-inline: auto; text-align: center; }
#sg-auth.landing .land-section-heading h2,
#sg-auth.landing .land-built-copy h2,
#sg-auth.landing .land-demo-copy h2,
#sg-auth.landing .land-beta-copy h2 {
  margin: 0; color: #f3f4ff; font: 400 clamp(39px, 6.2vw, 78px)/1.03 Georgia, serif;
  letter-spacing: -.045em; text-wrap: balance;
}
#sg-auth.landing .land-section-heading > p:last-child,
#sg-auth.landing .land-demo-copy > p:last-child,
#sg-auth.landing .land-beta-copy > p {
  max-width: 610px; margin: 26px 0 0; color: var(--land-muted); font-size: 15.5px; line-height: 1.75;
}

/* what it is */
#sg-auth.landing .land-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(54px, 8vw, 126px); }
#sg-auth.landing .land-intro-copy { align-self: end; padding-bottom: 8px; }
#sg-auth.landing .land-intro-copy p { margin: 0 0 22px; color: #bdc5df; font: 400 clamp(15px, 1.5vw, 18px)/1.75 'Space Grotesk'; }
#sg-auth.landing .land-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin: 50px 0 0;
  border-block: 1px solid var(--land-line); }
#sg-auth.landing .land-facts div { padding: 34px clamp(18px, 3vw, 42px); border-right: 1px solid var(--land-line); }
#sg-auth.landing .land-facts div:last-child { border-right: 0; }
#sg-auth.landing .land-facts dt { color: #d9e0ff; font: italic 400 clamp(31px, 4vw, 50px) Georgia, serif; }
#sg-auth.landing .land-facts dd { max-width: 24ch; margin: 10px 0 0; color: #7f89aa; font-size: 11.5px; line-height: 1.55; }

/* how it works */
#sg-auth.landing .land-how { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(60px, 10vw, 150px); }
#sg-auth.landing .land-steps { list-style: none; margin: 12px 0 0; padding: 0; border-top: 1px solid var(--land-line); }
#sg-auth.landing .land-steps li { display: grid; grid-template-columns: 52px 1fr auto; gap: 24px; align-items: start;
  padding: 31px 0; border-bottom: 1px solid var(--land-line); }
#sg-auth.landing .land-step-no { color: #7185d6; font: 600 10px 'Space Grotesk'; letter-spacing: .14em; }
#sg-auth.landing .land-steps h3 { margin: -5px 0 9px; color: #edf0ff; font: 400 24px Georgia, serif; }
#sg-auth.landing .land-steps p { margin: 0; color: #929dbc; font-size: 13.5px; line-height: 1.7; }
#sg-auth.landing .land-step-tag { align-self: center; padding: 6px 10px; border: 1px solid rgba(154,176,255,.22); border-radius: 999px;
  color: #7783a6; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

/* client and therapist */
#sg-auth.landing .land-audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 60px; }
#sg-auth.landing .land-audience-card { min-height: 500px; padding: clamp(30px, 4vw, 54px); display: flex; flex-direction: column;
  border: 1px solid var(--land-line); border-radius: 24px; background: rgba(8,11,23,.76); backdrop-filter: blur(18px); }
#sg-auth.landing .land-audience-card.client { box-shadow: inset 0 1px 0 rgba(95,225,187,.15); }
#sg-auth.landing .land-audience-card.therapist { box-shadow: inset 0 1px 0 rgba(142,168,255,.2); }
#sg-auth.landing .land-audience-label { color: #8fa4f8; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
#sg-auth.landing .land-audience-card.client .land-audience-label { color: #73d4b7; }
#sg-auth.landing .land-audience-card h3 { max-width: 14ch; margin: 60px 0 20px; color: #eff2ff;
  font: italic 400 clamp(29px, 3.4vw, 45px)/1.08 Georgia, serif; }
#sg-auth.landing .land-audience-card > p { max-width: 55ch; margin: 0; color: #9aa5c5; font-size: 14px; line-height: 1.7; }
#sg-auth.landing .land-audience-card ul, #sg-auth.landing .land-price-card ul { list-style: none; margin: 28px 0; padding: 0; }
#sg-auth.landing .land-audience-card li, #sg-auth.landing .land-price-card li { position: relative; padding: 9px 0 9px 21px;
  border-bottom: 1px solid rgba(160,180,240,.08); color: #b5bed8; font-size: 12.5px; }
#sg-auth.landing .land-audience-card li::before, #sg-auth.landing .land-price-card li::before { content: ''; position: absolute; left: 1px; top: 15px;
  width: 5px; height: 5px; border-radius: 50%; background: #8fa5f8; box-shadow: 0 0 9px rgba(143,165,248,.65); }
#sg-auth.landing .land-audience-card.client li::before { background: #67d4b2; box-shadow: 0 0 9px rgba(103,212,178,.55); }
#sg-auth.landing .land-text-link { margin-top: auto; color: #cfdaff; text-decoration: none; cursor: pointer; font: 600 12.5px 'Space Grotesk'; }
#sg-auth.landing .land-text-link span { margin-left: 9px; }

/* therapist-built */
#sg-auth.landing .land-built-section { width: min(1360px, calc(100% - 32px)); position: relative; margin-block: 70px;
  padding: clamp(80px, 11vw, 150px) clamp(32px, 10vw, 150px); overflow: hidden;
  border: 1px solid rgba(150,173,255,.2); border-radius: 30px;
  background: linear-gradient(135deg, rgba(15,20,42,.92), rgba(7,10,21,.88)); backdrop-filter: blur(24px); }
#sg-auth.landing .land-built-copy { max-width: 980px; margin: auto; }
#sg-auth.landing .land-built-copy h2 em { color: #aebfff; }
#sg-auth.landing .land-built-copy > p:not(.land-kicker) { max-width: 760px; margin: 28px 0 0; color: #aab4d1; font-size: 15px; line-height: 1.8; }
#sg-auth.landing .land-principles { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
#sg-auth.landing .land-principles span { padding: 9px 14px; border: 1px solid rgba(161,183,255,.2); border-radius: 999px;
  color: #96a3c8; font-size: 10.5px; }

/* testimonials */
#sg-auth.landing .land-quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 64px; }
#sg-auth.landing .land-quote-grid blockquote { min-height: 280px; margin: 0; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column;
  border: 1px solid var(--land-line); border-radius: 21px; background: rgba(8,11,22,.7); }
#sg-auth.landing .land-quote-grid blockquote::before { content: '\201C'; color: #8299f2; font: italic 400 44px/1 Georgia, serif; }
#sg-auth.landing .land-quote-grid blockquote > p { margin: 20px 0 34px; color: #dce1f7; font: italic 400 clamp(20px, 2.3vw, 28px)/1.45 Georgia, serif; }
#sg-auth.landing .land-quote-grid footer { display: flex; flex-direction: column; gap: 3px; margin-top: auto; }
#sg-auth.landing .land-quote-grid footer span { color: #bdc8ed; font: 600 11px 'Space Grotesk'; }
#sg-auth.landing .land-quote-grid footer small { color: #687392; font-size: 10px; }

/* pricing */
#sg-auth.landing .land-pricing { padding-top: 190px; }
#sg-auth.landing .land-section-heading.centered > p:last-child { margin-inline: auto; }
#sg-auth.landing .land-price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 520px)); justify-content: center; gap: 16px; margin-top: 64px; }
#sg-auth.landing .land-price-card { position: relative; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--land-line);
  border-radius: 24px; background: rgba(8,11,22,.78); }
#sg-auth.landing .land-price-card.featured { border-color: rgba(150,172,255,.38); background: linear-gradient(145deg, rgba(23,30,60,.9), rgba(8,11,24,.88)); }
#sg-auth.landing .land-popular { position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px;
  background: rgba(137,161,255,.12); color: #9db1ff; font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; }
#sg-auth.landing .land-price-top { display: flex; flex-direction: column; gap: 6px; }
#sg-auth.landing .land-price-top span { color: #7d89ab; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
#sg-auth.landing .land-price-top b { color: #e8ecff; font: 400 23px Georgia, serif; }
#sg-auth.landing .land-price { margin: 34px 0 12px; color: #f4f5ff; font: 400 66px/.95 Georgia, serif; }
#sg-auth.landing .land-price sup { margin-right: 3px; color: #aebcf0; font: 400 24px Georgia, serif; vertical-align: top; }
#sg-auth.landing .land-price span { color: #7782a2; font: 400 12px 'Space Grotesk'; }
#sg-auth.landing .land-price-desc { min-height: 44px; margin: 0; color: #8f99b8; font-size: 13px; line-height: 1.6; }
#sg-auth.landing .land-price-card ul { margin: 30px 0 36px; }
#sg-auth.landing .land-price-card > a { min-height: 48px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(167,185,247,.25); border-radius: 999px; color: #e4e9ff; text-decoration: none; font: 600 12px 'Space Grotesk'; }
#sg-auth.landing .land-price-card.featured > a { background: #edf0ff; border-color: #fff; color: #090b14; }

/* demo */
#sg-auth.landing .land-demo { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
#sg-auth.landing .land-demo-links { border-top: 1px solid var(--land-line); }
#sg-auth.landing .land-demo-links > a { min-height: 124px; padding: 26px 8px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--land-line); color: #e3e8ff; text-decoration: none; cursor: pointer; transition: padding .2s, color .2s; }
#sg-auth.landing .land-demo-links > a:hover { padding-inline: 18px; color: #fff; }
#sg-auth.landing .land-demo-links span { font: 400 clamp(20px, 2.5vw, 31px) Georgia, serif; }
#sg-auth.landing .land-demo-links small { display: block; margin-bottom: 8px; color: #7180aa; font: 600 9px 'Space Grotesk';
  letter-spacing: .15em; text-transform: uppercase; }
#sg-auth.landing .land-demo-links b { width: 43px; height: 43px; display: grid; place-items: center; flex: none;
  border: 1px solid rgba(160,180,245,.3); border-radius: 50%; color: #91a6f2; font-size: 16px; }

/* signup */
#sg-auth.landing .land-beta { width: min(1360px, calc(100% - 32px)); margin: 70px auto 0; padding: clamp(74px, 10vw, 135px);
  display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 9vw, 130px); align-items: center;
  border: 1px solid rgba(159,181,255,.23); border-radius: 30px 30px 0 0;
  background: linear-gradient(130deg, rgba(21,28,57,.93), rgba(7,10,21,.94)); }
#sg-auth.landing .land-beta-note { display: flex; gap: 10px; align-items: center; margin-top: 30px; color: #8995b8; font-size: 11px; }
#sg-auth.landing .land-beta-note .sg-mark { color: #95aaff; }
#sg-auth.landing .land-beta-card { padding: clamp(26px, 4vw, 42px); border: 1px solid rgba(168,187,255,.23); border-radius: 20px;
  background: rgba(5,7,16,.72); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
#sg-auth.landing .land-beta-card-label { color: #cfd7f5; font: 400 20px Georgia, serif; }
#sg-auth.landing .land-beta-form { display: block; max-width: none; margin: 28px 0 0; padding: 0; border: 0; background: transparent; }
#sg-auth.landing .land-beta-form > label { display: block; margin: 0 0 8px; color: #7e89aa; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
#sg-auth.landing .land-beta-form > div { display: flex; gap: 7px; padding: 6px; border: 1px solid rgba(171,189,255,.25); border-radius: 999px;
  background: rgba(2,4,10,.7); }
#sg-auth.landing .land-beta-form input { min-width: 0; flex: 1; height: 48px; padding: 0 15px; border: 0; border-radius: 999px;
  background: transparent; color: #f1f3ff; font-size: 14px; outline: none; }
#sg-auth.landing .land-beta-form input:focus { box-shadow: inset 0 0 0 1px rgba(164,184,255,.28); }
#sg-auth.landing .land-beta-form button { min-height: 48px; padding: 0 18px; border: 0; border-radius: 999px; cursor: pointer;
  background: #e8ecff; color: #090b14; font: 700 11.5px 'Space Grotesk'; white-space: nowrap; }
#sg-auth.landing .land-beta-form button:disabled { opacity: .6; cursor: wait; }
#sg-auth.landing .land-beta-status { min-height: 21px; margin: 10px 8px 0 !important; color: #9fb3ff !important; font-size: 11px !important; line-height: 1.5 !important; }
#sg-auth.landing .land-beta-card > small { display: block; margin: 8px 6px 0; color: #59627e; font-size: 9.5px; line-height: 1.5; }

/* footer */
#sg-auth.landing .land-footer { position: relative; width: min(1360px, calc(100% - 32px)); margin: 0 auto; padding: 52px clamp(24px, 6vw, 90px) 35px;
  display: grid; grid-template-columns: 1fr auto; gap: 42px; border-top: 1px solid var(--land-line); background: #050711; }
#sg-auth.landing .land-footer > div:first-child p { margin: 15px 0 0; color: #66708e; font-size: 10.5px; }
#sg-auth.landing .land-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 22px; }
#sg-auth.landing .land-footer-links a, #sg-auth.landing .land-footer-links button { color: #8d97b6; text-decoration: none; font: 500 10.5px 'Space Grotesk'; }
#sg-auth.landing .land-footer-links button { padding: 0; min-height: 0; }
#sg-auth.landing .land-footer > small { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(150,170,225,.09);
  color: #4e5771; font-size: 9.5px; }

#sg-auth.landing.showcard .land-shell, #sg-auth.landing.showcard .land-story { display: none; }
#sg-auth.landing.showcard .card { display: block; }
#sg-auth.landing .sr-only { position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important;
  white-space: nowrap !important; border: 0 !important; }

@media (prefers-reduced-motion: reduce) {
  #sg-auth.landing { scroll-behavior: auto; }
  #sg-auth.landing .land-scroll i::after { animation: none; }
  #sg-auth.landing [data-land-parallax] { transform: none; }
  #sg-auth.landing .land-reveal { opacity: 1; translate: none; animation: none; }
}

@media (max-width: 1020px) {
  #sg-auth.landing .land-intro, #sg-auth.landing .land-how, #sg-auth.landing .land-demo,
  #sg-auth.landing .land-beta { grid-template-columns: 1fr; }
  #sg-auth.landing .land-intro-copy { max-width: 700px; }
  #sg-auth.landing .land-how, #sg-auth.landing .land-demo { gap: 60px; }
  #sg-auth.landing .land-beta { gap: 55px; }
  #sg-auth.landing .land-beta-card { max-width: 680px; }
}

@media (max-width: 760px) {
  #sg-auth.landing .land-top { grid-template-columns: 1fr auto; min-height: 62px; padding: 0 16px; }
  #sg-auth.landing .land-nav, #sg-auth.landing .land-nav-cta { display: none; }
  #sg-auth.landing .land-hero { min-height: calc(100svh - 62px); padding: 74px 22px 76px; }
  #sg-auth.landing .land-hero h1 { font-size: clamp(43px, 13.8vw, 68px); }
  #sg-auth.landing .land-lede { margin-top: 24px; font-size: 15px; }
  #sg-auth.landing .land-hero-actions { width: 100%; }
  #sg-auth.landing .land-primary, #sg-auth.landing .land-secondary { width: 100%; justify-content: space-between; }
  #sg-auth.landing .land-built { align-items: flex-start; line-height: 1.5; }
  #sg-auth.landing .land-scroll { left: 22px; bottom: 20px; }
  #sg-auth.landing .land-trusted { padding-inline: 20px; }
  #sg-auth.landing .land-logo-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
  #sg-auth.landing .land-logo-row span { justify-content: center; font-size: 12px; }
  #sg-auth.landing .land-section { width: calc(100% - 28px); padding: 88px 10px; }
  #sg-auth.landing .land-section-heading h2, #sg-auth.landing .land-built-copy h2,
  #sg-auth.landing .land-demo-copy h2, #sg-auth.landing .land-beta-copy h2 { font-size: clamp(38px, 11.5vw, 56px); }
  #sg-auth.landing .land-intro { display: block; }
  #sg-auth.landing .land-intro-copy { margin-top: 42px; }
  #sg-auth.landing .land-facts { grid-template-columns: 1fr; margin-top: 42px; }
  #sg-auth.landing .land-facts div { border-right: 0; border-bottom: 1px solid var(--land-line); }
  #sg-auth.landing .land-facts div:last-child { border-bottom: 0; }
  #sg-auth.landing .land-how, #sg-auth.landing .land-demo { gap: 42px; }
  #sg-auth.landing .land-steps li { grid-template-columns: 34px 1fr; gap: 15px; }
  #sg-auth.landing .land-step-tag { display: none; }
  #sg-auth.landing .land-audience-grid, #sg-auth.landing .land-quote-grid,
  #sg-auth.landing .land-price-grid { grid-template-columns: 1fr; }
  #sg-auth.landing .land-audience-grid, #sg-auth.landing .land-quote-grid,
  #sg-auth.landing .land-price-grid { margin-top: 42px; }
  #sg-auth.landing .land-audience-card { min-height: 0; }
  #sg-auth.landing .land-audience-card h3 { margin-top: 42px; }
  #sg-auth.landing .land-built-section { width: calc(100% - 20px); margin-block: 30px; padding: 72px 25px; border-radius: 22px; }
  #sg-auth.landing .land-principles { align-items: flex-start; flex-direction: column; }
  #sg-auth.landing .land-quote-grid blockquote { min-height: 250px; }
  #sg-auth.landing .land-pricing { padding-top: 110px; }
  #sg-auth.landing .land-popular { position: static; width: max-content; margin-bottom: 20px; }
  #sg-auth.landing .land-demo-links > a { min-height: 104px; }
  #sg-auth.landing .land-beta { width: calc(100% - 20px); margin-top: 30px; padding: 68px 22px; gap: 45px; border-radius: 22px 22px 0 0; }
  #sg-auth.landing .land-beta-card { padding: 25px 18px; }
  #sg-auth.landing .land-beta-form > div { display: grid; border-radius: 17px; }
  #sg-auth.landing .land-beta-form input, #sg-auth.landing .land-beta-form button { width: 100%; }
  #sg-auth.landing .land-footer { width: calc(100% - 20px); grid-template-columns: 1fr; gap: 30px; padding: 42px 22px 30px; }
  #sg-auth.landing .land-footer-links { justify-content: flex-start; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  #sg-auth.landing { scroll-behavior: auto; }
  #sg-auth.landing .land-scroll i::after { animation: none; }
  #sg-auth.landing [data-land-parallax] { transform: none; }
}
