:root {
  --lime: #c9f24a;
  --lime-deep: #a9d92e;
  --dark: #16231a;
  --dark-2: #0e1610;
  --cream: #fbfaf3;
  --paper: #ffffff;
  --muted: #5b6b5e;
  --line: #e7e4d6;
  --radius: 18px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

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

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 243, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--dark);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  opacity: 0.8;
}

.nav-links a:hover { opacity: 1; }

.nav-links a.pill-btn {
  color: var(--lime);
  opacity: 1;
}

.nav-links .ext {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--lime);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.pill-btn:hover { background: var(--dark-2); }

.pill-btn.ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--line);
}

/* Hero */
.hero {
  background: var(--dark);
  color: var(--cream);
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  position: relative;
}

.hero .wrap {
  padding: 84px 24px 96px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 242, 74, 0.14);
  color: var(--lime);
  border: 1px solid rgba(201, 242, 74, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 22px 0 18px;
  max-width: 16ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero p.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(251, 250, 243, 0.78);
  max-width: 46ch;
  margin: 0 0 34px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.hero-ctas .pill-btn.ghost {
  color: var(--cream);
  border-color: rgba(251, 250, 243, 0.25);
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(251, 250, 243, 0.55);
}

/* Email signup (hero + CTA band) */
.notify-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  width: 100%;
  max-width: 380px;
}

.notify-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  padding: 8px 0;
}

.notify-form input[type="email"]::placeholder {
  color: var(--muted);
}

