:root {
  color-scheme: dark;
  --ink: #f6f6f2;
  --muted: #a8aaad;
  --quiet: #73767b;
  --canvas: #0b0c0f;
  --surface: #121419;
  --surface-2: #191c22;
  --line: rgba(255, 255, 255, 0.11);
  --warm: #ff7448;
  --gold: #e7b65e;
  --cyan: #49d6d0;
  --blue: #6278ff;
  --green: #87d6a0;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --page: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(73, 214, 208, 0.07), transparent 26rem),
    var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #08090b;
  background: #fff;
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(11, 12, 15, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-header nav a,
.site-footer nav a {
  color: #bfc1c5;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.site-footer nav a:hover { color: #fff; }

.site-header .nav-cta {
  padding: 8px 14px;
  color: #0a0b0d;
  background: #fff;
  border-radius: 999px;
}

.site-header .nav-cta:hover { color: #0a0b0d; background: #e9e9e4; }

.hero {
  width: var(--page);
  min-height: calc(100svh - 76px);
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow,
.card-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--green);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 7.4vw, 7rem);
  line-height: 0.91;
  letter-spacing: -0.073em;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, #f9a761 0%, #ff6a50 36%, #cf60c7 68%, #66d8dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: #b8babd;
  font-size: clamp(1.07rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

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

.button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #090a0c; background: #fff; }
.button-primary:hover { background: #e8e8e4; }
.button-secondary { color: #fff; background: rgba(255,255,255,0.04); border-color: var(--line); }
.button-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.button-light { color: #101114; background: #fff; }

.launch-note {
  margin: 20px 0 0;
  color: var(--quiet);
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.spectrum-glow {
  position: absolute;
  z-index: -1;
  width: 125%;
  aspect-ratio: 1;
  background: conic-gradient(from 140deg, rgba(73,214,208,.28), rgba(98,120,255,.22), rgba(207,96,199,.25), rgba(255,116,72,.31), rgba(231,182,94,.23), rgba(73,214,208,.28));
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.75;
}

.phone {
  position: relative;
  width: min(340px, 78vw);
  padding: 9px;
  background: linear-gradient(145deg, #767b82, #17191d 24%, #030405 70%, #666a70);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 56px;
  box-shadow: 0 48px 100px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.06);
  transform: rotate(4deg);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  background: #292a2a;
  border-radius: 47px;
}

.camera-scene { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(150deg, #baa071 0 25%, #617a70 25% 52%, #3d3943 52%); }
.scene-wash { position: absolute; border-radius: 50%; filter: blur(6px); }
.wash-one { width: 88%; height: 44%; top: -8%; left: -22%; background: #d9bd7f; transform: rotate(-24deg); }
.wash-two { width: 90%; height: 45%; right: -34%; top: 28%; background: #516f6d; }
.wash-three { width: 100%; height: 40%; left: -20%; bottom: -9%; background: #4c3542; transform: rotate(18deg); }

.dynamic-island { position: absolute; top: 14px; left: 50%; width: 92px; height: 26px; background: #050505; border-radius: 99px; transform: translateX(-50%); }
.app-tools { position: absolute; top: 54px; left: 18px; right: 18px; display: flex; justify-content: space-between; color: #fff; font-size: 12px; text-shadow: 0 2px 8px rgba(0,0,0,.7); }
.app-tools span:last-child { display: grid; width: 34px; height: 34px; place-items: center; background: rgba(15,15,16,.64); border-radius: 50%; font-size: 17px; }

.reticle {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 76px;
  height: 76px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 3px 14px rgba(0,0,0,.35);
}
.reticle::before, .reticle::after { content: ""; position: absolute; background: rgba(255,255,255,.95); }
.reticle::before { width: 2px; height: 92px; top: -10px; left: 35px; }
.reticle::after { height: 2px; width: 92px; left: -10px; top: 35px; }
.reticle span { position: absolute; inset: 15px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }

.live-value { position: absolute; top: 58%; left: 20px; right: 20px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; background: rgba(9,10,12,.72); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; backdrop-filter: blur(14px); }
.live-value span { color: #bfc0c2; font-size: .72rem; }
.live-value strong { font-size: 1.2rem; letter-spacing: .03em; }
.capture-button { position: absolute; bottom: 104px; left: 50%; width: 72px; height: 72px; display: grid; place-items: center; background: rgba(0,0,0,.48); border-radius: 50%; transform: translateX(-50%); }
.capture-button span { width: 58px; height: 58px; background: #c56848; border: 3px solid #fff; border-radius: 50%; box-shadow: inset 0 0 0 3px rgba(0,0,0,.12); }
.palette-strip { position: absolute; left: 18px; right: 18px; bottom: 24px; padding: 12px; display: flex; justify-content: space-between; gap: 8px; background: rgba(9,10,12,.72); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; backdrop-filter: blur(14px); }
.palette-strip span { width: 42px; aspect-ratio: 1; background: var(--swatch); border: 2px solid rgba(255,255,255,.78); border-radius: 50%; }

.floating-swatch { position: absolute; z-index: 2; width: 106px; aspect-ratio: 1; display: grid; place-items: end center; padding-bottom: 13px; background: var(--swatch); border: 1px solid rgba(255,255,255,.28); border-radius: 28px; box-shadow: 0 22px 54px rgba(0,0,0,.34); font-size: .7rem; font-weight: 800; }
.swatch-a { --swatch:#3d7788; left: 0; top: 17%; transform: rotate(-8deg); }
.swatch-b { --swatch:#d9b15b; right: 1%; bottom: 15%; transform: rotate(8deg); color: #17130c; }

.trust-strip {
  width: var(--page);
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip p { margin: 0; padding: 0 24px; border-right: 1px solid var(--line); }
.trust-strip p:first-child { padding-left: 0; }
.trust-strip p:last-child { border: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { margin-bottom: 2px; font-size: .94rem; }
.trust-strip span { color: var(--quiet); font-size: .82rem; }

.section { width: var(--page); margin: 0 auto; padding: clamp(92px, 12vw, 152px) 0; }
.section-heading { max-width: 900px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--muted); }

.step-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; counter-reset: none; }
.step-grid li { min-height: 250px; padding: 28px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); border: 1px solid var(--line); border-radius: var(--radius-md); }
.step-number { display: block; margin-bottom: 72px; color: var(--warm); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .78rem; }
.step-grid p { margin: 0; color: var(--muted); }

.features { width: 100%; padding-left: max(20px, calc((100% - 1180px) / 2)); padding-right: max(20px, calc((100% - 1180px) / 2)); background: #f0efe9; color: #141518; }
.features .eyebrow, .features .card-kicker { color: #975135; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 380px; padding: clamp(28px, 4vw, 44px); overflow: hidden; background: #faf9f5; border: 1px solid rgba(15,17,21,.12); border-radius: var(--radius-lg); }
.feature-card-wide { grid-column: 1 / -1; min-height: 430px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 56px; color: #f6f6f2; background: #15171c; border-color: #252930; }
.feature-card p { color: #64676c; }
.feature-card-wide p { color: #afb1b5; }
.code-stack { display: grid; gap: 12px; }
.code-stack code { min-width: 0; padding: 18px 20px; overflow: hidden; color: #e8e8e5; background: #202329; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; font-size: clamp(.72rem, 1.4vw, .95rem); text-overflow: ellipsis; white-space: nowrap; }
.code-stack code:first-child { color: #ff9b72; font-size: clamp(1.2rem, 2vw, 1.65rem); }
.palette-demo { position: absolute; left: 36px; right: 36px; bottom: 40px; display: flex; }
.palette-demo span { width: 88px; aspect-ratio: 1; margin-right: -14px; background: var(--swatch); border: 5px solid #faf9f5; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.sampling-card { background: #dbe9e4; }
.sample-grid { position: absolute; right: -42px; bottom: -40px; width: 260px; aspect-ratio: 1; background: linear-gradient(135deg, #385d6c 0 32%, #dcba76 32% 62%, #c66d51 62%); border-radius: 50%; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.sample-grid::before, .sample-grid::after { content:""; position:absolute; background:rgba(255,255,255,.92); }
.sample-grid::before { width:2px; height:100%; left:50%; }
.sample-grid::after { height:2px; width:100%; top:50%; }
.sample-grid span { position:absolute; inset:64px; border:2px solid #fff; border-radius:50%; }
.feedback-card { grid-column: 1 / -1; min-height: 300px; padding-right: 44%; background: linear-gradient(135deg, #ede5ee, #f4eee4); }
.feedback-pills { position: absolute; right: 5%; top: 50%; width: 36%; display: flex; flex-wrap: wrap; gap: 10px; transform: translateY(-50%); }
.feedback-pills span { padding: 12px 17px; color: #29242c; background: rgba(255,255,255,.72); border: 1px solid rgba(50,40,54,.14); border-radius: 999px; font-weight: 750; }

.privacy { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.privacy-mark { position: relative; aspect-ratio: 1; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(73,214,208,.18), transparent 58%); }
.privacy-mark::before { content:""; width: 52%; height: 60%; border: 3px solid var(--cyan); border-radius: 50% 50% 44% 44% / 38% 38% 62% 62%; box-shadow: 0 0 70px rgba(73,214,208,.22); }
.privacy-mark::after { content:""; position:absolute; width: 34%; height: 31%; top: 23%; border: 3px solid var(--cyan); border-bottom: 0; border-radius: 80px 80px 0 0; }
.privacy-mark span { position:absolute; width: 10px; height: 54px; top: 49%; background: var(--cyan); border-radius:99px; }
.privacy-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.check-list { margin: 28px 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 13px 0; padding-left: 28px; color: #c5c7ca; }
.check-list li::before { content:""; position:absolute; left:0; top:.48em; width:10px; height:10px; background: var(--green); border-radius:50%; box-shadow: 0 0 12px rgba(135,214,160,.4); }
.text-link { color: #fff; font-weight: 750; text-decoration: none; }
.text-link span { color: var(--cyan); }

.accuracy { width: 100%; padding-left: max(20px, calc((100% - 1180px) / 2)); padding-right: max(20px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); background: #e6b65e; color: #17130b; }
.accuracy .eyebrow { color: #6c4217; }
.accuracy p { font-size: 1.08rem; }

.availability { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: clamp(40px, 8vw, 110px); }
.availability-copy > p:last-child { color: var(--muted); font-size: 1.08rem; }
.price-card { padding: 36px; background: linear-gradient(145deg, #1e2128, #111318); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.price-card > div { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; }
.price-card > div span { color:var(--muted); font-size:.84rem; }
.price-card strong { font-size: clamp(3rem, 6vw, 5.2rem); line-height:1; letter-spacing:-.07em; }
.price-card p { margin:18px 0; color:var(--muted); }
.store-status { display:block; padding:14px 18px; color:#181510; background:var(--gold); border-radius:14px; font-weight:800; text-align:center; }
.price-card small { display:block; margin-top:14px; color:var(--quiet); text-align:center; }

.support-callout { width: 100%; padding-left: max(20px, calc((100% - 1180px) / 2)); padding-right: max(20px, calc((100% - 1180px) / 2)); display:grid; grid-template-columns:1fr .75fr; gap:70px; background: linear-gradient(135deg, #5f4760, #403d66); }
.support-callout p:not(.eyebrow) { color:#d6d0db; }
.support-callout .eyebrow { color:#f3b3dd; }

.site-footer { width:var(--page); margin:0 auto; padding:52px 0 32px; display:grid; grid-template-columns:1.2fr .8fr; gap:30px; border-top:1px solid var(--line); }
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand strong, .footer-brand span { display:block; }
.footer-brand span { max-width:520px; color:var(--quiet); font-size:.78rem; }
.site-footer nav { justify-content:flex-end; }
.copyright { grid-column:1 / -1; margin:10px 0 0; color:#64676c; font-size:.76rem; }

/* Support, privacy, and product direction */
.subpage-hero { width:var(--page); min-height:540px; margin:0 auto; padding:100px 0; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.subpage-hero h1 { max-width:900px; font-size:clamp(3.6rem, 8vw, 7rem); }
.subpage-hero > p:not(.eyebrow) { max-width:740px; color:var(--muted); font-size:1.15rem; }
.subpage-hero .button { margin-top:14px; }
.support-content { padding-top:50px; }
.support-topic { padding:34px 0; display:grid; grid-template-columns:100px 1fr; gap:20px; border-top:1px solid var(--line); }
.support-topic:last-child { border-bottom:1px solid var(--line); }
.support-number { color:var(--warm); font-family:ui-monospace, SFMono-Regular, Menlo, monospace; font-size:.8rem; }
.support-topic p, .support-topic li { color:var(--muted); }
.support-topic ol { margin:12px 0 0; padding-left:22px; }
.support-topic li { margin:7px 0; }
.contact-panel { width:100%; padding-left:max(20px, calc((100% - 1180px) / 2)); padding-right:max(20px, calc((100% - 1180px) / 2)); display:grid; grid-template-columns:1fr 1fr; gap:70px; background:#e8e4da; color:#151618; }
.contact-panel .eyebrow { color:#945034; }
.contact-panel > div > p:not(.eyebrow), .contact-card p { color:#62656a; }
.contact-card { padding:32px; background:#f7f5ef; border:1px solid rgba(20,21,24,.12); border-radius:var(--radius-md); }
.contact-card > span { display:block; color:#777a7f; font-size:.76rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.contact-card > a { display:inline-block; margin:8px 0 18px; color:#202226; font-size:clamp(1.25rem, 3vw, 2rem); font-weight:800; text-decoration:none; overflow-wrap:anywhere; }

.policy-hero { min-height:480px; }
.policy-layout { width:var(--page); margin:0 auto; padding:40px 0 130px; display:grid; grid-template-columns:280px minmax(0,760px); justify-content:space-between; gap:80px; }
.policy-summary { position:sticky; top:110px; align-self:start; padding:24px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md); }
.policy-summary > strong { display:block; margin-bottom:18px; }
.policy-summary .check-list { margin:0; }
.policy-summary .check-list li { color:#b9bbbe; font-size:.88rem; }
.policy-content h2 { margin:54px 0 14px; font-size:clamp(1.55rem, 3vw, 2.25rem); letter-spacing:-.035em; }
.policy-content h2:first-child { margin-top:0; }
.policy-content p, .policy-content li { color:#b6b8bb; }
.policy-content a { color:var(--cyan); }

.direction-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.direction-grid .section-heading { grid-column:1 / -1; }
.direction-grid article { min-height:250px; padding:28px; background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md); }
.direction-grid article > span { display:block; margin-bottom:64px; color:var(--warm); font-family:ui-monospace, SFMono-Regular, Menlo, monospace; font-size:.8rem; }
.direction-grid article p, .possibilities p { color:var(--muted); }
.possibilities { width:100%; padding-left:max(20px, calc((100% - 1180px) / 2)); padding-right:max(20px, calc((100% - 1180px) / 2)); background:#e9e6de; color:#141518; }
.possibilities .eyebrow { color:#975135; }
.possibility-list { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.possibility-list article { padding:28px; background:#f7f5ef; border:1px solid rgba(20,21,24,.1); border-radius:var(--radius-md); }

.error-page { min-height:100svh; display:grid; place-items:center; background:radial-gradient(circle at 50% 38%, rgba(98,120,255,.15), transparent 28rem), var(--canvas); }
.error-page main { width:min(680px, calc(100% - 40px)); text-align:center; }
.error-page img { margin:0 auto 30px; border-radius:18px; }
.error-page h1 { font-size:clamp(3rem, 8vw, 6rem); }
.error-page p:not(.eyebrow) { color:var(--muted); }

@media (max-width: 920px) {
  .hero { grid-template-columns:1fr; padding-top:90px; }
  .hero-copy { max-width:760px; }
  .hero-visual { min-height:650px; }
  .phone { width:320px; }
  .swatch-a { left:calc(50% - 250px); }
  .swatch-b { right:calc(50% - 250px); }
  .privacy, .accuracy, .availability, .support-callout, .contact-panel { grid-template-columns:1fr; }
  .privacy-mark { width:min(440px,100%); margin:0 auto; }
  .feature-card-wide { grid-template-columns:1fr; }
  .policy-layout { grid-template-columns:1fr; gap:40px; }
  .policy-summary { position:static; }
}

@media (max-width: 720px) {
  :root { --page:min(100% - 28px, 1180px); }
  .site-header { min-height:68px; }
  .site-header nav { gap:14px; }
  .site-header nav a:not(.nav-cta) { display:none; }
  .hero { min-height:auto; padding-top:66px; }
  h1 { font-size:clamp(3.25rem, 15vw, 5.2rem); }
  .hero-visual { min-height:590px; }
  .phone { width:min(290px,77vw); }
  .floating-swatch { width:88px; border-radius:22px; }
  .swatch-a { left:0; top:20%; }
  .swatch-b { right:0; bottom:12%; }
  .trust-strip, .step-grid, .feature-grid, .direction-grid, .possibility-list { grid-template-columns:1fr; }
  .trust-strip p { padding:15px 0; border-right:0; border-bottom:1px solid var(--line); }
  .trust-strip p:last-child { border-bottom:0; }
  .feature-card-wide, .feedback-card { grid-column:auto; }
  .feature-card { min-height:360px; }
  .feedback-card { padding-right:28px; }
  .feedback-pills { position:static; width:auto; margin-top:50px; transform:none; }
  .privacy-mark { width:92%; }
  .site-footer { grid-template-columns:1fr; }
  .site-footer nav { justify-content:flex-start; }
  .copyright { grid-column:auto; }
  .footer-brand { align-items:flex-start; }
  .support-topic { grid-template-columns:48px 1fr; }
  .subpage-hero { min-height:440px; padding:72px 0; }
  .subpage-hero h1 { font-size:clamp(3.25rem, 15vw, 5rem); }
}

@media (max-width: 440px) {
  .hero-actions .button { width:100%; }
  .hero-visual { min-height:540px; }
  .phone { width:250px; border-radius:46px; }
  .phone-screen { border-radius:38px; }
  .palette-strip span { width:34px; }
  .floating-swatch { width:74px; font-size:.6rem; }
  .feature-card { border-radius:26px; }
  .palette-demo span { width:66px; }
  .price-card > div { align-items:flex-start; flex-direction:column; }
  .site-footer nav { align-items:flex-start; flex-direction:column; gap:12px; }
}

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

@media print {
  .site-header, .site-footer, .policy-summary { display:none; }
  body { color:#111; background:#fff; }
  .policy-layout { display:block; width:100%; padding:0; }
  .policy-content p, .policy-content li { color:#222; }
}
