/* ═══════════════════════════════════════════════════════════════
   SeyChizz — Neo-Brutalism Design System
   Cheese yellow · ink black · warm paper · hard shadows
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Color */
  --cheese: #FFD23F;
  --cheese-deep: #FFC107;
  --orange: #FF8A3D;
  --coral: #FF5C7C;
  --mint: #4ECDC4;
  --sky: #5B9BFF;
  --ink: #111111;
  --paper: #FFFDF5;
  --paper-2: #FFF6D8;
  --white: #FFFFFF;
  /* soft section tints (light, theme-matched) */
  --teal-soft: #DDF4EF;
  --lemon-soft: #FFF3C7;
  --sky-soft: #E8F1FF;
  --blush-soft: #FFE7EC;
  --muted: #555149;

  /* Brutalist tokens */
  --border: 3px solid var(--ink);
  --border-bold: 4px solid var(--ink);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 5px 5px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-color: 6px 6px 0 var(--cheese);

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --wrap: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* subtle dotted paper texture */
  background-image: radial-gradient(var(--paper-2) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
}

img { max-width: 100%; height: auto; display: block; }

/* Stop iOS/Safari from auto-linking numbers/dates in blue */
a[x-apple-data-detectors],
a[href^="tel:"]:not(.btn) {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: inherit !important;
  font-size: inherit !important;
}
picture { display: block; }
a { color: inherit; text-decoration: none; }
button { color: inherit; -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.5px;
}

::selection { background: var(--cheese); color: var(--ink); }

/* ───────── Layout ───────── */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 24px; }

/* ───────── Tag / eyebrow ───────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--ink);
  color: var(--cheese);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.tag.tag-light { background: var(--cheese); color: var(--ink); border: var(--border); }

/* ───────── Headings scale ───────── */
.h-hero { font-size: clamp(44px, 7vw, 86px); letter-spacing: -3px; }
.h-1 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -2px; }
.h-2 { font-size: clamp(26px, 3.4vw, 40px); }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 620px; line-height: 1.5; }
.lead-center { margin-left: auto; margin-right: auto; }
.mark { background: var(--cheese); padding: 0 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.underline-rough { text-decoration: underline; text-decoration-thickness: 5px; text-decoration-color: var(--cheese); text-underline-offset: 4px; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border: var(--border-bold);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--cheese); }
.btn-ink { background: var(--ink); color: var(--cheese); }
.btn-coral { background: var(--coral); color: var(--ink); }
.btn-lg { font-size: 18px; padding: 18px 36px; }
.btn-ghost { background: transparent; box-shadow: none; border: none; text-decoration: underline; text-underline-offset: 4px; }
.btn-ghost:hover { transform: none; box-shadow: none; background: var(--paper-2); border-radius: 100px; text-decoration: none; }

/* ───────── Card ───────── */
.card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card-hover:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.card-yellow { background: var(--cheese); }
.card-paper { background: var(--paper-2); }
.card-ink { background: var(--ink); color: var(--paper); }
.card-ink h1,.card-ink h2,.card-ink h3 { color: var(--white); }

.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--cheese);
  margin-bottom: 20px;
  font-size: 26px;
}
.card h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -.6px; }
.card p { color: var(--muted); font-size: 16px; }
.card-ink p { color: #C9C4B5; }

/* ───────── Navbar ───────── */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: var(--border-bold);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.4px; }
.brand img { height: 32px; width: auto; }
.brand-name { text-decoration: underline; text-decoration-color: var(--cheese); text-decoration-thickness: 4px; text-underline-offset: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 9px 14px; border-radius: 100px; border: 2px solid transparent;
  transition: all .12s ease; white-space: nowrap;
}
.nav-links a:hover { border: 2px solid var(--ink); background: var(--cheese); }
.nav-links a.active { border: 2px solid var(--ink); background: var(--cheese); }
.drop a.active { background: var(--cheese); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: var(--cheese); border: var(--border); border-radius: 9px; width: 44px; height: 44px; cursor: pointer; font-size: 20px; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

/* dropdown for "Solutions" */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px; min-width: 230px;
  display: none; flex-direction: column; gap: 2px;
}
.has-drop:hover .drop { display: flex; }
.drop a { padding: 11px 14px; border-radius: 9px; font-size: 15px; }
.drop a:hover { background: var(--cheese); border-color: transparent; }

