:root {
  --yellow: #fcc402;
  --yellow-dark: #fcc402;
  --yellow-soft: #fff8d8;
  --ink: #151820;
  --navy: #111a2d;
  --body: #606878;
  --muted: #8c93a0;
  --line: #e3e6eb;
  --surface: #f7f8fa;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[hidden] { display: none !important; }
body.modal-open { overflow: hidden; }

button, summary { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
/* `height: auto` is mandatory alongside the width/height HTML attributes: those
   attributes are presentational hints, so without it an image whose height is
   only set in the markup renders at its full intrinsic height (a 220px-wide
   mascot came out 1254px tall). Rules that set an explicit height themselves
   (logo, framed screenshots with object-fit) are more specific and still win. */
img { display: block; max-width: 100%; height: auto; }
section[id] { scroll-margin-top: 84px; }

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(227, 230, 235, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1220px, calc(100% - 40px));
  min-height: 68px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.brand > img {
  width: 34px;
  height: 37px;
  object-fit: contain;
}

.brand > span > span { color: var(--yellow-dark); }

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  color: #465064;
  font-size: 14px;
  font-weight: 520;
}

.nav-links a:hover,
.nav-links a:focus-visible { color: var(--yellow-dark); }

.install-button {
  min-height: 46px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 720;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(252, 196, 2, 0.24);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.install-button:hover {
  transform: translateY(-2px);
  background: #ffd22d;
  box-shadow: 0 12px 28px rgba(252, 196, 2, 0.32);
}

.install-button:focus-visible,
.menu-button:focus-visible,
.price-card button:focus-visible,
.modal-close:focus-visible,
.modal-card > button:last-child:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(252, 196, 2, 0.5);
  outline-offset: 3px;
}

.nav-install {
  min-height: 39px;
  padding-inline: 18px;
  font-size: 13px;
  box-shadow: none;
}

.mobile-nav-install { display: none; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.menu-button span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: var(--ink);
}

.hero {
  padding: 72px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(252, 196, 2, 0.13), transparent 25%),
    radial-gradient(circle at 18% 8%, rgba(252, 196, 2, 0.07), transparent 21%),
    #f8f9fb;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  text-align: center;
}

.hero-kicker,
.section-title > p,
.feature-copy-card > p,
.final-cta p {
  margin: 0;
  color: var(--yellow-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 15px auto 18px;
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.048em;
}

.hero h1 span { color: var(--yellow-dark); }

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
}

.hero-button {
  min-height: 54px;
  margin-top: 29px;
  padding-inline: 29px;
  font-size: 16px;
}

.chrome-glyph {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: conic-gradient(#e34a3b 0 33%, #e6c942 0 66%, #48a566 0);
}

.chrome-glyph::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 6px;
  left: 6px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: #4285f4;
}

.trial-notes {
  margin: 18px auto 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.trial-notes i {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow-dark);
}

.hero-product {
  position: relative;
  width: min(1060px, 100%);
  height: 520px;
  margin: 0 auto -1px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(21, 24, 32, 0.07), 0 24px 70px rgba(20, 29, 48, 0.15);
}

.hero-product-bar {
  height: 43px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  background: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.hero-product-bar strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0;
}

.hero-product > img:first-of-type {
  width: 100%;
  height: calc(100% - 43px);
  object-fit: cover;
  object-position: top center;
}

/* wasp2.png carries a real alpha channel, so no mix-blend-mode is needed to
   fake background removal — blending would wash out the white wings and darken
   the whole mascot against the page. */
.hero-mascot {
  position: absolute;
  z-index: 3;
  width: 220px;
  right: -30px;
  bottom: -26px;
  filter: drop-shadow(0 15px 16px rgba(21, 24, 32, 0.15));
}

.features { padding: 105px 0 120px; background: var(--surface); }

