@charset "UTF-8";

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #2B2D35;
  --muted: #535862;
  --brand: #514669;
  --brand-dark: #3D3451;
  /* The three supplied colours define the website surfaces. */
  --lavender: #DDDBE9;
  --light-green: #D8E3DA;
  --beige: #E6DFD3;
  --soft: var(--lavender);
  --card-line: rgba(49, 45, 60, .12);
  --line: #D8D5D4;
  --canvas: #F2F0EC;
  --paper: #F9F8F5;
  --night: #272638;
  --green: #345B45;
  --lime: var(--light-green);
  --radius: 24px;
  --max: 1160px;
  --ease: cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.8 "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; }
button[hidden] { display: none; }
::selection { color: var(--night); background: var(--lavender); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 5px; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.055em; text-wrap: balance; }
h1 { font-size: clamp(2.75rem, 5.3vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 650; letter-spacing: -.035em; }
p { color: var(--muted); }
.container { width: min(var(--max), calc(100% - 72px)); margin-inline: auto; }
.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; background: var(--brand); color: #fff; padding: 12px 20px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

/* Navigation */
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(249,248,245,.95); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--card-line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 90px; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.65rem; font-weight: 800; letter-spacing: -.06em; line-height: 1.2; }
.brand img { border-radius: 12px; width: 40px; height: 40px; box-shadow: 0 3px 8px #1e285018; }
.brand-dot { color: var(--brand); }
.navigation { display: flex; align-items: center; gap: 7px; }
.nav-link { font-size: .85rem; font-weight: 600; color: var(--muted); padding: 8px 14px; border-radius: 30px; transition: background .2s, color .2s; }
.nav-link:hover { color: var(--ink); background: var(--beige); }
.nav-link[aria-current="page"] { color: var(--brand); background: var(--soft); }
.navigation > .button { margin-left: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 16px 24px; min-height: 54px; border-radius: 10px; border: 1px solid transparent; background: var(--brand); color: #fff; font-size: .9rem; font-weight: 650; line-height: 1.4; text-align: center; transition: background .25s, transform .25s var(--ease), box-shadow .25s; }
.button:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 20px #30296520; }
.button-small { padding: 11px 18px; min-height: 44px; font-size: .8rem; background: var(--night); }
.button-small:hover { background: #29374c; }
.button-outline { background: transparent; border-color: #d7d9df; color: var(--ink); }
.button-outline:hover { background: var(--beige); }
.button-lime { background: var(--light-green); color: var(--night); }
.button-lime:hover { background: var(--beige); }
.button .icon { width: 17px; height: 17px; transition: transform .2s; }
.button:hover .icon { transform: translateX(3px); }
.menu-toggle { border: 1px solid var(--line); background: transparent; padding: 11px; border-radius: 10px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--brand); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 20px; height: 1px; background: currentColor; }
.text-brand { color: var(--brand); font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; letter-spacing: -.055em; }

/* The launch and product preview share one continuous hero. */
.hero-shell { max-width: 1440px; margin: 18px auto 0; background: var(--lavender); color: var(--ink); border-radius: 28px; overflow: clip; }
.launch-announcement { padding-top: 29px; }
.launch-banner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; column-gap: 24px; row-gap: 8px; padding-bottom: 25px; border-bottom: 1px solid var(--card-line); }
.launch-kicker { color: var(--muted); font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.launch-kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px #345B4510; }
.launch-title { display: flex; flex-wrap: wrap; gap: .3em; color: var(--ink); font-size: clamp(1.5rem, 3.5vw, 2.75rem); font-weight: 600; line-height: 1.2; letter-spacing: -.05em; }
.launch-title mark { color: var(--green); background: var(--light-green); padding: .03em .28em .1em; border-radius: 8px; font-weight: 400; font-family: Georgia, serif; font-style: italic; }
.hero { display: grid; grid-template-columns: 1.08fr 1fr; gap: 80px; align-items: center; padding-block: 70px 82px; }
.hero-copy { min-width: 0; }
.hero .eyebrow { color: var(--brand); font-size: .75rem; margin-bottom: 26px; }
.hero h1 { color: var(--ink); font-size: clamp(2.8rem, 4.65vw, 4.25rem); line-height: 1.09; font-weight: 500; letter-spacing: -.06em; }
.hero h1 .text-brand { display: inline-block; color: var(--brand); font-size: 1.09em; line-height: 1.08; margin-top: 6px; }
.hero-description { margin-top: 28px; max-width: 455px; color: var(--muted); font-size: .98rem; line-height: 1.85; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero .button { background: var(--brand); color: #fff; }
.hero .button:hover { background: var(--brand-dark); }
.hero .button-outline { background: var(--beige); border-color: var(--card-line); color: var(--ink); }
.hero .button-outline:hover { background: var(--light-green); }
.hero-note { display: flex; align-items: flex-start; gap: 8px; font-size: .76rem; margin-top: 23px; color: var(--muted); }
.hero-note .icon { width: 16px; height: 16px; margin-top: 3px; color: var(--green); }
.preview-stage { position: relative; min-width: 0; padding: 20px 0 0; }
.preview-label { display: flex; align-items: center; justify-content: space-between; margin: 0 4px 13px; font-size: .75rem; font-weight: 600; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.preview-label::after { content: "APP PREVIEW"; padding: 4px 8px; border: 1px solid var(--card-line); background: var(--light-green); color: var(--green); border-radius: 5px; font-size: .75rem; letter-spacing: .09em; }
.dashboard { position: relative; background: #fff; color: var(--ink); border: 1px solid #e8eaf0; border-radius: 18px; padding: 26px; box-shadow: 0 25px 65px -26px #030b19a0; }
.preview-stage > .dashboard { transform: rotate(-1.5deg); transform-origin: center; border: 5px solid #F9F8F5; background-clip: padding-box; box-shadow: 0 24px 55px #3D34511C, 14px -12px 0 -4px var(--beige), 14px -12px 0 -3px #3D34511C; }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 23px; }
.dashboard-top p { font-size: .75rem; color: #737c8d; }
.dashboard-top h3 { margin-top: 4px; font-size: 1.3rem; font-weight: 750; }
.avatar { display: grid; place-items: center; width: 37px; height: 37px; background: var(--lavender); border: 1px solid var(--card-line); border-radius: 50%; color: var(--brand); font-size: .8rem; font-weight: 700; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat { padding: 16px; border: 1px solid var(--card-line); background: var(--light-green); border-radius: 11px; }
.stat:first-child { background: var(--lavender); color: var(--brand); border-color: var(--card-line); }
.stat-top { display: flex; justify-content: space-between; align-items: center; gap: 4px; font-size: .75rem; font-weight: 600; }
.stat-top .icon { width: 16px; height: 16px; opacity: .75; }
.stat strong { display: block; font-size: 2rem; letter-spacing: -.05em; line-height: 1.2; margin-top: 10px; font-weight: 700; }
.stat small { font-size: .75rem; display: block; margin-top: 3px; color: var(--muted); }
.stat:first-child small { color: var(--muted); }
.alert { display: flex; align-items: flex-start; gap: 10px; background: var(--beige); color: #69512D; padding: 12px; border: 1px solid var(--card-line); border-radius: 10px; margin-block: 16px 21px; font-size: .75rem; line-height: 1.5; }
.alert .icon { width: 17px; height: 17px; margin-top: 2px; }
.list-heading { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.list-heading strong { font-size: .8rem; font-weight: 750; }
.list-heading span { color: #727a89; font-size: .75rem; }
.product { display: flex; gap: 11px; align-items: center; padding-block: 14px; border-bottom: 1px solid #eef0f3; }
.product:last-child { border: 0; padding-bottom: 0; }
.product-icon { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 9px; background: var(--lavender); color: var(--brand); flex-shrink: 0; }
.product:nth-child(3n + 2) .product-icon { background: var(--light-green); color: var(--green); }
.product:nth-child(3n) .product-icon { background: var(--beige); color: #69512D; }
.product-icon .icon { width: 21px; height: 21px; }
.product-name { flex: 1; min-width: 0; }
.product-name strong { display: block; font-size: .76rem; font-weight: 700; line-height: 1.6; }
.product-name small { display: block; font-size: .75rem; color: #757e8d; }
.status { background: var(--light-green); color: var(--green); border-radius: 5px; padding: 3px 6px; font-size: .75rem; font-weight: 650; white-space: nowrap; }
.status-amber { background: var(--beige); color: #69512D; }
.preview-caption { text-align: center; margin-top: 20px; font-size: .75rem; color: var(--muted); }

/* Editorial sections and feature cards */
.category-strip { background: var(--light-green); border-bottom: 1px solid var(--card-line); margin-top: 22px; }
.categories { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 34px; }
.category-intro { color: var(--muted); font-size: .75rem; line-height: 1.6; padding-right: 25px; border-right: 1px solid var(--line); }
.category { display: flex; align-items: center; gap: 9px; color: var(--green); font-size: .86rem; font-weight: 600; }
.category .icon { width: 20px; height: 20px; color: var(--green); }
.section { padding-block: 100px; }
.section-soft { background: var(--canvas); border-block: 1px solid var(--line); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 43px; }
.section-head h2 { max-width: 590px; }
.section-head p { max-width: 330px; font-size: .94rem; }
.section-head .eyebrow { margin-bottom: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 13px; color: var(--brand); font-size: .84rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: transparent; transition: gap .2s, text-decoration-color .2s; }
.text-link:hover { gap: 18px; text-decoration-color: currentColor; }
.text-link .icon { width: 17px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-card { position: relative; display: flex; flex-direction: column; background: var(--lavender); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 33px; box-shadow: 0 8px 22px -18px #28334730; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.feature-card:hover { transform: translateY(-5px); border-color: #ceccd9; box-shadow: 0 18px 35px -20px #28334730; }
.feature-card h3 { font-size: 1.24rem; }
.icon-tile { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--lavender); color: var(--brand); margin-bottom: 32px; border: 1px solid var(--card-line); }
.icon-tile.green { background: var(--light-green); color: var(--green); border-color: var(--card-line); }
.icon-tile.amber { background: var(--beige); color: #69512D; border-color: var(--card-line); }
.feature-card p { margin-top: 15px; font-size: 1rem; line-height: 1.85; }
.feature-card .text-link { margin-top: auto; padding-top: 30px; }
.feature-card:nth-child(3n + 2) { background: var(--light-green); }
.feature-card:nth-child(3n) { background: var(--beige); }
.feature-card .icon-tile { background: rgba(255,255,255,.38); }
.step-small { padding: 30px; border: 1px solid var(--card-line); border-radius: 22px; background: var(--lavender); }
.step-small:nth-child(3n + 2) { background: var(--light-green); }
.step-small:nth-child(3n) { background: var(--beige); }
.step-number { display: block; font-size: .75rem; letter-spacing: .1em; color: var(--brand); font-weight: 700; padding-bottom: 24px; border-bottom: 1px solid var(--card-line); margin-bottom: 28px; }
.step-small h3 { font-size: 1.2rem; }
.step-small p { margin-top: 15px; font-size: 1rem; }
.cta-wrap { padding-bottom: 94px; }
.cta { position: relative; background: var(--light-green); border-radius: 25px; color: var(--ink); padding: 61px 60px; display: flex; align-items: center; justify-content: space-between; gap: 35px; border: 1px solid var(--card-line); }
.cta h2 { max-width: 640px; font-size: clamp(1.85rem, 3vw, 2.65rem); font-weight: 500; }
.cta p { color: var(--muted); margin-top: 16px; font-size: .93rem; }
.cta .button { flex-shrink: 0; background: var(--brand); color: #fff; }
.cta .button:hover { background: var(--brand-dark); }

/* Shared inner pages */
.page-hero { padding: 55px; margin-block: 32px 45px; max-width: none; border-radius: 26px; background: var(--lavender); border: 1px solid var(--card-line); }
.how-page .page-hero { background: var(--light-green); }
.about-page .page-hero { background: var(--beige); }
.page-hero h1 { font-size: clamp(2.9rem, 5.2vw, 4.5rem); }
.page-hero .text-brand { display: inline-block; margin-top: 7px; font-size: 1.06em; }
.page-hero p { font-size: 1.04rem; margin-top: 27px; max-width: 630px; }
.page-hero .eyebrow { margin-top: 0; font-size: .75rem; }
.feature-index { border-top: 1px solid var(--line); padding-block: 25px 10px; display: flex; flex-wrap: wrap; gap: 12px; }
.feature-index a { padding: 9px 17px; border: 1px solid var(--line); border-radius: 30px; font-size: .8rem; font-weight: 600; color: var(--ink); background: var(--lavender); transition: color .2s, border-color .2s; }
.feature-index a:nth-child(3n + 2) { background: var(--light-green); }
.feature-index a:nth-child(3n) { background: var(--beige); }
.feature-index a:hover { border-color: var(--brand); color: var(--brand); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; padding-block: 76px; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border: 0; }
.feature-copy h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); }
.feature-copy p { margin-top: 22px; font-size: 1rem; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; margin-block: 13px; color: var(--muted); font-size: .88rem; }
.check-list .icon { width: 17px; height: 17px; margin-top: 5px; color: var(--brand); }
.feature-copy p.cost-sub { font-size: .8rem; line-height: 1.7; padding-top: 16px; border-top: 1px solid var(--line); }
.mini-panel { background: var(--lavender); border: 1px solid var(--card-line); border-radius: 25px; padding: 37px; }
.mini-panel.green-panel { background: var(--light-green); border-color: var(--card-line); }
.mini-panel.amber-panel { background: var(--beige); border-color: var(--card-line); }
.mini-panel .dashboard { box-shadow: 0 12px 30px -16px #28334732; }
.mini-panel figcaption { color: #6c7482; font-size: .75rem; margin-top: 20px; text-align: center; }
.mini-title { display: flex; gap: 10px; align-items: center; font-size: .93rem; font-weight: 750; margin-bottom: 22px; }
.mini-title .icon { color: var(--brand); }
.document-row { display: flex; gap: 12px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); }
.document-row:last-child { padding-bottom: 0; border: 0; }
.document-row > .icon { color: var(--brand); }
.document-row strong { display: block; font-size: .8rem; font-weight: 650; }
.document-row small { display: block; color: var(--muted); font-size: .75rem; margin-top: 3px; }
.cost-total { font-size: 2.6rem; line-height: 1.2; font-weight: 750; letter-spacing: -.055em; margin-top: 6px; }
.cost-sub { font-size: .75rem; color: var(--muted); }
.cost-bar { display: flex; height: 11px; gap: 4px; border-radius: 4px; overflow: hidden; margin-block: 27px; }
.cost-bar span:nth-child(1) { background: var(--brand); width: 80%; }
.cost-bar span:nth-child(2) { background: var(--light-green); width: 12%; }
.cost-bar span:nth-child(3) { background: var(--beige); width: 8%; }
.cost-row { display: flex; justify-content: space-between; gap: 12px; font-size: .82rem; padding-block: 9px; }
.cost-row span { color: var(--muted); }
.compact-section { padding-top: 12px; }
.guide-step { display: grid; grid-template-columns: 75px 1fr 1fr; gap: 38px; padding-block: 43px; border-top: 1px solid var(--line); align-items: center; }
.guide-number { width: 64px; height: 64px; background: var(--lavender); color: var(--brand); border: 1px solid var(--card-line); border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; font-weight: 600; align-self: start; }
.guide-copy h2 { font-size: 1.75rem; }
.guide-copy p { margin-top: 17px; font-size: 1rem; }
.guide-tip { padding: 27px; background: var(--lavender); border: 1px solid var(--card-line); border-radius: 18px; }
.guide-step:nth-child(3n + 2) .guide-tip, .guide-step:nth-child(3n + 2) .guide-number { background: var(--light-green); }
.guide-step:nth-child(3n) .guide-tip, .guide-step:nth-child(3n) .guide-number { background: var(--beige); }
.guide-tip strong { display: block; font-size: .88rem; margin-bottom: 10px; }
.guide-tip p { font-size: .86rem; }
.info-band { display: flex; gap: 15px; padding: 29px 32px; border-radius: 18px; background: var(--soft); border: 1px solid var(--card-line); margin-top: 34px; }
.info-band > .icon { color: var(--brand); margin-top: 3px; }
.info-band h3 { font-size: 1.05rem; }
.info-band p { font-size: .88rem; margin-top: 8px; }
.story { display: grid; grid-template-columns: 1.1fr 1fr; gap: 90px; align-items: center; padding-bottom: 95px; }
.story-copy p { font-size: 1.03rem; line-height: 1.95; }
.story-copy p + p { margin-top: 25px; }
.brand-manifesto { background: var(--lavender); border-radius: 24px; padding: 45px; color: var(--ink); border: 1px solid var(--card-line); }
.brand-manifesto img { width: 62px; height: 62px; border-radius: 17px; margin-bottom: 42px; }
.brand-manifesto blockquote { font-size: 1.8rem; line-height: 1.6; margin: 0; font-weight: 500; letter-spacing: -.02em; }
.brand-manifesto p { color: var(--muted); font-size: .84rem; margin-top: 28px; }
.principle { padding: 30px; border-radius: 22px; border: 1px solid var(--card-line); background: var(--lavender); }
.principle:nth-child(3n + 2) { background: var(--light-green); }
.principle:nth-child(3n) { background: var(--beige); }
.principle .icon-tile { margin-bottom: 25px; }
.principle p { margin-top: 18px; font-size: .94rem; }
.language-card { margin-block: 85px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid var(--line); border-radius: 24px; padding: 40px; background: var(--light-green); }
.language-card p { margin-top: 10px; font-size: .94rem; }
.language-pair { display: flex; gap: 13px; flex-shrink: 0; }
.language-pair span { display: grid; place-items: center; width: 78px; height: 78px; border-radius: 17px; font-size: 1.8rem; font-family: Georgia, serif; font-weight: 400; background: var(--soft); color: var(--brand); transform: rotate(-5deg); border: 1px solid #ddd8ee; }
.language-pair span:last-child { background: var(--beige); color: #69512D; transform: rotate(5deg); border-color: #e1e6d4; }
.help-layout { display: grid; grid-template-columns: 1fr 330px; gap: 68px; align-items: start; padding-bottom: 100px; }
.faq-heading { font-size: 1.4rem; margin: 0 0 27px; }
.faq { border: 1px solid var(--card-line); background: var(--lavender); border-radius: 14px; margin-bottom: 11px; transition: border-color .2s; }
.faq:nth-of-type(3n + 2) { background: var(--light-green); }
.faq:nth-of-type(3n) { background: var(--beige); }
.faq[open] { border-color: var(--brand); }
.faq summary { cursor: pointer; padding: 23px 57px 23px 24px; font-size: .91rem; font-weight: 650; line-height: 1.6; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; display: grid; place-items: center; position: absolute; right: 19px; top: 23px; width: 24px; height: 24px; color: var(--brand); border-radius: 50%; background: rgba(255,255,255,.45); font-size: 1rem; font-weight: 400; }
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0 25px 25px; font-size: 1rem; }
.faq a { color: var(--brand); text-decoration: underline; }
.help-card { background: var(--lavender); border: 1px solid var(--card-line); color: var(--ink); border-radius: 22px; padding: 30px; }
.help-card .icon-tile { background: var(--beige); border-color: var(--card-line); color: var(--brand); }
.help-card p { margin-top: 15px; font-size: .9rem; color: var(--muted); }
.help-card .button { margin-top: 25px; width: 100%; background: var(--brand); color: #fff; }
.help-card .button:hover { background: var(--brand-dark); }
.help-card .email { display: block; margin-top: 17px; color: var(--brand); font-size: .81rem; overflow-wrap: anywhere; text-align: center; }
.help-aside-note { padding: 28px 5px; }
.help-aside-note strong { font-size: .85rem; }
.help-aside-note p { margin-top: 9px; font-size: .84rem; }

/* Footer */
.site-footer { background: var(--beige); border-top: 1px solid var(--card-line); padding-top: 53px; }
.footer-top { display: flex; justify-content: space-between; gap: 35px; padding-bottom: 45px; }
.footer-brand p { font-size: .85rem; margin-top: 19px; max-width: 350px; }
.footer-links { display: flex; gap: 26px; align-items: flex-start; padding-top: 11px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: .82rem; font-weight: 550; transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid var(--card-line); display: flex; justify-content: space-between; gap: 20px; padding-block: 23px; font-size: .75rem; color: var(--muted); }

@media (min-width: 801px) {
  .menu-toggle { display: none; }
  .hero-copy { animation: appear .7s var(--ease) both; }
  .preview-stage { animation: appear .8s .1s var(--ease) both; }
  .feature-row:nth-of-type(3) .feature-copy { order: 2; }
  .feature-row:nth-of-type(3) .mini-panel { order: 1; }
}
@keyframes appear { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1490px) {
  .hero-shell { margin-inline: 18px; }
  .hero-shell .container { width: min(var(--max), calc(100% - 80px)); }
}
@media (max-width: 1100px) {
  .container { width: calc(100% - 56px); }
  .navigation { gap: 2px; }
  .nav-link { padding-inline: 10px; }
  .hero { gap: 45px; }
  .hero-shell .container { width: calc(100% - 64px); }
  .dashboard { padding: 21px; }
  .preview-label::after { display: none; }
  .stat { padding: 13px; }
  .product { gap: 8px; }
  .product-name strong { font-size: .75rem; }
  .product-icon { width: 34px; }
  .category-intro { padding-right: 17px; }
  .categories { gap: 17px; }
  .category { font-size: .77rem; gap: 6px; }
  .feature-row { gap: 50px; }
  .feature-card { padding: 27px; }
  .story { gap: 50px; }
  .help-layout { gap: 40px; grid-template-columns: 1fr 290px; }
  .footer-links { gap: 20px; }
}
@media (max-width: 800px) {
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 76px; flex-wrap: wrap; gap: 0; }
  .brand { font-size: 1.5rem; }
  .brand img { width: 37px; height: 37px; }
  .navigation { width: 100%; padding-block: 10px 22px; flex-wrap: wrap; gap: 8px; }
  .navigation.menu-ready { display: none; }
  .navigation.menu-ready.is-open { display: flex; }
  .navigation > .button { margin-left: 0; }
  .nav-link { padding: 10px 15px; }
  .hero-shell { margin: 10px 10px 0; border-radius: 20px; }
  .hero-shell .container { width: calc(100% - 48px); }
  .launch-announcement { padding-top: 23px; }
  .launch-banner { align-items: flex-start; flex-direction: column; gap: 14px; padding-bottom: 22px; }
  .launch-title { font-size: clamp(2rem, 6vw, 2.9rem); }
  .launch-kicker { font-size: .75rem; }
  .hero { grid-template-columns: 1fr; gap: 42px; padding-block: 43px 42px; }
  .hero h1 { font-size: clamp(2.9rem, 8.5vw, 4.5rem); max-width: 660px; }
  .hero h1 .text-brand { font-size: 1.06em; }
  .hero h1 .text-brand br { display: none; }
  .hero .eyebrow { margin-bottom: 21px; }
  .hero-description { max-width: 540px; font-size: .96rem; }
  .preview-stage { max-width: 490px; width: 100%; justify-self: center; padding: 12px 8px 0; }
  .preview-stage > .dashboard { transform: rotate(-1deg); }
  .preview-label::after { display: block; }
  .dashboard { padding: 24px; }
  .product-name strong { font-size: .78rem; }
  .categories { flex-wrap: wrap; justify-content: center; gap: 20px 30px; padding-block: 30px; }
  .category-intro { border: 0; flex-basis: 100%; text-align: center; padding: 0; }
  .category-intro br { display: none; }
  .category { font-size: .8rem; }
  .section { padding-block: 65px; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 22px; margin-bottom: 32px; }
  .section-head p { max-width: 550px; }
  .grid-3 { grid-template-columns: 1fr; gap: 17px; }
  .feature-card { padding: 30px; }
  .feature-card .icon-tile { margin-bottom: 24px; }
  .feature-card .text-link { padding-top: 24px; }
  .step-small { padding: 28px; }
  .step-number { padding-bottom: 18px; margin-bottom: 22px; }
  .cta-wrap { padding-bottom: 65px; }
  .cta { flex-direction: column; align-items: flex-start; padding: 36px; }
  .page-hero { padding: 36px 28px; margin-block: 24px 35px; }
  .page-hero h1 { font-size: clamp(2.7rem, 7.5vw, 4rem); }
  .feature-row { grid-template-columns: 1fr; gap: 35px; padding-block: 45px; }
  .feature-row .mini-panel { max-width: 560px; width: 100%; }
  .guide-step { grid-template-columns: 58px 1fr; gap: 22px; padding-block: 34px; }
  .guide-number { width: 52px; height: 52px; }
  .guide-tip { grid-column: 2; }
  .story { grid-template-columns: 1fr; gap: 35px; padding-bottom: 60px; }
  .brand-manifesto { padding: 35px; }
  .principle { padding-bottom: 25px; }
  .language-card { margin-block: 60px; padding: 30px; }
  .help-layout { grid-template-columns: 1fr; gap: 35px; padding-bottom: 60px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 15px 25px; }
  .footer-bottom { flex-wrap: wrap; }
}
@media (max-width: 420px) {
  .hero-shell .container { width: calc(100% - 36px); }
  .hero h1 { font-size: clamp(2.45rem, 10.5vw, 3.1rem); }
  .hero .eyebrow { font-size: .75rem; letter-spacing: .1em; }
  .hero-description { font-size: .9rem; }
  .hero-note { font-size: .75rem; }
  .preview-stage { padding-inline: 0; }
  .dashboard { padding: 16px; }
  .preview-stage > .dashboard { transform: none; border-width: 3px; }
  .stat { padding: 11px; }
  .stat-top { font-size: .75rem; }
  .stat-top .icon { width: 14px; }
  .product { gap: 7px; }
  .product-icon { width: 29px; height: 33px; }
  .product-icon .icon { width: 18px; }
  .product-name strong { font-size: .75rem; }
  .product-name small { font-size: .75rem; }
  .status { font-size: .75rem; padding-inline: 4px; }
  .preview-label { font-size: .75rem; letter-spacing: .07em; }
  .preview-label::after { font-size: .75rem; }
  .mini-panel { padding: 21px; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .categories { gap: 18px; }
  .category { font-size: .75rem; }
  .cta { padding: 28px; }
  .guide-step { grid-template-columns: 1fr; }
  .guide-tip { grid-column: 1; }
  .language-card { flex-direction: column; align-items: flex-start; padding: 27px; }
  .info-band { padding: 22px; }
  .page-hero { padding: 32px 22px; }
  .page-hero h1 { font-size: clamp(2rem, 8.8vw, 2.55rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