/* ───────── Hero ───────── */
.hero { padding: 70px 0 90px; position: relative; }
.hero .h-hero { margin-bottom: 24px; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-top: 16px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-visual { display: flex; justify-content: center; }
.hero-visual .phone-shot { max-width: 270px; }
.hero-dash { margin-top: 52px; padding: 0; overflow: hidden; box-shadow: var(--shadow-lg); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: 2; }
  .hero-visual .phone-shot { max-width: 240px; }
  .hero-dash { margin-top: 36px; }
}

/* sticker / badge that rotates */
.sticker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: var(--ink);
  border: var(--border); border-radius: 100px;
  padding: 8px 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

/* ───────── Benefit strip ───────── */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento .card h3 { font-size: 19px; }

/* ───────── Steps ───────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  width: 44px; height: 44px; border: var(--border); border-radius: 50%;
  background: var(--cheese); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; box-shadow: var(--shadow-sm);
}

/* ───────── Feature rows ───────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-row.flip .feature-visual { order: -1; }
.feature-row + .feature-row { margin-top: 100px; }
.feature-row h2 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 18px; }
.feature-row p { color: var(--muted); font-size: 18px; margin-bottom: 24px; }
.feature-visual {
  border: var(--border-bold); border-radius: var(--radius);
  background: var(--paper-2); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.feature-visual picture { width: 100%; height: 100%; }
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Phone frame — for portrait guest/share screenshots */
.phone-shot { max-width: 290px; margin: 0 auto; background: var(--ink); border: var(--border-bold); border-radius: 32px; padding: 9px; box-shadow: var(--shadow-lg); overflow: hidden; transition: transform .2s ease; transform: rotate(-1.5deg); }
.phone-shot:hover { transform: rotate(0deg); }
.phone-shot picture { display: block; }
.phone-shot img { width: 100%; display: block; border-radius: 24px; }

/* check list */
.checks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.checks li::before {
  content: '✓'; flex-shrink: 0;
  width: 26px; height: 26px; background: var(--cheese); border: 2px solid var(--ink);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; margin-top: 1px;
}

/* ───────── Stats band ───────── */
.band { background: var(--sky-soft); color: var(--ink); border-top: var(--border-bold); border-bottom: var(--border-bold); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 56px); color: var(--ink); letter-spacing: -2px; }
.stat .num::after { content: ''; display: block; width: 38px; height: 5px; background: var(--cheese); border: 2px solid var(--ink); margin: 8px auto 0; }
.stat .desc { color: var(--muted); font-size: 15px; }