.section-title.centered {
  max-width: 750px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-title h2 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-title > span {
  display: block;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.feature-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature-row.reverse .feature-copy-card { order: 2; }
.feature-row.reverse .feature-visual-card { order: 1; }

.feature-copy-card,
.feature-visual-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(20, 29, 48, 0.05);
}

.feature-copy-card {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow-soft);
  font-size: 11px;
  font-weight: 850;
}

.feature-copy-card h3 {
  margin: 9px 0 16px;
  font-size: 30px;
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.feature-copy-card > div {
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.feature-visual-card {
  padding: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffe87e, var(--yellow) 45%, #e7ad00);
}

.screenshot-frame,
.ui-window {
  position: relative;
  width: 100%;
  height: 305px;
  overflow: hidden;
  border: 7px solid #1c2130;
  border-radius: 14px;
  background: #1c2130;
  box-shadow: 0 18px 34px rgba(24, 26, 34, 0.24);
}

.screenshot-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.popup-frame {
  width: min(330px, 92%);
  height: 315px;
}

.popup-frame > img { object-fit: cover; object-position: top center; }

.download-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1px;
}

.slider-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 20, 0.42);
}

.slider-controls {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-controls button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
}

.slider-controls span {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 26, 45, 0.86);
  font-size: 11px;
}

.ui-window {
  border-width: 6px;
  color: var(--ink);
  background: #f6f7fa;
}