.notify-form .pill-btn {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.notify-form .pill-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.notify-status {
  min-height: 1.1em;
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: rgba(251, 250, 243, 0.7);
}

.cta-band-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Hero demo illustration */
.hero-visual {
  width: 100%;
}

.hero-demo-caption {
  margin: 14px 4px 0;
  font-size: 0.85rem;
  color: rgba(251, 250, 243, 0.5);
  text-align: center;
}

/* Real device frame — used in the hero (video) and the proof section (stills) */
.phone-frame {
  background: #050805;
  border-radius: 26px;
  padding: 8px;
  border: 1px solid rgba(251, 250, 243, 0.14);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.phone-frame img,
.phone-frame video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 19px;
  background: #000;
}

.hero-phone {
  max-width: 280px;
  margin: 0 auto;
}

.hero-visual .demo {
  height: 520px;
  padding: 28px;
}

.hero-visual .demo-label {
  width: 320px;
  height: 300px;
  padding: 0;
  border: none;
  background: none;
}

.hero-visual .demo-jacket {
  width: 92%;
  height: 92%;
}

.hero-visual .demo-scanline {
  left: 52px;
  right: 52px;
  top: 78px;
  animation-name: scanlineHero;
}

@keyframes scanlineHero {
  0% { transform: translateY(0); opacity: 0; }
  4% { opacity: 1; }
  26% { transform: translateY(248px); opacity: 1; }
  30% { transform: translateY(248px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hero-visual .demo-result {
  left: 24px;
  right: 24px;
  bottom: 26px;
  padding: 14px 16px;
}

.hero-visual .demo-dot { width: 8px; height: 8px; border-radius: 4px; }
.hero-visual .demo-rname,
.hero-visual .demo-rweight { font-size: 1.05rem; }

/* ---- Shared demo-card chrome (mirrors the app's own onboarding illustrations) ---- */
.demo {
  position: relative;
  height: 170px;
  border-radius: var(--radius);
  background: var(--dark);
  border: 1px solid rgba(251, 250, 243, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.hero .demo { background: var(--dark-2); }

/* Scan demo */
.demo-scan .demo-label {
  width: 150px;
  height: 128px;
  border-radius: 8px;
  border: 1px solid rgba(251, 250, 243, 0.16);
  background: rgba(251, 250, 243, 0.05);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-jacket {
  width: 80%;
  height: 80%;
  overflow: visible;
}

.demo-jacket path {
  stroke: rgba(251, 250, 243, 0.6);
  stroke-width: 1.3;
  fill: none;
}

.demo-scanline {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 30px;
  height: 2px;
  border-radius: 1px;
  background: var(--lime);
  opacity: 0;
  animation: scanline 3.4s ease-in-out infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); opacity: 0; }
  4% { opacity: 1; }
  26% { transform: translateY(104px); opacity: 1; }
  30% { transform: translateY(104px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.demo-result {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(251, 250, 243, 0.14);
  border-radius: 10px;
  padding: 8px 10px;
  opacity: 0;
  transform: translateY(12px);
  animation: democard 3.4s ease-in-out infinite;
}

@keyframes democard {
  0%, 30% { opacity: 0; transform: translateY(12px); }
  40%, 72% { opacity: 1; transform: translateY(0); }
  82%, 100% { opacity: 0; transform: translateY(12px); }
}

.demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--lime);
  flex-shrink: 0;
}

.demo-rname {
  flex: 1;
  font-size: 0.82rem;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-rweight {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
  white-space: nowrap;
}

/* Inventory demo */
.demo-inventory { flex-direction: column; align-items: stretch; justify-content: center; gap: 12px; }

.demo-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lime);
}

.demo-tiles { display: flex; gap: 10px; }

.demo-tile {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px dashed rgba(251, 250, 243, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: scale(0.85);
}

.demo-thumb { width: 18px; height: 18px; border-radius: 5px; background: rgba(251, 250, 243, 0.3); }
.demo-w { font-size: 0.68rem; color: rgba(251, 250, 243, 0.6); }

.demo-tile.tile-1 { animation: tilein 4.2s ease-in-out infinite; }
.demo-tile.tile-2 { animation: tilein 4.2s ease-in-out infinite; animation-delay: 0.35s; }
.demo-tile.tile-3 { animation: tilein 4.2s ease-in-out infinite; animation-delay: 0.7s; }

@keyframes tilein {
  0% { opacity: 0; transform: scale(0.85); border-style: dashed; background: transparent; }
  6% { opacity: 1; transform: scale(1); border-style: solid; border-color: rgba(251, 250, 243, 0.16); background: rgba(251, 250, 243, 0.05); }
  80% { opacity: 1; transform: scale(1); border-style: solid; border-color: rgba(251, 250, 243, 0.16); background: rgba(251, 250, 243, 0.05); }
  92%, 100% { opacity: 0; transform: scale(0.85); border-style: dashed; background: transparent; }
}

/* Pack demo */
.demo-pack { justify-content: space-between; gap: 12px; }

.demo-col { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.demo-divider { width: 1px; align-self: stretch; background: rgba(251, 250, 243, 0.12); }

.demo-collabel { font-size: 0.66rem; letter-spacing: 0.1em; color: rgba(251, 250, 243, 0.45); }

.demo-chip {
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid rgba(251, 250, 243, 0.16);
  background: rgba(251, 250, 243, 0.05);
  font-size: 0.72rem;
  color: rgba(251, 250, 243, 0.55);
}

.demo-chip.chip-1 { animation: chipdim 3.6s ease-in-out infinite; }
.demo-chip.chip-2 { animation: chipdim 3.6s ease-in-out infinite; animation-delay: 0.6s; }

@keyframes chipdim {
  0%, 20% { opacity: 1; }
  35%, 100% { opacity: 0.3; }
}

.demo-packrow {
  height: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--cream);
  opacity: 0;
  transform: translateX(-6px);
}

.demo-packrow.row-1 { animation: rowin 3.6s ease-in-out infinite; }
.demo-packrow.row-2 { animation: rowin 3.6s ease-in-out infinite; animation-delay: 0.6s; }

@keyframes rowin {
  0%, 18% { opacity: 0; transform: translateX(-6px); }
  32%, 100% { opacity: 1; transform: translateX(0); }
}

/* Lighter demo */
.demo-lighter { flex-direction: column; align-items: stretch; justify-content: center; gap: 14px; }

.demo-total {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.02em;
}

.demo-total.total-a { animation: crossfadeA 3.6s ease-in-out infinite; }
.demo-total.total-b { animation: crossfadeB 3.6s ease-in-out infinite; }

@keyframes crossfadeA { 0%, 45% { opacity: 1; } 55%, 100% { opacity: 0; } }
@keyframes crossfadeB { 0%, 45% { opacity: 0; } 55%, 100% { opacity: 1; } }

.demo-bars { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

.demo-barrow {
  height: 8px;
  border-radius: 4px;
  background: rgba(251, 250, 243, 0.08);
  overflow: hidden;
}

.demo-bar { height: 8px; border-radius: 4px; }

.demo-bar.bar-static { background: rgba(251, 250, 243, 0.22); }

.demo-bar.bar-tent {
  background: var(--lime);
  animation: tentwidth 3.6s ease-in-out infinite;
}

@keyframes tentwidth {
  0%, 45% { width: 92%; }
  55%, 100% { width: 46%; }
}

@media (prefers-reduced-motion: reduce) {
  .demo * { animation: none !important; }
  .demo-scanline, .demo-tile { opacity: 0; }
  .demo-result, .demo-packrow { opacity: 1; transform: none; }
  .demo-chip { opacity: 1; }
  .demo-total.total-a { opacity: 1; }
  .demo-total.total-b { opacity: 0; }
  .demo-bar.bar-tent { width: 92%; }
}

/* How it works grid */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}

.how-step .demo { margin-bottom: 18px; }

.how-step .step-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--lime);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.how-step h3 { font-size: 1.05rem; margin: 0 0 8px; }

.how-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Sections */
section { padding: 88px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime-deep);
  margin-bottom: 10px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card .icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

/* Proof section — real device screens, not mockups */
.proof-feature {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.proof-feature-text h3 {
  font-size: 1.3rem;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.proof-feature-text p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
  max-width: 48ch;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.proof-card {
  text-align: center;
}

.proof-card .phone-frame {
  max-width: 240px;
  margin: 0 auto 22px;
}

.proof-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.proof-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 300px;
}

/* Old way / FeatherPack way comparison */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compare-card {
  border-radius: var(--radius);
  padding: 30px 28px;
}

.compare-card .compare-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.compare-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
}

.compare-card.old {
  background: var(--paper);
  border: 1px dashed var(--line);
}

.compare-card.old .compare-label { color: var(--muted); }
.compare-card.old p { color: var(--muted); }

.compare-card.new {
  background: var(--dark);
  color: var(--cream);
}

.compare-card.new .compare-label { color: var(--lime); }
.compare-card.new p { color: var(--cream); font-weight: 500; }

.compare-payoff {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.compare-payoff strong { color: var(--dark); }

/* Time comparison (#compare) — horizontal bar chart */
.compare-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.compare-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compare-bar-label {
  width: 96px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.compare-bar-track {
  flex: 1;
  min-width: 0;
  height: 46px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 4px;
}

.compare-bar {
  height: 100%;
  min-width: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
}

.compare-bar-manual {
  background: rgba(22, 35, 26, 0.1);
}

.compare-bar-feather {
  background: var(--lime);
}

.compare-bar-value {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  white-space: nowrap;
}

.compare-bar-value-outside {
  margin-left: 12px;
}

.compare-footnote {
  margin-top: 26px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
}

.compare-footnote a {
  color: var(--lime-deep);
  text-decoration: underline;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step .step-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--lime);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

/* CTA band */
.cta-band {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 8px;
}

.cta-band p {
  margin: 0;
  color: rgba(251, 250, 243, 0.7);
  max-width: 46ch;
}

.cta-band .pill-btn {
  background: var(--lime);
  color: var(--dark);
}

.cta-band .pill-btn:hover { background: var(--lime-deep); }

/* Blog callout */
.blog-callout {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  flex-wrap: wrap;
}

.blog-callout .leaf {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.blog-callout .txt { flex: 1; min-width: 220px; }

.blog-callout h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.blog-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 50px;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.foot-brand img { width: 26px; height: 26px; border-radius: 6px; }

.foot-links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}

.foot-links a { text-decoration: none; color: var(--muted); }
.foot-links a:hover { color: var(--dark); }

.foot-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Privacy page */
.legal {
  padding: 64px 0 90px;
}

.legal .wrap { max-width: 760px; }

.legal h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.legal .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 34px;
}

.legal h2 {
  font-size: 1.2rem;
  margin: 34px 0 12px;
}

.legal p, .legal li {
  color: var(--dark);
  line-height: 1.65;
  font-size: 1rem;
}

.legal ul { padding-left: 22px; }

.legal strong { font-weight: 600; }

.legal .interim-note {
  margin-top: 44px;
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal a { color: var(--lime-deep); text-decoration: underline; }

/* Responsive */
@media (max-width: 860px) {
  .features, .steps, .compare-grid, .how-grid, .proof-grid { grid-template-columns: 1fr; }
  .proof-card .phone-frame { max-width: 220px; }
  .proof-feature { grid-template-columns: 1fr; text-align: center; }
  .proof-feature .phone-frame { max-width: 220px; margin: 0 auto; }
  .proof-feature-text p { margin-inline: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 8px auto 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 16px; }
}

@media (max-width: 560px) {
  .hero .wrap { padding: 56px 20px 64px; }
  .hero-visual .demo { height: 300px; }
  .hero-visual .demo-label { width: 120px; height: 84px; }
  .nav-links .hide-mobile { display: none; }
  .nav-links { gap: 12px; }
  .nav .pill-btn { padding: 9px 14px; font-size: 0.85rem; }
  .brand { font-size: 0.95rem; }
  .brand img { width: 28px; height: 28px; }
  section { padding: 60px 0; }
  .cta-band { padding: 36px 26px; }
  .blog-callout { padding: 22px; }
}