/* ───────── Pricing ───────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; }
.price-card.featured { background: var(--cheese); transform: scale(1.03); }
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 6px; }
.price-amt { font-family: var(--font-display); font-weight: 700; font-size: 52px; letter-spacing: -3px; margin: 10px 0; }
.price-amt small { font-size: 17px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0; flex: 1; }
.price-list li { display: flex; gap: 10px; font-size: 15px; }
.price-list li::before { content: '✓'; font-weight: 800; }
.price-list li.off { color: #9a958a; }
.price-list li.off::before { content: '✕'; }

/* compare table */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; border: var(--border-bold); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-lg); }
.compare th, .compare td { padding: 18px 22px; text-align: left; border-bottom: 2px solid var(--ink); font-size: 16px; color: var(--ink); }
.compare thead th { background: var(--ink); color: var(--paper); font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.compare thead th.us { background: var(--cheese); color: var(--ink); }
.compare tbody td:first-child { font-family: var(--font-display); font-weight: 600; }
.compare tbody tr:nth-child(even) td { background: #FBF7EC; }
.compare tr:last-child td { border-bottom: none; }
.compare td.us, .compare thead th.us { border-left: 3px solid var(--ink); }
.compare td.us { background: var(--paper-2); font-weight: 700; }
.compare tbody tr:nth-child(even) td.us { background: #FFECA0; }
.compare .yes { color: #167a16; font-weight: 800; }
.compare .no { color: #c23; font-weight: 800; }
@media (max-width: 560px) { .compare th, .compare td { padding: 12px 13px; font-size: 14px; } }

/* ───────── FAQ accordion ───────── */
.faq-item { border: var(--border); border-radius: var(--radius); background: var(--white); margin-bottom: 16px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-display); font-weight: 700; font-size: 19px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q .ico { flex-shrink: 0; width: 30px; height: 30px; border: var(--border); border-radius: 8px; background: var(--cheese); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: transform .2s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--muted); font-size: 16px; }

/* ───────── Blog ───────── */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-thumb { aspect-ratio: 16/10; background: var(--cheese); border-bottom: var(--border); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-cat { font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.post-card h3 { font-size: 21px; letter-spacing: -.5px; }
.post-meta { margin-top: auto; font-size: 14px; color: var(--muted); font-family: var(--font-mono); }

/* article body */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { font-size: clamp(26px, 3.2vw, 36px); margin: 44px 0 16px; }
.article h3 { font-size: 24px; margin: 32px 0 12px; }
.article p { font-size: 18px; line-height: 1.75; margin-bottom: 20px; color: #2a2722; }
.article ul, .article ol { margin: 0 0 22px 22px; }
.article li { font-size: 18px; line-height: 1.7; margin-bottom: 10px; }
.article blockquote { border-left: 6px solid var(--cheese); background: var(--white); border: var(--border); border-radius: var(--radius); padding: 22px 26px; margin: 28px 0; font-family: var(--font-display); font-weight: 500; font-size: 21px; box-shadow: var(--shadow-sm); }
.article img { border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); margin: 28px 0; }
.article a { text-decoration: underline; text-decoration-color: var(--cheese); text-decoration-thickness: 3px; font-weight: 600; }

/* ───────── CTA band ───────── */
.cta-band { background: var(--cheese); border: var(--border-bold); border-radius: var(--radius); padding: 64px 40px; text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 16px; }
.cta-band p { font-size: 19px; color: #3a352b; margin-bottom: 30px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ───────── Footer ───────── */
.footer { background: var(--ink); color: var(--paper); border-top: var(--border-bold); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer h4 { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--cheese); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: #C9C4B5; font-size: 15px; }
.footer a:hover { color: var(--cheese); }
.footer .brand { color: var(--paper); margin-bottom: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 2px solid #333; color: #8c887d; font-size: 14px; flex-wrap: wrap; }

/* ───────── Misc ───────── */
.divider-marquee { background: var(--cheese); border-top: var(--border-bold); border-bottom: var(--border-bold); overflow: hidden; padding: 14px 0; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 40px; animation: marquee 22s linear infinite; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.5px; }
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: var(--border); border-radius: 100px; padding: 8px 16px; background: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 14px; box-shadow: var(--shadow-sm); }

.rule { height: 4px; background: var(--ink); border: none; margin: 0; }

/* QR card */
.qr-card {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
  max-width: 560px; margin: 0 auto; padding: 22px 26px;
  background: var(--white); border: var(--border-bold); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.qr-card img { width: 150px; height: 150px; border: var(--border); border-radius: var(--radius-sm); background: #fff; padding: 8px; flex-shrink: 0; }
.qr-text { display: flex; flex-direction: column; gap: 6px; max-width: 280px; }
.qr-text strong { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.5px; }
.qr-text span { color: var(--muted); font-size: 15px; line-height: 1.5; }
.qr-card.on-yellow { background: var(--cheese); }
@media (max-width: 480px) { .qr-card { flex-direction: column; text-align: center; } .qr-text { text-align: center; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════ Design variety / engagement ═══════════ */

/* Section color blocks — break the cream monotony */
.section.s-alt    { background: var(--paper-2); border-top: var(--border-bold); border-bottom: var(--border-bold); }
.section.s-cheese { background: var(--cheese);  border-top: var(--border-bold); border-bottom: var(--border-bold); }
.section.s-mint   { background: var(--mint);    border-top: var(--border-bold); border-bottom: var(--border-bold); }
.section.s-ink    { background: var(--ink); color: var(--paper); border-top: var(--border-bold); border-bottom: var(--border-bold); }
.section.s-ink h2, .section.s-ink h3 { color: #fff; }
.section.s-ink .lead { color: #C9C4B5; }
.section.s-ink .tag  { background: var(--cheese); color: var(--ink); }

/* Auto light-tint rotation — gentle scroll cue, applies to every page.
   Alternates cream ↔ light teal. Explicit s-* classes still win. */
.section:where(:nth-of-type(even)) { background: var(--teal-soft); }

/* Extra card colors */
.card-coral { background: var(--coral); }
.card-mint  { background: var(--mint); }

/* Playful tilt — straightens on hover */
.tilt-l { transform: rotate(-1.5deg); }
.tilt-r { transform: rotate(1.5deg); }
.card.tilt-l:hover, .card.tilt-r:hover { transform: rotate(0deg) translate(-3px,-3px); box-shadow: var(--shadow-lg); }

/* Icon character */
.card-icon { transform: rotate(-4deg); transition: transform .15s ease; }
.card:hover .card-icon { transform: rotate(3deg) scale(1.06); }

/* "How it works" steps — colored sequence on every page */
.steps .card:nth-child(2) { background: var(--cheese); }
.steps .card:nth-child(1) .step-num { background: var(--coral); }
.steps .card:nth-child(3) .step-num { background: var(--mint); }

/* Feature visuals — alternating colored hard-shadow + slight tilt */
.feature-visual { transition: transform .2s ease, box-shadow .2s ease; }
.feature-row:nth-of-type(odd)  .feature-visual { box-shadow: 14px 14px 0 var(--cheese); transform: rotate(-1.2deg); }
.feature-row:nth-of-type(even) .feature-visual { box-shadow: 14px 14px 0 var(--coral);  transform: rotate(1.2deg); }
.feature-row .feature-visual:hover { transform: rotate(0deg); box-shadow: 8px 8px 0 var(--ink); }

/* CTA band — floating brutalist shapes in the corners */
.cta-band::before { content:''; position:absolute; width:100px; height:100px; background:var(--coral); border:var(--border-bold); border-radius:22px; top:-34px; left:-30px; transform:rotate(14deg); pointer-events:none; z-index:0; }
.cta-band::after  { content:''; position:absolute; width:96px; height:96px; background:var(--mint); border:var(--border-bold); border-radius:50%; bottom:-32px; right:-28px; pointer-events:none; z-index:0; }
.cta-band > * { position: relative; z-index: 1; }

/* Sticker strip divider */
.sticker-strip { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.sticker-strip .pill:nth-child(odd)  { transform: rotate(-2.5deg); }
.sticker-strip .pill:nth-child(even) { transform: rotate(2.5deg); background: var(--cheese); }

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  .bento, .stats { grid-template-columns: repeat(2, 1fr); }
  .steps, .price-grid, .post-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.flip .feature-visual { order: 0; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right .btn-desktop { padding: 11px 18px; font-size: 14px; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: calc(100% + 14px); left: 0; right: 0;
    background: var(--paper); border: var(--border-bold); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 14px; gap: 6px; z-index: 95;
  }
  .nav-links.open li { width: 100%; list-style: none; }
  .nav-links.open a { display: block; width: 100%; border: var(--border); border-radius: var(--radius-sm); white-space: normal; }
  .nav-links.open .has-drop > a { pointer-events: none; opacity: .55; border: none; background: none; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; padding: 6px 6px 2px; }
  .nav-links.open .has-drop .drop { position: static; display: flex; flex-direction: column; box-shadow: none; border: none; padding: 4px 0 4px 6px; min-width: 0; gap: 6px; }
  .nav-links.open .drop a { display: block; width: 100%; }
}
@media (max-width: 720px) {
  .hero-visual, .hero-dash { display: none; }
  .section { padding: 64px 0; }
  .feature-row + .feature-row { margin-top: 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  body { font-size: 16px; }
}
@media (max-width: 460px) {
  .bento, .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
