:root {
  color-scheme: light;
  --release-banner-height: 58px;
  --ink: #24323a;
  --muted: #667781;
  --bg: #f7f5ef;
  --paper: #ffffff;
  --paper-strong: #fcfbf8;
  --line: #d7dfdc;
  --green: #32bdae;
  --green-dark: #173a35;
  --track: #1c978e;
  --sun: #ef8054;
  --blue: #24323a;
  --shadow: 0 18px 45px rgba(23, 58, 53, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f7bf35;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.release-banner {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 10px max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(23, 58, 53, 0.14);
  color: var(--green-dark);
  background: #fcfbf8;
  box-shadow: 0 10px 26px rgba(23, 58, 53, 0.1);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.release-banner p {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.45;
}

.release-banner strong {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.release-banner button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fcfbf8;
  background: var(--green-dark);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.release-banner.is-dismissing {
  opacity: 0;
  transform: translateY(-100%);
}

.release-banner:not([hidden]) + .topbar {
  top: calc(var(--release-banner-height, 58px) + 18px);
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(var(--max), calc(100% - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fcfbf8;
  background: rgba(23, 58, 53, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.15);
  transition:
    top 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.package a,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  text-decoration: none;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.nav {
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: rgba(252, 251, 248, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-cta {
  min-height: 42px;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green-dark);
  background: var(--paper);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  color: #fcfbf8;
}

.release-banner:not([hidden]) ~ main .hero {
  padding-top: max(128px, calc(var(--release-banner-height, 58px) + 108px));
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 52, 53, 0.9), rgba(20, 83, 77, 0.74) 42%, rgba(36, 50, 58, 0.26) 74%, rgba(36, 50, 58, 0.12)),
    linear-gradient(0deg, rgba(17, 28, 32, 0.38), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker,
.package-label,
.preview-label {
  margin: 0 0 14px;
  color: var(--sun);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.35rem);
}

.rotating-word {
  display: inline-block;
  min-width: 11.6ch;
  color: var(--rotating-word-color, var(--sun));
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
  vertical-align: baseline;
}

.rotating-word.is-changing {
  opacity: 0;
  transform: translateY(0.18em);
}

h2 {
  font-size: clamp(2.2rem, 4.35vw, 4.05rem);
}

h3 {
  margin-bottom: 10px;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy {
  width: min(640px, 100%);
  margin-bottom: 28px;
  color: rgba(252, 251, 248, 0.86);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--green-dark);
  background: var(--sun);
  box-shadow: 0 16px 32px rgba(239, 128, 84, 0.28);
}

.button-soft {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats {
  width: min(680px, 100%);
  gap: 10px;
  margin: 34px 0 0;
}

.hero-stats div {
  flex: 1 1 160px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0;
  color: rgba(252, 251, 248, 0.78);
  font-size: 0.92rem;
}

.intro-band {
  padding: 26px 24px;
  background: var(--green-dark);
  color: var(--paper);
  text-align: center;
}

.intro-band p {
  width: min(900px, 100%);
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.proof-band {
  padding: 66px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(50, 189, 174, 0.08), transparent 36%),
    var(--paper-strong);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 12ch;
  font-size: 3.15rem;
}

.proof-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

.proof-points {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  position: relative;
  padding-left: 24px;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.45;
}

.proof-points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--track);
}

.proof-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 58, 53, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 48px rgba(23, 58, 53, 0.14);
}

.proof-browser-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(23, 58, 53, 0.1);
  color: rgba(23, 58, 53, 0.64);
  background: #fcfbf8;
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(23, 58, 53, 0.2);
}

.proof-browser-bar strong {
  min-width: 0;
  overflow: hidden;
  padding-left: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-site {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  color: #fcfbf8;
  background: var(--green-dark);
  text-decoration: none;
}

.proof-site img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.proof-preview figcaption {
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 13px 16px 15px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-preview figcaption a {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
  scroll-margin-top: 112px;
}

.section-kicker {
  color: var(--track);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p,
.template-copy p,
.package p,
.timeline p,
.start-panel p,
.setup-copy p,
.setup-summary p,
.brief-preview p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline article,
.package,
.start-panel,
.setup-card,
.brief-preview,
.setup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(23, 58, 53, 0.06);
}

.timeline article {
  padding: 24px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--track);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.template {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.template-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.template-tab {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: transparent;
  cursor: pointer;
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.template-tab.active,
.template-tab[aria-pressed="true"] {
  color: var(--green-dark);
  background: var(--green);
  border-color: var(--green);
}

.template-tab:hover {
  border-color: rgba(23, 58, 53, 0.28);
  transform: translateY(-1px);
}

.template-tab.active:hover,
.template-tab[aria-pressed="true"]:hover {
  border-color: var(--green);
}

.template-list {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding: 28px 30px 30px 54px;
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.template-list li {
  padding: 12px 0;
  color: var(--muted);
  line-height: 1.55;
}

.template-list li::marker {
  color: var(--track);
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package {
  padding: 28px;
}

.package.featured {
  color: var(--paper);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.package.featured p {
  color: rgba(252, 251, 248, 0.74);
}

.package.featured .package-label {
  color: var(--sun);
}

.package a {
  min-height: 46px;
  width: fit-content;
  justify-content: center;
  margin-top: 18px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--sun);
  text-decoration: none;
  font-weight: 900;
}

.start-section {
  border-top: 1px solid var(--line);
}

.start-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px;
}

.start-panel h2 {
  margin-bottom: 0;
}

.setup-page {
  min-height: 100svh;
  padding: 126px max(22px, calc((100vw - var(--max)) / 2)) 58px;
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.setup-copy {
  position: sticky;
  top: 118px;
}

.setup-step {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(50, 189, 174, 0.18);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.setup-copy h1 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.setup-copy p {
  max-width: 620px;
  font-size: 1.06rem;
}

.setup-card {
  padding: 24px;
}

.setup-form {
  display: grid;
  gap: 18px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  position: relative;
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card strong {
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.choice-card span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.35;
}

.choice-card:has(input:checked) {
  border-color: var(--green);
  background: rgba(50, 189, 174, 0.12);
  box-shadow: 0 0 0 4px rgba(50, 189, 174, 0.14);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.full-field {
  grid-column: 1 / -1;
}

.helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.setup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.setup-actions .button-soft {
  color: var(--green-dark);
  border-color: var(--line);
  background: var(--paper-strong);
}

.setup-summary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: var(--paper-strong);
}

.setup-summary h2 {
  max-width: none;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.setup-summary p {
  margin-bottom: 0;
}

.setup-summary .setup-device-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 800;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: "Sora", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fcfbf8;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(50, 189, 174, 0.16);
}

.brief-preview {
  position: sticky;
  top: 104px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(50, 189, 174, 0.08), transparent 38%),
    var(--paper);
}

.preview-label {
  color: var(--track);
}

.brief-preview h3 {
  overflow-wrap: anywhere;
}

.legal-page {
  padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 72px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 36px;
}

.legal-hero h1 {
  max-width: 11ch;
}

.legal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 860px;
}

.legal-content article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-content p + ul {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content li::marker {
  color: var(--green);
}

.legal-content a {
  color: var(--track);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(23, 58, 53, 0.14);
  background: var(--paper-strong);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cookie-notice p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cookie-actions a,
.footer-links a {
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-actions button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fcfbf8;
  background: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
}

.cookie-notice.is-dismissing {
  opacity: 0;
  transform: translateY(12px);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--green-dark);
}

.footer div {
  display: grid;
  gap: 6px;
}

.footer p {
  margin: 0;
  color: rgba(252, 251, 248, 0.72);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(252, 251, 248, 0.86);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .section-head,
  .template,
  .start-panel,
  .setup-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    gap: 32px;
  }

  .setup-copy {
    position: static;
  }

  .timeline,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brief-preview {
    position: static;
  }

  .release-banner,
  .cookie-notice,
  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .release-banner {
    padding-right: 64px;
  }

  .release-banner button {
    position: absolute;
    top: 12px;
    right: 18px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-height: 780px) and (min-width: 681px) {
  .hero {
    min-height: 88svh;
    padding-top: 116px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: clamp(3rem, 6.2vw, 5.5rem);
  }

  .hero-copy {
    margin-bottom: 22px;
    line-height: 1.55;
  }

  .hero-stats {
    display: none;
  }
}

@media (max-width: 680px) {
  .release-banner {
    gap: 10px;
    padding: 9px 58px 9px 18px;
  }

  .release-banner p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .release-banner button {
    top: 10px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .release-banner:not([hidden]) + .topbar {
    top: calc(var(--release-banner-height, 58px) + 10px);
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 88svh;
    padding: 108px 18px 44px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 52, 53, 0.92), rgba(20, 83, 77, 0.68)),
      linear-gradient(0deg, rgba(17, 28, 32, 0.42), transparent 44%);
  }

  h1 {
    font-size: clamp(2.46rem, 12.8vw, 3.52rem);
  }

  .rotating-word {
    display: block;
    min-width: 0;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-actions .button {
    width: 100%;
  }

  h2 {
    max-width: 11ch;
  }

  .timeline,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 64px 0;
  }

  .proof-band {
    padding: 48px 18px;
  }

  .proof-copy h2 {
    font-size: 2.2rem;
  }

  .proof-site {
    min-height: 430px;
  }

  .section-head {
    gap: 14px;
  }

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

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .setup-page {
    padding: 104px 12px 44px;
  }

  .template-list {
    padding-left: 42px;
  }

  .footer {
    flex-direction: column;
  }
}
