@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

/* ============================================================
   MWOXXO — Brand Website
   Palette derived from the official product photography
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #FDFAF6;
  --bg-alt: #FAF3EA;
  --surface: #FFFFFF;
  --line: #EDE3D6;
  --line-soft: #F4EDE3;

  /* Ink */
  --ink: #33241A;
  --ink-soft: #6F5C4E;
  --ink-faint: #A3927F;

  /* Brand — sampled from product artwork */
  --brand: #C2551D;
  --brand-bright: #D46B29;
  --brand-deep: #8F3C13;
  --brand-tint: #FBEFE2;

  /* Logo spectrum */
  --p-red: #E74339;
  --p-yellow: #F5C847;
  --p-green: #3EA24C;
  --p-blue: #2D85DE;
  --p-pink: #FE6A9C;
  --p-purple: #8C43AE;

  --ok: #2E7A45;
  --ok-tint: #EAF4EC;
  --no: #B23B2E;
  --no-tint: #FBEDEA;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(51, 36, 26, .05), 0 2px 8px rgba(51, 36, 26, .04);
  --shadow-md: 0 4px 12px rgba(51, 36, 26, .06), 0 12px 32px rgba(51, 36, 26, .06);
  --shadow-lg: 0 8px 24px rgba(51, 36, 26, .08), 0 24px 60px rgba(51, 36, 26, .08);

  --font-display: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* height:auto preserves the intrinsic aspect ratio. Without it, the
   width/height attributes on <img> act as presentational hints and
   stretch the image to the attribute height. */
img { max-width: 100%; display: block; border-style: none; height: auto; }

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.5rem, 2.7vw, 2.15rem); }
h3 { font-size: 1.16rem; letter-spacing: -0.005em; }
h4 { font-size: 1rem; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; }
section.tight { padding: 60px 0; }
section.alt { background: var(--bg-alt); }
section.surface { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.lede { font-size: 1.06rem; color: var(--ink-soft); max-width: 62ch; }
.small { font-size: .87rem; color: var(--ink-faint); }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }

/* ---------- Pixel spectrum motif ---------- */
.pixels {
  display: inline-flex; gap: 5px; align-items: center;
  margin-bottom: 18px;
}
.pixels i {
  width: 9px; height: 9px; border-radius: 2.5px; display: block;
  background: var(--p-red);
}
.pixels i:nth-child(1) { background: var(--p-red); }
.pixels i:nth-child(2) { background: var(--p-yellow); }
.pixels i:nth-child(3) { background: var(--p-green); }
.pixels i:nth-child(4) { background: var(--p-blue); }
.pixels i:nth-child(5) { background: var(--p-pink); }
.pixels i:nth-child(6) { background: var(--p-purple); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand);
  margin: 0 0 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253, 250, 246, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  height: var(--header-h);
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 28px; width: auto; }
.logo:hover { opacity: .82; }

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a {
  font-size: .925rem; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; position: relative; white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brand); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -21px;
  height: 3px; border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--p-red), var(--p-yellow), var(--p-green), var(--p-blue), var(--p-pink), var(--p-purple));
}

.header-cta { flex-shrink: 0; }
/* The button inside .nav is the mobile-menu copy of the header CTA.
   It must stay hidden on desktop, where .header-cta already shows it. */
.nav > .btn { display: none; }
.nav-toggle {
  display: none; width: 42px; height: 42px; margin-left: auto;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1.3;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 2px 10px rgba(194, 85, 29, .26); }
.btn-primary:hover { background: var(--brand-deep); color: #fff; box-shadow: 0 6px 18px rgba(194, 85, 29, .3); }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #241a12; color: #fff; }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-faint); }

.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.32); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn-sm { padding: 10px 18px; font-size: .875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }

/* ---------- Hero ---------- */
.hero { padding: 78px 0 74px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 88% 6%, rgba(212, 107, 41, .13), transparent 68%),
    radial-gradient(560px 380px at 4% 96%, rgba(45, 133, 222, .07), transparent 70%);
}
.hero-inner {
  position: relative; max-width: var(--wrap); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center;
}
.hero h1 { max-width: 15ch; }
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 62%, rgba(245, 200, 71, .55) 62%);
  padding: 0 4px;
}
.hero .lede { font-size: 1.1rem; margin-bottom: 30px; }
.hero-media { position: relative; }
.hero-media img {
  border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%;
}
.hero-media .badge {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-weight: 800; font-size: .87rem; color: var(--ink);
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
}
.hero-note { margin-top: 18px; font-size: .87rem; color: var(--ink-faint); }