.ui-bar {
  min-height: 38px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b8496;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.connected { color: #16a45d; }

.analyzer-toolbar {
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}

.fake-search,
.analyzer-toolbar button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #8991a0;
  background: var(--white);
  font-size: 9px;
}

.analyzer-toolbar button {
  color: var(--ink);
  font-weight: 700;
}

.kpi-row {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kpi-row > div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.kpi-row span,
.kpi-row strong { display: block; }
.kpi-row span { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.kpi-row strong { margin-top: 3px; font-size: 19px; }

.fake-table {
  margin: 0 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.table-row {
  min-height: 37px;
  padding: 0 10px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  align-items: center;
  gap: 8px;
  font-size: 9px;
}

.table-row:last-child { border-bottom: 0; }
.table-head { color: var(--muted); background: #f7f8fa; font-size: 8px; font-weight: 800; }

.export-body { padding: 23px; }
.export-body > p { margin: 0 0 16px; font-size: 14px; font-weight: 750; }
.export-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.export-types > div { padding: 15px 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); }
.export-types strong, .export-types span { display: block; }
.export-types strong { font-size: 15px; }
.export-types span { margin-top: 4px; color: var(--muted); font-size: 8px; }
.export-checks { margin: 14px 0; display: flex; flex-wrap: wrap; gap: 7px; }
.export-checks span { padding: 6px 8px; border-radius: 999px; color: #6f7786; background: #eef0f4; font-size: 8px; }
.export-body > button { width: 100%; min-height: 36px; border: 0; border-radius: 8px; color: var(--ink); background: var(--yellow); font-size: 10px; font-weight: 800; }

.privacy-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 304px;
  overflow: hidden;
}

.privacy-visual > img {
  position: absolute;
  width: 300px;
  right: -30px;
  bottom: -35px;
  mix-blend-mode: multiply;
}

.privacy-copy-card {
  position: absolute;
  z-index: 2;
  width: 240px;
  top: 58px;
  left: 25px;
  padding: 20px;
  border: 1px solid rgba(21, 24, 32, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(21, 24, 32, 0.11);
}

.privacy-copy-card span,
.privacy-copy-card strong,
.privacy-copy-card small { display: block; }
.privacy-copy-card span { color: var(--yellow-dark); font-size: 8px; font-weight: 850; letter-spacing: 1px; }
.privacy-copy-card strong { margin-top: 7px; font-size: 21px; }
.privacy-copy-card small { margin-top: 8px; color: var(--muted); font-size: 9px; }

.how-section { padding: 108px 0; background: var(--white); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-grid > div { padding: 32px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 8px 28px rgba(20, 29, 48, 0.05); }
.how-grid > div > span { width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); font-weight: 850; }
.how-grid h3 { margin: 24px 0 9px; font-size: 21px; }
.how-grid p { margin: 0; color: var(--body); font-size: 14px; line-height: 1.6; }

.pricing-section { padding: 105px 0 115px; background: var(--surface); border-top: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 20px; }

.price-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 29, 48, 0.06);
}

.price-card.popular {
  border: 2px solid var(--yellow);
  transform: translateY(-12px);
  box-shadow: 0 18px 38px rgba(252, 196, 2, 0.18);
}

.popular-label {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1px;
  transform: translateX(-50%);
}

.price-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.price { margin-top: 18px; display: flex; align-items: flex-end; gap: 9px; }
.price strong { font-size: 46px; line-height: 1; letter-spacing: -2px; }
.price span { padding-bottom: 5px; color: var(--muted); font-size: 14px; }
.price-note { min-height: 44px; margin-top: 13px; color: var(--body); font-size: 13px; line-height: 1.5; }
.price-card ul { margin: 22px 0 28px; padding: 0; list-style: none; }
.price-card li { margin: 11px 0; color: #555f70; font-size: 13px; }
.price-card li::first-letter { color: var(--yellow-dark); }

.price-card > button {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #f6f7f9;
  font-weight: 750;
  cursor: pointer;
}

.price-card.popular > button { border-color: var(--yellow); background: var(--yellow); }
.price-card > button:hover { border-color: var(--yellow); background: var(--yellow-soft); }
.price-card.popular > button:hover { background: #ffd22d; }
.pricing-footnote { margin: 34px 0 0; color: var(--muted); text-align: center; font-size: 12px; }

.benefit-band { padding: 100px 0 110px; color: var(--ink); background: var(--yellow); }
.section-title.inverse > p { color: rgba(21, 24, 32, 0.68); }
.section-title.inverse > span { color: rgba(21, 24, 32, 0.7); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.benefit-grid > div { padding: 26px; border: 1px solid rgba(21, 24, 32, 0.11); border-radius: 14px; background: var(--white); }
.benefit-grid strong { font-size: 17px; }
.benefit-grid p { margin: 9px 0 0; color: var(--body); font-size: 13px; line-height: 1.55; }

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.cta-grid {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.final-cta p { color: var(--yellow); }
.final-cta h2 { max-width: 680px; margin: 13px 0 30px; font-size: clamp(36px, 4.8vw, 58px); line-height: 1.05; letter-spacing: -0.045em; }
.cta-actions { display: flex; align-items: center; gap: 22px; }
.cta-actions > a { color: var(--white); font-size: 14px; text-decoration: underline; text-underline-offset: 5px; }
.cta-grid > img { width: 430px; max-width: none; justify-self: end; mix-blend-mode: screen; filter: saturate(1.2); }

.faq-section { padding: 105px 0 110px; background: var(--white); }
.faq-shell { max-width: 880px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; padding: 18px 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 670; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 999px; display: grid; place-items: center; color: var(--muted); font-style: normal; transition: transform 160ms ease; }
.faq-list details[open] summary i { color: var(--ink); background: var(--yellow); border-color: var(--yellow); transform: rotate(45deg); }
.faq-list details > p { max-width: 730px; margin: -4px 42px 26px 2px; color: var(--body); font-size: 14px; line-height: 1.65; }

footer { border-top: 1px solid var(--line); background: var(--white); }
.footer-top { min-height: 85px; display: flex; align-items: center; gap: 34px; }
.footer-top nav { margin-left: auto; display: flex; gap: 22px; }
.footer-top nav a { color: var(--body); font-size: 12px; }
.footer-install { min-height: 36px; padding-inline: 16px; box-shadow: none; font-size: 11px; }
.footer-bottom { min-height: 60px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 11px; }

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(17, 26, 45, 0.62);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(470px, 100%);
  padding: 38px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(17, 26, 45, 0.25);
}

.modal-card > img { width: 52px; height: 55px; object-fit: contain; }
.modal-card > p { margin: 24px 0 8px; color: var(--yellow-dark); font-size: 10px; font-weight: 850; letter-spacing: 1.3px; }
.modal-card h2 { margin: 0 0 14px; font-size: 31px; letter-spacing: -1px; }
.modal-card > div { color: var(--body); font-size: 14px; line-height: 1.6; }
.modal-card > button:last-child { width: 100%; min-height: 45px; margin-top: 25px; border: 0; border-radius: 999px; color: var(--ink); background: var(--yellow); font-weight: 750; cursor: pointer; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 999px; color: var(--body); background: var(--white); font-size: 22px; cursor: pointer; }

@media (max-width: 1024px) {
  .section-shell { width: min(100% - 48px, 960px); }
  .hero { padding-top: 62px; }
  .hero-product { height: 460px; }
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr 1fr; gap: 18px; }
  .feature-copy-card,
  .feature-visual-card { min-height: 330px; }
  .feature-copy-card { padding: 34px; }
  .feature-visual-card { padding: 22px; }
  .screenshot-frame,
  .ui-window { height: 280px; }
  .how-grid { gap: 14px; }
  .how-grid > div { padding: 27px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .price-card { padding: 30px; }
  .price-card:last-child {
    width: min(540px, 100%);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid > div:last-child { grid-column: 1 / -1; }
  .cta-grid { gap: 24px; }
  .cta-grid > img { width: 360px; }
}

@media (max-width: 900px) {
  .nav-shell { width: min(100% - 40px, 860px); }
  .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: 0 18px 40px rgba(20, 29, 48, 0.12);
  }

  .nav-links.open { display: flex; }
  .nav-links a { min-height: 46px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .nav-install { margin-left: auto; }
  .menu-button { display: block; }
  .hero h1 { font-size: clamp(45px, 6.5vw, 58px); }
  .hero-product { height: 430px; }
  .price strong { font-size: 42px; }
}

@media (max-width: 820px) {
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; gap: 16px; }
  .feature-row.reverse .feature-copy-card,
  .feature-row.reverse .feature-visual-card { order: initial; }
  .feature-copy-card { min-height: 270px; }
  .feature-visual-card { min-height: 340px; }
  .screenshot-frame,
  .ui-window { height: 290px; }
  .cta-grid {
    min-height: 650px;
    padding-top: 72px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .cta-actions { justify-content: center; }
  .cta-grid > img {
    width: 330px;
    justify-self: center;
    align-self: end;
  }
}

@media (max-width: 720px) {
  .section-shell, .nav-shell, .hero-inner { width: min(100% - 28px, 600px); }
  .nav-shell { min-height: 64px; }
  .nav-install { display: none; }
  .nav-links { top: 64px; right: 14px; left: 14px; max-height: calc(100dvh - 78px); overflow-y: auto; }
  .mobile-nav-install {
    min-height: 48px;
    margin-top: 12px;
    display: inline-flex;
    box-shadow: none;
  }
  .menu-button { margin-left: auto; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(38px, 10vw, 48px); }
  .hero h1 br { display: none; }
  .hero-copy { font-size: 16px; }
  .hero-product { height: auto; aspect-ratio: 16 / 10; border-width: 7px; }
  .hero-product > img:first-of-type { object-position: top center; }
  .hero-mascot { width: 140px; right: -22px; bottom: -18px; }
  .features, .how-section, .pricing-section, .faq-section { padding-block: 78px; }
  .section-title.centered { margin-bottom: 40px; }
  .section-title h2 { font-size: clamp(32px, 8vw, 42px); }
  .feature-row,
  .feature-row.reverse { gap: 14px; }
  .feature-copy-card { min-height: 260px; }
  .feature-visual-card { min-height: 310px; }
  .feature-copy-card { padding: 32px 26px; }
  .feature-visual-card { padding: 20px; }
  .screenshot-frame, .ui-window { height: 270px; }
  .how-grid, .pricing-grid, .benefit-grid { grid-template-columns: 1fr; }
  .how-grid > div { padding: 28px; }
  .price-card:last-child {
    width: 100%;
    grid-column: auto;
  }
  .price-card.popular { margin-block: 14px; transform: none; }
  .benefit-grid > div:last-child { grid-column: auto; }
  .benefit-band { padding-block: 78px; }
  .cta-grid { min-height: 650px; padding-top: 70px; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }
  .cta-grid > img { width: 330px; justify-self: center; align-self: end; }
  .footer-top { padding-block: 28px; flex-wrap: wrap; }
  .footer-top nav {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
  }
  .footer-top nav a { min-height: 36px; display: flex; align-items: center; }
  .footer-install { width: 100%; min-height: 44px; }
  .footer-bottom { padding-block: 18px; align-items: flex-start; flex-direction: column; gap: 8px; }
  .modal-backdrop { padding: 12px; }
  .modal-card { max-height: calc(100dvh - 24px); overflow-y: auto; }
}

@media (max-width: 480px) {
  .section-shell, .nav-shell, .hero-inner { width: min(100% - 24px, 440px); }
  .brand { font-size: 18px; }
  .brand > img { width: 30px; height: 33px; }
  .nav-links { right: 12px; left: 12px; padding: 12px; }
  .hero { padding-top: 42px; }
  .hero-kicker { font-size: 10px; letter-spacing: 1.2px; }
  .hero h1 { margin-top: 12px; font-size: clamp(34px, 10.5vw, 41px); line-height: 1.04; }
  .hero-copy { font-size: 15px; line-height: 1.55; }
  .hero-button { width: 100%; padding-inline: 18px; font-size: 14px; }
  .trial-notes {
    margin: 18px auto 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .trial-notes i { display: none; }
  .hero-product { aspect-ratio: 5 / 4; border-radius: 18px 18px 0 0; }
  .hero-product-bar { height: 36px; padding-inline: 10px; }
  .hero-product > img:first-of-type { height: calc(100% - 36px); }
  .hero-product-bar strong { display: none; }
  .hero-mascot { width: 106px; right: -18px; bottom: -14px; }
  .features, .how-section, .pricing-section, .faq-section { padding-block: 64px; }
  .section-title.centered { margin-bottom: 32px; }
  .section-title > span { font-size: 15px; }
  .feature-list { gap: 18px; }
  .feature-copy-card,
  .feature-visual-card { border-radius: 14px; }
  .feature-copy-card { min-height: 245px; padding: 28px 22px; }
  .feature-visual-card { min-height: 260px; padding: 14px; }
  .feature-icon { margin-bottom: 22px; }
  .feature-copy-card h3 { font-size: 27px; }
  .screenshot-frame, .ui-window { height: 225px; border-width: 5px; }
  .popup-frame { width: 230px; height: 245px; }
  .analyzer-toolbar { grid-template-columns: 1fr; }
  .analyzer-toolbar button { display: none; }
  .kpi-row > div:last-child { display: none; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
  .export-types { grid-template-columns: 1fr; }
  .export-types > div:nth-child(3) { display: none; }
  .privacy-copy-card { width: 190px; top: 32px; }
  .privacy-visual > img { width: 230px; }
  .how-grid > div,
  .price-card,
  .benefit-grid > div { padding: 24px 22px; }
  .price strong { font-size: 42px; }
  .pricing-footnote { line-height: 1.6; }
  .benefit-band { padding-block: 64px; }
  .cta-grid { min-height: 610px; padding-top: 62px; }
  .final-cta h2 { font-size: 36px; }
  .cta-actions { width: 100%; flex-direction: column; gap: 18px; }
  .cta-actions .install-button { width: 100%; padding-inline: 17px; font-size: 14px; }
  .cta-grid > img { width: min(300px, 88vw); }
  .faq-list summary { min-height: 68px; padding-block: 16px; gap: 14px; font-size: 15px; }
  .faq-list summary i { width: 30px; height: 30px; flex: 0 0 auto; }
  .faq-list details > p { margin-right: 0; font-size: 13px; }
  .footer-top { gap: 22px; }
  .footer-top nav { gap: 8px 18px; }
  .footer-bottom { font-size: 10px; line-height: 1.5; }
  .modal-card { padding: 30px 22px 24px; border-radius: 17px; }
  .modal-card h2 { padding-right: 30px; font-size: 27px; }
}

@media (hover: none) {
  .install-button:hover { transform: none; }
}

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

/* ==========================================================================
   Accessibility helpers
   ========================================================================== */

.skip-link {
  position: absolute;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

.skip-link:focus-visible { transform: translateY(0); outline: none; }

.noscript-note {
  padding: 14px 20px;
  color: var(--ink);
  background: var(--yellow-soft);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.noscript-note a { text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Scope band — what PinWasp does and deliberately does not do
   ========================================================================== */

.scope-section { padding: 96px 0 100px; background: var(--surface); }
.scope-grid { margin-top: 46px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.scope-card {
  padding: 30px 30px 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.scope-card h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -0.4px; }
.scope-card > p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.scope-card ul { margin: 0; padding: 0; list-style: none; }
.scope-card li {
  position: relative;
  margin: 12px 0;
  padding-left: 26px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}
.scope-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
}
.scope-card.does li::before { content: "✓"; color: #1c9d5b; }
.scope-card.does-not li::before { content: "✕"; color: #c8402f; }

/* ==========================================================================
   Support / contact band
   ========================================================================== */

.support-section { padding: 92px 0 96px; background: var(--white); }
.support-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.support-card strong { display: block; font-size: 16px; }
.support-card p { margin: 8px 0 14px; color: var(--body); font-size: 13px; line-height: 1.55; }
.support-card a { color: var(--ink); font-weight: 650; font-size: 13px; text-decoration: underline; text-underline-offset: 4px; }
.support-card a:hover { color: var(--yellow-dark); }

/* ==========================================================================
   Legal pages (privacy, terms, cookies, refunds)
   ========================================================================== */

.legal-hero { padding: 62px 0 34px; border-bottom: 1px solid var(--line); background: var(--surface); }
.legal-hero p.eyebrow { margin: 0 0 12px; color: var(--yellow-dark); font-size: 10px; font-weight: 850; letter-spacing: 1.3px; }
.legal-hero h1 { margin: 0; font-size: clamp(32px, 4.4vw, 46px); line-height: 1.06; letter-spacing: -0.04em; }
.legal-hero .legal-meta { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

.legal-body { padding: 54px 0 96px; }
.legal-layout { display: grid; grid-template-columns: 232px minmax(0, 1fr); gap: 56px; align-items: start; }

.legal-toc { position: sticky; top: 96px; }
.legal-toc p { margin: 0 0 12px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: 1.2px; }
.legal-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.legal-toc li { counter-increment: toc; margin: 9px 0; }
.legal-toc a { color: var(--body); font-size: 13px; line-height: 1.45; }
.legal-toc a::before { content: counter(toc) ". "; color: var(--muted); }
.legal-toc a:hover { color: var(--yellow-dark); }

.legal-prose { max-width: 720px; }
.legal-prose > section { scroll-margin-top: 96px; }
.legal-prose > section + section { margin-top: 42px; }
.legal-prose h2 { margin: 0 0 14px; font-size: 24px; letter-spacing: -0.6px; }
.legal-prose h3 { margin: 26px 0 10px; font-size: 16px; }
.legal-prose p, .legal-prose li { color: var(--body); font-size: 14.5px; line-height: 1.68; }
.legal-prose p { margin: 0 0 14px; }
.legal-prose ul { margin: 0 0 14px; padding-left: 22px; }
.legal-prose li { margin: 8px 0; }
.legal-prose strong { color: var(--ink); }
.legal-prose a { color: var(--yellow-dark); text-decoration: underline; text-underline-offset: 3px; }

.legal-callout {
  margin: 0 0 22px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: 12px;
  background: var(--yellow-soft);
}
.legal-callout p { margin: 0; color: #4a4526; }
.legal-callout p + p { margin-top: 10px; }

.legal-table { width: 100%; margin: 0 0 18px; border-collapse: collapse; font-size: 13.5px; }
.legal-table th, .legal-table td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--body);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}
.legal-table th { color: var(--ink); background: var(--surface); font-size: 12px; letter-spacing: 0.2px; }

.legal-placeholder {
  padding: 2px 7px;
  border-radius: 5px;
  background: #ffe9a8;
  color: #6b5300;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}

/* ==========================================================================
   Cookie / consent banner
   ========================================================================== */

.consent-banner {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(560px, calc(100% - 40px));
  margin-inline: auto;
  padding: 24px 26px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 26, 45, 0.22);
}

.consent-banner h2 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.4px; }
.consent-banner p { margin: 0 0 8px; color: var(--body); font-size: 13px; line-height: 1.6; }
.consent-banner p:last-of-type { margin-bottom: 18px; }
.consent-banner a { color: var(--yellow-dark); text-decoration: underline; text-underline-offset: 3px; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.consent-actions button {
  min-height: 42px;
  padding-inline: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.consent-actions button[data-consent="accept"] { border-color: var(--yellow); background: var(--yellow); }
.consent-actions button[data-consent="accept"]:hover { background: #ffd22d; }
.consent-actions button:hover { border-color: var(--yellow); background: var(--yellow-soft); }
.consent-actions button:focus-visible { outline: 3px solid rgba(252, 196, 2, 0.55); outline-offset: 2px; }

.consent-status { margin: 14px 0 0; color: var(--muted); font-size: 12px; }

/* Footer legal row */
.footer-legal {
  min-height: 54px;
  padding-block: 12px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.footer-legal a, .footer-legal button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--body);
  font-size: 12px;
  cursor: pointer;
}
.footer-legal a:hover, .footer-legal button:hover { color: var(--yellow-dark); }
.footer-legal .footer-legal-note { margin-left: auto; color: var(--muted); font-size: 11px; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc { position: static; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .scope-grid { grid-template-columns: 1fr; }
  .consent-banner { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 20px; }
  .footer-legal .footer-legal-note { margin-left: 0; width: 100%; }
}

/* Caption under illustrative (non-screenshot) product mock-ups */
.visual-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  text-align: center;
}

/* Links inside the yellow principles band */
.section-title.inverse > span a {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Hero product bar now carries a left-aligned label pair: the right-hand corner
   is left free because the mascot image overlaps it. */
.hero-product-bar { justify-content: flex-start; gap: 14px; }
.hero-product-bar strong { color: var(--ink); letter-spacing: 0; font-size: 12px; }

/* ==========================================================================
   Oxanium (SIL Open Font License 1.1) — self-hosted on purpose: no request
   goes to Google, so the "no third-party fonts" promise in the cookie and
   privacy policies stays true. Licence: assets/fonts/OFL.txt
   ========================================================================== */

@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/oxanium-600-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/oxanium-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/oxanium-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/oxanium-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/oxanium-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Oxanium";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/oxanium-800-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Oxanium is the display face: page headline + wordmark only. Body copy stays
   Inter, which reads better at small sizes. Oxanium tops out at 800, and its
   squarer shapes need looser tracking than Inter's. */
h1,
h2,
.brand {
  font-family: "Oxanium", Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h2 { font-weight: 500; }

.hero h1 { font-weight: 500; letter-spacing: -0.028em; }
.legal-hero h1 { font-weight: 800; letter-spacing: -0.022em; }
.brand { font-weight: 800; letter-spacing: -0.01em; }
