:root {
  --ink: #17151b;
  --muted: #6f6872;
  --line: rgba(23, 21, 27, .13);
  --paper: #fbfaf8;
  --soft: #f0edf0;
  --blue: #b8cdfa;
  --lilac: #d7baf2;
  --pink: #f4bfd0;
  --violet: #7f69cf;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
body, button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-header { position: fixed; z-index: 10; inset: 0 0 auto; padding: 20px 0; background: rgba(251,250,248,.78); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(23,21,27,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 32px; height: 32px; }
.brand span { font-size: 18px; }
.nav-links { display: flex; gap: 26px; color: #625b65; font-size: 13px; font-weight: 650; }
.nav-links a:hover { color: var(--ink); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ink); border-radius: 999px; padding: 12px 18px; font-size: 13px; font-weight: 750; transition: transform .2s ease, background .2s ease, color .2s ease; }
.nav-cta:hover, .button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: rgba(255,255,255,.56); }
.button-ghost { border-color: var(--line); color: #5d5661; }

.hero { padding: 160px 0 76px; overflow: hidden; }
.hero-copy { max-width: 770px; margin: 0 auto 48px; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #716978; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: "✦"; color: var(--violet); font-size: 17px; }
h1, h2, h3, p { margin: 0; }
h1 { margin-top: 20px; font-size: clamp(48px, 7.5vw, 92px); line-height: .94; letter-spacing: -.075em; font-weight: 850; }
.hero-copy p { max-width: 520px; margin: 24px auto 28px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.hero-note { margin-top: 16px; color: #9a929d; font-size: 12px; }
.gallery-window { position: relative; width: 100vw; left: 50%; transform: translateX(-50%); overflow: hidden; }
.gallery-window::before, .gallery-window::after { position: absolute; z-index: 2; top: 0; bottom: 0; width: 14vw; content: ""; pointer-events: none; }
.gallery-window::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.gallery-window::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.gallery-row { display: flex; width: max-content; gap: 14px; margin: 14px 0; }
.gallery-row img { width: clamp(150px, 15vw, 220px); aspect-ratio: 3 / 4; object-fit: cover; border-radius: 18px; box-shadow: 0 12px 32px rgba(30,18,32,.14); }
.gallery-row:first-child { animation: drift-left 48s linear infinite; }
.gallery-row:last-child { animation: drift-right 54s linear infinite; }
@keyframes drift-left { from { transform: translateX(-12%); } to { transform: translateX(-52%); } }
@keyframes drift-right { from { transform: translateX(-48%); } to { transform: translateX(-8%); } }

.section { padding: 110px 0; }
.section-soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-kicker { margin-bottom: 12px; color: #897d8d; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h2 { max-width: 700px; font-size: clamp(34px, 5vw, 60px); line-height: .98; letter-spacing: -.065em; }
.section-head p { max-width: 330px; color: var(--muted); line-height: 1.55; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { min-height: 330px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.48); }
.step-number { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 70px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800; }
.step h3 { margin-bottom: 12px; font-size: 23px; letter-spacing: -.045em; }
.step p { color: var(--muted); line-height: 1.6; }
.step-art { position: relative; height: 70px; margin-bottom: 28px; overflow: hidden; border-radius: 15px; background: linear-gradient(120deg, var(--blue), var(--lilac), var(--pink)); }
.step-art::after { position: absolute; content: ""; width: 160px; height: 160px; right: 10%; top: -78px; border-radius: 50%; background: rgba(255,255,255,.46); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.category { min-height: 440px; padding: 20px; display: flex; flex-direction: column; justify-content: end; border-radius: 24px; overflow: hidden; background: #ded8d3; position: relative; }
.category::before { position: absolute; inset: 0; content: ""; background: var(--art); background-size: cover; background-position: center; transition: transform .5s ease; }
.category::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(18,15,21,.74), transparent 62%); }
.category:hover::before { transform: scale(1.05); }
.category-copy { position: relative; z-index: 1; color: #fff; }
.category-copy h3 { margin-bottom: 7px; font-size: 22px; letter-spacing: -.04em; }
.category-copy p { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.45; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.value { padding: 28px 24px 18px 0; border-bottom: 1px solid var(--line); }
.value:nth-child(3n+2), .value:nth-child(3n+3) { padding-left: 24px; border-left: 1px solid var(--line); }
.value h3 { margin-bottom: 8px; font-size: 19px; letter-spacing: -.04em; }
.value p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.value-icon { width: 32px; height: 32px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 10px; background: linear-gradient(135deg, var(--blue), var(--pink)); color: #352b48; font-weight: 800; }

.download-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; padding: clamp(28px, 6vw, 72px); border-radius: 32px; overflow: hidden; background: #17151b; color: #fff; }
.download-panel p { max-width: 470px; margin: 18px 0 28px; color: #c2bbc4; line-height: 1.6; }
.download-panel .button-light { border-color: #fff; background: #fff; color: var(--ink); }
.device-art { min-height: 360px; position: relative; display: grid; place-items: center; }
.device-art::before, .device-art::after { position: absolute; content: ""; border-radius: 32px; transform: rotate(-8deg); }
.device-art::before { width: 210px; height: 350px; background: linear-gradient(145deg, #c7d8ff, #a578ca 46%, #f8bacd); box-shadow: 0 28px 80px rgba(194,135,231,.35); }
.device-art::after { width: 176px; height: 306px; background: radial-gradient(circle at 50% 34%, rgba(255,255,255,.9) 0 10%, transparent 11%), linear-gradient(160deg, #19172a, #3b3159 50%, #16141d); border: 6px solid #0e0d11; }
.download-note { margin-top: 14px; color: #9c93a0; font-size: 12px; }

.quote { padding: 130px 0; text-align: center; }
.quote blockquote { max-width: 800px; margin: 0 auto; font-size: clamp(34px, 5vw, 62px); line-height: 1; letter-spacing: -.065em; font-weight: 820; }
.quote cite { display: block; margin-top: 28px; color: var(--muted); font-size: 13px; font-style: normal; }

.page-hero { padding: 175px 0 80px; background: linear-gradient(145deg, #f7f3fc, #faf9f4 55%, #f8e8ed); }
.page-hero h1 { max-width: 720px; font-size: clamp(52px, 8vw, 88px); }
.page-hero p { max-width: 560px; margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.prose { max-width: 780px; padding: 84px 0 120px; }
.prose h2 { margin: 42px 0 14px; font-size: 28px; }
.prose h3 { margin: 28px 0 10px; font-size: 19px; }
.prose p, .prose li { color: #625a64; font-size: 15px; line-height: 1.8; }
.prose ul { padding-left: 22px; }
.support-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding: 90px 0 120px; }
.support-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.support-card label { display: block; margin-bottom: 7px; color: #655d67; font-size: 12px; font-weight: 750; }
.support-card input, .support-card textarea { width: 100%; margin-bottom: 19px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: #fbfaf8; color: var(--ink); }
.support-card textarea { min-height: 150px; resize: vertical; }
.support-card input:focus, .support-card textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(127,105,207,.13); }
.support-status { margin-top: 14px; color: #746b76; font-size: 12px; line-height: 1.5; }

.site-footer { padding: 38px 0 28px; border-top: 1px solid var(--line); }
.footer-top { display: flex; justify-content: space-between; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: #746c76; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 64px; color: #9c949d; font-size: 11px; }

@media (max-width: 820px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .site-header { padding: 14px 0; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 14px; }
  .hero { padding-top: 125px; }
  .hero-copy p { font-size: 16px; }
  .section { padding: 78px 0; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-head p { margin-top: 18px; }
  .steps, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .step { min-height: 290px; }
  .step-number { margin-bottom: 46px; }
  .category { min-height: 330px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(3n+2), .value:nth-child(3n+3) { padding-left: 0; border-left: 0; }
  .value:nth-child(2n) { padding-left: 18px; border-left: 1px solid var(--line); }
  .download-panel, .support-layout { grid-template-columns: 1fr; gap: 20px; }
  .device-art { min-height: 270px; }
  .support-layout { padding: 60px 0 90px; }
  .footer-top, .footer-bottom { display: block; }
  .footer-links { margin-top: 20px; }
  .footer-bottom p + p { margin-top: 10px; }
}

@media (max-width: 520px) {
  h1 { font-size: 54px; }
  .steps, .category-grid, .value-grid { grid-template-columns: 1fr; }
  .category { min-height: 390px; }
  .value, .value:nth-child(2n) { padding: 24px 0; border-left: 0; }
  .gallery-row img { width: 145px; }
  .page-hero { padding-top: 135px; }
}

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