/* ---------- Trust bar ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 26px 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.trust-item { display: flex; align-items: flex-start; gap: 13px; }
.trust-item svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--brand); margin-top: 2px; }
.trust-item b {
  display: block; font-family: var(--font-display); font-size: .95rem; font-weight: 800; line-height: 1.3;
}
.trust-item span { font-size: .84rem; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Section head ---------- */
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: s; }
.step { position: relative; }
.step-n {
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff;
  box-shadow: var(--shadow-sm);
}
.step:nth-child(1) .step-n { background: var(--p-red); }
.step:nth-child(2) .step-n { background: var(--p-green); }
.step:nth-child(3) .step-n { background: var(--p-blue); }
.step:nth-child(4) .step-n { background: var(--p-purple); }
.step h3 { margin-bottom: 7px; }
.step p { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #E2D5C4; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .93rem; color: var(--ink-soft); }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-tint); color: var(--brand);
}
.card-icon svg { width: 23px; height: 23px; }
.card:nth-child(2) .card-icon { background: #EAF4EC; color: var(--p-green); }
.card:nth-child(3) .card-icon { background: #E9F2FD; color: var(--p-blue); }
.card:nth-child(4) .card-icon { background: #F6EBFA; color: var(--p-purple); }

/* ---------- Split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: 20px; box-shadow: var(--shadow-md); }
.split-body h2 { margin-bottom: 16px; }
.split-body .lede { margin-bottom: 26px; }

/* ---------- Checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0 0 24px; }
.checks li {
  position: relative; padding-left: 32px; margin-bottom: 11px;
  font-size: .95rem; color: var(--ink-soft);
}
.checks li b { color: var(--ink); font-weight: 600; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ok-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7A45' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checks.cross li::before {
  background: var(--no-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B23B2E' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* ---------- Callout ---------- */
.callout {
  background: var(--brand-tint); border: 1px solid #F2DEC6;
  border-left: 4px solid var(--brand-bright);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; font-size: .94rem; color: var(--brand-deep);
}
.callout b { color: var(--brand-deep); }
.callout.warn {
  background: #FDF6E8; border-color: #F3E2BC; border-left-color: #D9A019; color: #7A5A0B;
}
.callout.warn b { color: #7A5A0B; }
.callout.plain {
  background: var(--bg-alt); border-color: var(--line); border-left-color: var(--ink-faint); color: var(--ink-soft);
}

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.table-scroll-hint { margin: 9px 2px 0; }

table.data {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; font-size: .925rem;
}
table.data th {
  text-align: left; padding: 15px 18px;
  background: var(--bg-alt); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  letter-spacing: .04em; text-transform: uppercase;
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
table.data td { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.data tr:last-child td { border-bottom: none; }
table.data tbody tr:hover td { background: #FDFAF6; }
table.data td:first-child { color: var(--ink-soft); }
table.data .nowrap { white-space: nowrap; }

table.spec { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .94rem; }
table.spec td { padding: 13px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.spec td:first-child { color: var(--ink-soft); width: 40%; padding-right: 20px; }
table.spec tr:last-child td { border-bottom: none; }

.yes { color: var(--ok); font-weight: 600; }
.no { color: var(--no); font-weight: 600; }
table.compare td:first-child { font-weight: 500; color: var(--ink); }
table.compare th:nth-child(2), table.compare td:nth-child(2) { background: #F7FBF8; }
table.compare th:nth-child(3), table.compare td:nth-child(3) { background: #FDF7F6; }
table.compare th:nth-child(2) { color: var(--ok); }
table.compare th:nth-child(3) { color: var(--no); }

/* ---------- Size cards ---------- */
.size-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease;
}
.size-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.size-card.best { border-color: var(--brand-bright); border-width: 2px; padding: 25px 23px; position: relative; }
.size-card .tag {
  position: absolute; top: -12px; left: 24px;
  background: var(--brand-bright); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; box-shadow: 0 2px 8px rgba(212,107,41,.3);
}
.size-card .model {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 2px;
}
.size-card .dim { font-size: .87rem; color: var(--ink-faint); margin-bottom: 18px; }
.size-card dl { margin: 0 0 20px; display: grid; grid-template-columns: auto 1fr; gap: 7px 14px; font-size: .88rem; }
.size-card dt { color: var(--ink-faint); }
.size-card dd { margin: 0; text-align: right; color: var(--ink); font-weight: 500; }
.size-card .use { font-size: .88rem; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.size-card .use b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 3px; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- App showcase ---------- */
.app-band {
  background: var(--ink); color: #FDFAF6; position: relative; overflow: hidden;
}
.app-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 420px at 84% 14%, rgba(212, 107, 41, .28), transparent 66%),
              radial-gradient(520px 380px at 6% 92%, rgba(45, 133, 222, .18), transparent 68%);
}
.app-band .wrap { position: relative; }
.app-band h2, .app-band h3 { color: #fff; }
.app-band .lede { color: rgba(253, 250, 246, .76); }
.app-band .eyebrow { color: var(--p-yellow); }
.app-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.app-phone { display: flex; justify-content: center; }
.app-phone img {
  width: 268px; border-radius: 26px; box-shadow: 0 18px 48px rgba(0, 0, 0, .4);
  border: 5px solid #1b120c;
}
.app-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; margin-top: 30px; }
.app-feat { display: flex; gap: 13px; align-items: flex-start; }
.app-feat .dot {
  flex-shrink: 0; width: 9px; height: 9px; border-radius: 3px; margin-top: 8px;
}
.app-feat:nth-child(6n+1) .dot { background: var(--p-red); }
.app-feat:nth-child(6n+2) .dot { background: var(--p-yellow); }
.app-feat:nth-child(6n+3) .dot { background: var(--p-green); }
.app-feat:nth-child(6n+4) .dot { background: var(--p-blue); }
.app-feat:nth-child(6n+5) .dot { background: var(--p-pink); }
.app-feat:nth-child(6n+6) .dot { background: var(--p-purple); }
.app-feat b { display: block; color: #fff; font-size: .95rem; font-family: var(--font-display); font-weight: 800; margin-bottom: 2px; }
.app-feat span { font-size: .86rem; color: rgba(253, 250, 246, .68); line-height: 1.5; }

/* ---------- Art strip ---------- */
.art-strip {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 30px; box-shadow: var(--shadow-sm);
}
.art-strip img { width: 240px; height: auto; border-radius: 12px; flex: 0 0 auto; }
.art-strip p { margin: 0; font-size: .95rem; color: var(--ink-soft); flex: 1 1 260px; min-width: 0; }
.art-strip .btn { flex: 0 0 auto; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 40px 18px 0;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 26px;
  width: 11px; height: 11px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg); transition: transform .2s ease; transform-origin: 65% 65%;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq details[open] summary { color: var(--brand); }
.faq .answer { padding: 0 40px 20px 0; color: var(--ink-soft); font-size: .94rem; }
.faq .answer p { margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #3E2A1B 0%, #563518 55%, #6E4218 100%);
  color: #fff; border-radius: 24px; padding: 60px 56px; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -70px; top: -70px; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(212,107,41,.5), transparent 68%);
}
.cta-band h2 { color: #fff; margin-bottom: 14px; max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.76); max-width: 56ch; margin-bottom: 30px; }

/* ---------- Selector ---------- */
.select-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-bottom: 36px; }
.select-group label {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 9px;
}
select, input[type="text"], input[type="email"], textarea {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--ink);
  padding: 13px 15px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
select:focus, input:focus, textarea:focus {
  outline: none; border-color: var(--brand-bright);
  box-shadow: 0 0 0 3px rgba(212, 107, 41, .14);
}
textarea { min-height: 130px; resize: vertical; }

/* Submission status message under the support form */
.form-status {
  margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .94rem; line-height: 1.6; border: 1px solid transparent;
}
.form-status[data-state="busy"] { background: var(--surface); border-color: var(--line); color: var(--ink-soft); }
.form-status[data-state="ok"]   { background: var(--ok-tint); border-color: #C6E2CF; color: var(--ok); font-weight: 600; }
.form-status[data-state="err"]  { background: var(--no-tint); border-color: #EBC9C2; color: var(--no); font-weight: 600; }

/* Spam honeypot — off-screen, never reachable by keyboard */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }


/* ---------- Page header ---------- */
.page-head { padding: 62px 0 46px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.page-head h1 { max-width: 22ch; }
.page-head .lede { margin-bottom: 0; }
.breadcrumb { font-size: .82rem; color: var(--ink-faint); margin-bottom: 16px; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--brand); }

/* ---------- Order steps ---------- */
ol.numbered { counter-reset: n; list-style: none; padding: 0; margin: 0; }
ol.numbered > li {
  counter-increment: n; position: relative; padding: 0 0 26px 52px;
  border-left: 2px solid var(--line); margin-left: 17px;
}
ol.numbered > li:last-child { border-left-color: transparent; padding-bottom: 0; }
ol.numbered > li::before {
  content: counter(n); position: absolute; left: -18px; top: -3px;
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(194, 85, 29, .28);
}
ol.numbered > li h3 { margin: 4px 0 7px; }
ol.numbered > li p { font-size: .94rem; color: var(--ink-soft); }

ul.plain { list-style: none; padding: 0; margin: 0; }
ul.plain li { padding-left: 20px; position: relative; margin-bottom: 9px; font-size: .94rem; color: var(--ink-soft); }
ul.plain li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 6px; height: 6px; border-radius: 2px; background: var(--brand-bright);
}

/* ---------- Support cards ---------- */
.support-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.support-card .card-icon { margin-bottom: 16px; }
.support-card h3 { font-size: 1.06rem; }
.support-card p { font-size: .92rem; color: var(--ink-soft); }
.support-card .link { font-weight: 600; font-size: .92rem; }

/* ---------- Warranty badges ---------- */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.badge-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; text-align: center; box-shadow: var(--shadow-sm);
}
.badge-item svg { width: 26px; height: 26px; color: var(--brand); margin: 0 auto 12px; }
.badge-item b { display: block; font-family: var(--font-display); font-weight: 800; font-size: .98rem; margin-bottom: 4px; }
.badge-item span { font-size: .84rem; color: var(--ink-soft); line-height: 1.45; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 62px 0 32px; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer-brand img { height: 26px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .89rem; color: var(--ink-soft); max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px;
}
.footer-col a { display: block; font-size: .9rem; color: var(--ink-soft); margin-bottom: 11px; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .83rem; color: var(--ink-faint);
}
.footer-bottom .pixels { margin: 0; }
.footer-bottom .pixels i { width: 7px; height: 7px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .size-card:hover { transform: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  :root { --header-h: 66px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { max-width: none; }
  .hero-media { max-width: 460px; }
  .split, .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 26px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .badges { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 20px 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .app-grid { gap: 44px; }
  .app-phone { order: -1; }
}

@media (max-width: 720px) {
  section { padding: 58px 0; }
  .wrap, .wrap-narrow, .hero-inner, .trust-inner, .header-inner { padding-left: 18px; padding-right: 18px; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 8px 18px 18px; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 2px; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .header-cta { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 14px; }

  .grid-2, .grid-3, .grid-4, .steps, .badges, .app-feats, .select-row { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; gap: 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 52px 0 48px; }
  .hero-media .badge { left: 12px; bottom: 14px; font-size: .8rem; padding: 8px 15px; }
  .cta-band { padding: 40px 26px; border-radius: 18px; }
  .art-strip { padding: 20px; gap: 18px; }
  .art-strip img { width: 100%; }
  .steps { gap: 26px; }
  .step { display: grid; grid-template-columns: 40px 1fr; gap: 0 16px; }
  .step-n { grid-row: span 2; margin-bottom: 0; }
  .step h3 { margin-top: 6px; }
  .footer-bottom { flex-direction: column; }
  .page-head { padding: 40px 0 32px; }
  .app-phone img { width: 232px; }
  table.data th, table.data td { padding: 12px 14px; }
}

@media (max-width: 420px) {
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
}
