:root,
html[data-theme="light"] {
  --ink: #eef3f0;
  --panel: #f7fbf9;
  --line: #b7c9c1;
  --mist: #3d524b;
  --sand: #0e1a16;
  --copper: #047857;
  --copper-hot: #059669;
  --bar: #dce8e3;
  --inner: #e4eee9;
  --on-copper: #f0fdf7;
  --shadow: rgb(16 40 32 / 0.1);
  --glow: 0 8px 24px rgb(4 120 87 / 0.16);
  --ring: 326.726;
  --font-display: "Cairo", "Tajawal", sans-serif;
  --font-body: "Tajawal", Tahoma, sans-serif;
  --font-label: "Cairo", "Tajawal", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --fs-body: 1.0625rem;
  --lh-body: 1.65;
  --space-focus: 3px;
  --radius: 14px;
  --radius-card: 24px;
  --forest: #123f35;
  --forest-deep: #0c2e28;
  --clay: #d85a38;
  --clay-hot: #c44c2c;
  --on-clay: #fff8f5;
  --mint-shape: #d5eee3;
  --hero-text: #f4faf7;
  --hero-muted: #d4e2db;
  color-scheme: light;
}

html[data-theme="dark"] {
  --ink: #070b0a;
  --panel: #101614;
  --line: #24352f;
  --mist: #b7c7c0;
  --sand: #eef6f2;
  --copper: #3ddc97;
  --copper-hot: #6ee7b7;
  --bar: #0c1210;
  --inner: #050807;
  --on-copper: #063224;
  --shadow: rgb(0 20 14 / 0.45);
  --glow: 0 0 32px rgb(61 220 151 / 0.28);
  --forest: #123f35;
  --forest-deep: #0c2e28;
  --clay: #e07a5f;
  --clay-hot: #f4a48c;
  --on-clay: #2a100a;
  --mint-shape: #1a332c;
  --hero-text: #eef6f2;
  --hero-muted: #c5d4cd;
  color-scheme: dark;
}

html[lang="ar"] {
  --font-display: "Cairo", "Tajawal", sans-serif;
}

html[lang="en"] {
  --font-body: "Tajawal", "Alexandria", sans-serif;
  --font-display: "Alexandria", "Tajawal", sans-serif;
  --font-label: "Cairo", "Tajawal", sans-serif;
}

html {
  overflow-x: clip;
}

body {
  min-height: 100dvh;
  overflow-x: clip;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  letter-spacing: 0;
  line-height: 1.5;
}

.font-label,
.offer-kicker,
.auth-kicker,
.score-label,
.site-nav,
.tab-btn,
.seg-btn {
  font-family: var(--font-label);
}

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  top: -100px;
  z-index: 80;
  border-radius: var(--radius);
  background: var(--clay);
  color: var(--on-clay);
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: var(--space-focus);
}

.site-header :focus-visible {
  outline-color: var(--hero-text);
}

:focus:not(:focus-visible) {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

::selection {
  background: var(--clay);
  color: var(--on-clay);
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: color-mix(in srgb, var(--forest) 92%, transparent);
  backdrop-filter: blur(12px);
  color: var(--hero-text);
}

.site-header a,
.site-header .site-nav a,
.site-header #brand-home {
  color: var(--hero-text);
}

.site-nav a {
  color: rgb(255 255 255 / 0.82);
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--clay);
  color: var(--on-clay);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--hero-text);
}

.hero-pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 75%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 48px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hero-muted);
  font-size: 13px;
}

.hero-badge span:first-child {
  border-radius: 999px;
  background: var(--clay);
  color: var(--on-clay);
  padding: 4px 10px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  color: var(--hero-text);
  line-height: 1.55;
  padding-block: 0.12em 0.18em;
}

.hero-sub {
  color: var(--hero-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero label {
  color: var(--hero-text);
}

.hero #scan-form input {
  border-color: transparent;
  border-radius: 999px;
  background: #fff;
  color: #0e1a16;
  box-shadow: 0 10px 30px rgb(0 0 0 / 0.12);
}

.btn-pill,
.hero #scan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--on-clay);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill i:not(.hidden),
.hero #scan-btn i:not(.hidden) {
  display: block;
  width: 1.05em;
  height: 1.05em;
  font-size: 1.05em;
  line-height: 1;
}

#scan-spinner.hidden {
  display: none !important;
}

.btn-pill:hover,
.hero #scan-btn:hover {
  background: var(--clay-hot);
}

.hero-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--hero-text);
  font-size: 14px;
  font-weight: 600;
}

.hero-more i {
  font-size: 22px;
  color: var(--clay);
}

.hero-visual {
  position: relative;
  display: grid;
}

.window-stack {
  position: relative;
  padding: 10px 6px 18px;
}

.window-ghost {
  position: absolute;
  inset: 10px 0 -8px 20px;
  border-radius: 16px;
  background: rgb(255 255 255 / 0.16);
  transform: rotate(3.5deg);
}

html[dir="rtl"] .window-ghost {
  inset: 10px 20px -8px 0;
  transform: rotate(-3.5deg);
}

.window-stack .browser-frame {
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.illust-stage {
  position: relative;
  display: grid;
  min-height: 280px;
  place-items: center;
}

.illust-stage.is-compact {
  min-height: 220px;
}

.shape {
  position: absolute;
  z-index: 0;
}

.shape-mint {
  width: 78%;
  height: 78%;
  border-radius: 32px;
  background: var(--mint-shape);
  transform: rotate(-8deg);
}

.shape-mint.is-tilt {
  transform: rotate(7deg);
}

.shape-clay {
  inset-inline-end: 8%;
  top: 10%;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--clay);
}

.shape-clay.is-sm {
  width: 44px;
  height: 44px;
}

.shape-diamond {
  inset-inline-start: 12%;
  bottom: 18%;
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
}

.shape-arc {
  inset-inline-start: 6%;
  bottom: 12%;
  width: 120px;
  height: 60px;
  border-radius: 0 0 120px 120px;
  background: var(--forest);
  opacity: 0.85;
}

.illust {
  position: relative;
  z-index: 1;
  display: block;
  width: min(280px, 70%);
  height: auto;
  max-height: 280px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.illust-hero {
  filter: invert(1);
}

.illust-well {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #f4ddd4;
  padding: 10px;
}

.illust-well .illust {
  width: 100%;
  height: 100%;
  max-height: none;
}

html[data-theme="dark"] .illust-well .illust,
html[data-theme="dark"] .is-on-paper .illust {
  filter: invert(1);
}

html[data-theme="dark"] .illust-well {
  background: #3a241e;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 132px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgb(12 46 40 / 0.18);
  color: #0e1a16;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

.float-a {
  inset-inline-end: 0;
  top: 8%;
}

.float-b {
  inset-inline-start: 0;
  bottom: 12%;
}

.float-c {
  inset-inline-start: 0;
  top: 8%;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.float-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.float-cap {
  color: #5c6f68;
  font-size: 11px;
  font-weight: 500;
}

.float-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--clay);
}

.well-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: var(--clay);
  color: var(--on-clay);
}

.hero .browser-frame {
  position: relative;
  z-index: 2;
  box-shadow: 0 28px 60px rgb(0 0 0 / 0.28);
}

.trust-band {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding: 0 16px 8px;
}

.trust-sheet {
  display: grid;
  grid-template-columns: minmax(8rem, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px 28px;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  border-radius: var(--radius-card);
  background: var(--panel);
  box-shadow: 0 16px 40px rgb(12 46 40 / 0.1);
  padding: 14px 20px;
}

.kw-strip {
  position: relative;
  z-index: 2;
  padding: 4px 16px 28px;
}

.kw-sheet {
  max-width: 72rem;
  margin: 0 auto;
}

.kw-kicker {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mist);
}

.kw-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kw-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sand);
}

.kw-list a {
  color: inherit;
  text-decoration: none;
}

.trust-note {
  margin: 0;
  color: var(--mist);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.trust-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--sand);
  font-size: 13px;
  font-weight: 700;
}

.trust-logos img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

@media (max-width: 767px) {
  .trust-sheet {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .trust-note {
    white-space: normal;
  }

  .trust-logos {
    grid-template-columns: 1fr 1fr;
  }
}

.ticker-clip {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 28px 0 40px;
}

.ticker {
  overflow: hidden;
  width: 120%;
  margin: 0 -10%;
  background: var(--forest-deep);
  color: #fff;
  transform: rotate(-2.1deg);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}

html[dir="ltr"] .ticker-track {
  animation-name: ticker-ltr;
}

.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 14px;
  padding-inline-end: 28px;
  flex-shrink: 0;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

html[dir="ltr"] .ticker-set {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker i {
  color: var(--clay);
  font-size: 12px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@keyframes ticker-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.account-band {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.account-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 20px;
}

.account-logout {
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--sand);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.account-logout:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 24px 50px rgb(0 0 0 / 0.28);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  background: var(--bar);
  padding: 10px 12px;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3a3f48;
}

.browser-bar span:first-child { background: #6b5344; }
.browser-bar span:nth-child(2) { background: #5a5344; }
.browser-bar span:nth-child(3) { background: #44524a; }

.browser-url {
  margin-inline-start: 8px;
  overflow: hidden;
  flex: 1;
  border-radius: 8px;
  background: var(--inner);
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mist);
  text-align: left;
  direction: ltr;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.browser-body {
  min-height: 280px;
  background: var(--inner);
}

.browser-body img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.idle-grid {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 280px;
  padding: 28px 24px;
  color: var(--mist);
  text-align: center;
  font-size: 14px;
}

.idle-grid i {
  font-size: 2.6rem;
  color: var(--copper);
}

.score-tray {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 14px;
}

@media (min-width: 640px) {
  .score-tray {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .score-tray {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 16px;
    gap: 14px;
  }
}

.score-card {
  display: grid;
  justify-items: center;
  border: 0;
  border-radius: 22px;
  background: var(--ink);
  padding: 22px 12px 18px;
  cursor: pointer;
}

.score-card.is-active {
  outline: 2px solid var(--copper);
  outline-offset: 0;
}

.score-meter {
  position: relative;
  width: 96px;
  height: 96px;
}

.score-ring {
  width: 96px;
  height: 96px;
  transform: rotate(-90deg);
}

.ring-track,
.ring-fill {
  fill: none;
  stroke-width: 8;
}

.ring-track {
  stroke: var(--line);
}

.ring-fill {
  stroke: var(--copper);
  stroke-linecap: round;
  stroke-dasharray: var(--ring);
  stroke-dashoffset: var(--ring);
  transition: stroke-dashoffset 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.score-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sand);
}

.score-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--mist);
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sand);
}

.tech-logo {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 3px;
  object-fit: contain;
  background: #fff;
}

.tech-board[hidden] {
  display: none !important;
}

.insight-row {
  display: grid;
  gap: 16px;
}

.insight-row.hidden {
  display: none !important;
}

@media (min-width: 960px) {
  .insight-row {
    grid-template-columns: minmax(200px, 0.85fr) minmax(0, 1.25fr) minmax(240px, 1fr);
    align-items: stretch;
  }
}

.insight-kicker {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 16px;
}

.phone-shell,
.og-card,
.trust-card,
.bento-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 22px 20px;
  box-shadow: none;
}

.phone-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-bezel {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 390 / 844;
  border-radius: 36px;
  padding: 10px 9px 12px;
  background: linear-gradient(160deg, #1c1c1e, #0a0a0c 55%, #2c2c2e);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.12),
    0 18px 40px rgb(8 20 16 / 0.28);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: #050505;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #111;
}

.phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.og-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--inner);
}

.og-image {
  min-height: 148px;
  background:
    linear-gradient(135deg, rgb(4 120 87 / 0.18), transparent 55%),
    var(--bar);
}

.og-image img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.og-image.is-empty::after {
  content: "";
  display: block;
  height: 148px;
  background:
    repeating-linear-gradient(
      -32deg,
      transparent,
      transparent 10px,
      rgb(4 120 87 / 0.06) 10px,
      rgb(4 120 87 / 0.06) 11px
    );
}

.og-copy {
  padding: 12px 14px 14px;
}

.og-host {
  font-size: 11px;
  font-weight: 700;
  color: var(--mist);
  letter-spacing: 0.02em;
}

.og-title {
  margin-top: 4px;
  font-size: 1.05rem;
  color: var(--sand);
}

.og-desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--mist);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.og-status {
  margin-top: 12px;
  font-size: 13px;
  color: var(--mist);
}

.og-status.is-warn,
.og-card.is-warn .og-status {
  color: #b45309;
}

html[data-theme="dark"] .og-status.is-warn {
  color: #fbbf24;
}

.trust-list,
.plat-list {
  display: grid;
  gap: 8px;
}

.trust-pill,
.plat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--copper) 28%, var(--line));
  background: color-mix(in srgb, var(--copper) 8%, var(--panel));
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
}

.trust-pill.is-ok {
  background: rgb(4 120 87 / 0.1);
  color: var(--copper);
}

.trust-pill.is-bad {
  background: rgb(196 92 74 / 0.1);
  color: #b42318;
}

html[data-theme="dark"] .trust-pill.is-bad {
  color: #fca5a5;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.trust-err {
  font-size: 11px;
  color: var(--mist);
  word-break: break-word;
}

.plat-chip span {
  margin-inline-start: auto;
  font-size: 11px;
  color: var(--mist);
  font-weight: 600;
}

.plat-chip.is-on {
  border-color: var(--copper);
  background: rgb(4 120 87 / 0.08);
}

.plat-none {
  font-size: 13px;
  color: var(--mist);
}

.tech-group + .tech-group {
  margin-top: 16px;
}

.tech-group h4 {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--copper);
}

.tech-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.trust-card .tech-group + .tech-group {
  margin-top: 12px;
}

.trust-card .tech-group h4 {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.issue-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 14px 16px;
}

.issue-item.is-empty {
  display: block;
}

.issue-item.is-high {
  background: #fdecea;
  border-color: #f0c4bf;
}

.issue-item.is-med {
  background: #fff6e8;
  border-color: #efd2a3;
}

.issue-item.is-ok {
  background: #eaf6f0;
  border-color: #b7ddc8;
}

html[data-theme="dark"] .issue-item.is-high {
  background: rgb(196 92 74 / 0.16);
  border-color: rgb(196 92 74 / 0.38);
}

html[data-theme="dark"] .issue-item.is-med {
  background: rgb(217 119 6 / 0.16);
  border-color: rgb(217 119 6 / 0.38);
}

html[data-theme="dark"] .issue-item.is-ok {
  background: rgb(4 120 87 / 0.16);
  border-color: rgb(4 120 87 / 0.38);
}

.finding-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: #d97706;
}

.issue-item.is-high .finding-dot {
  background: #c2412d;
}

.issue-item.is-ok .finding-dot {
  background: #047857;
}

.finding-body {
  min-width: 0;
}

.finding-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.finding-head h4 {
  margin: 0;
  flex: 1;
}

.finding-src {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.72);
  font-size: 12px;
  line-height: 1.45;
  color: #3f524c;
  direction: ltr;
  text-align: left;
}

html[data-theme="dark"] .finding-src {
  background: rgb(0 0 0 / 0.22);
  color: var(--mist);
}

.cro-summary {
  margin-top: 16px;
  border-inline-start: 3px solid var(--copper);
  padding-inline-start: 14px;
  color: var(--sand);
  font-size: 15px;
  line-height: 1.85;
}

.cro-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

.cro-group-list {
  display: grid;
  gap: 10px;
}

.cro-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 18px 18px 16px;
}

.cro-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--copper);
}

.cro-card h4 {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sand);
}

.cro-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist);
}

.cro-fix {
  margin-top: 12px;
  border-radius: 12px;
  background: rgb(16 185 129 / 0.1);
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--sand);
}

.cro-fix span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--copper);
}

.scan-live {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--sand);
  font-size: 14px;
  font-weight: 500;
}

.scan-live.hidden {
  display: none !important;
}

.scan-cancel {
  margin-inline-start: auto;
  border: 0;
  background: transparent;
  color: var(--mist);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.scan-cancel:hover,
.scan-cancel:focus-visible {
  color: var(--sand);
}

.metric-hint {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--mist);
}

.scan-pulse {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--copper);
  box-shadow: 0 0 0 0 rgb(16 185 129 / 0.55);
  animation: ping 1.6s ease-out infinite;
}

.scan-loader {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: 240px;
  height: 100%;
  overflow: hidden;
  padding: 28px 20px;
  text-align: center;
}

.scan-radar {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.scan-radar::before,
.scan-radar::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px solid rgb(16 185 129 / 0.25);
}

.scan-radar::after {
  inset: 22px;
}

.scan-arc {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: var(--copper);
  animation: spin 1.1s linear infinite;
}

.scan-beam {
  position: absolute;
  inset-inline: 8%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  animation: beam 2.2s ease-in-out infinite;
}

.scan-loader p {
  margin: 0;
  width: 100%;
  max-width: 36ch;
  min-height: 3.4em;
  color: var(--sand);
  font-size: 14px;
  line-height: 1.7;
  overflow: hidden;
}

.catalog-body {
  max-width: 62ch;
}

.catalog-count {
  margin: 0 0 12px;
  font-weight: 700;
}

.catalog-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.catalog-stats li {
  border-radius: 999px;
  background: rgb(196 92 74 / 0.14);
  color: var(--sand);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.catalog-stats li.is-ok {
  background: rgb(61 154 109 / 0.16);
}

.catalog-examples-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.catalog-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.catalog-list a {
  color: var(--sand);
  font-weight: 700;
  word-break: break-all;
}

.catalog-list p {
  margin: 4px 0 0;
  color: var(--mist);
  font-size: 13px;
}

.catalog-empty {
  color: var(--mist);
}

.tab-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

@media (min-width: 768px) {
  .tab-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .tab-bar {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.tab-btn {
  height: 46px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  padding: 0 10px;
  color: var(--mist);
  font-size: 13px;
  font-weight: 700;
}

.tab-btn.is-active {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--on-copper);
}

.tab-panel {
  display: none;
}

.tab-panel.is-on {
  display: block;
}

.header-tools {
  position: relative;
  z-index: 51;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.seg {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--inner);
}

.seg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-width: 52px;
  min-height: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  background: transparent;
  color: var(--mist);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  pointer-events: auto;
  touch-action: manipulation;
}

.seg-btn.is-on {
  background: var(--copper);
  color: var(--on-copper);
  opacity: 1;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--inner);
  color: var(--sand);
  font-size: 18px;
}

.icon-btn:hover,
.seg-btn:hover:not(.is-on) {
  color: var(--sand);
}

html[data-theme="dark"] [data-theme-icon="to-dark"],
html[data-theme="light"] [data-theme-icon="to-light"] {
  display: none;
}

.auth-card {
  max-width: 520px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 28px 24px;
}

.auth-card.is-gone {
  display: none;
}

.google-login-btn {
  display: flex;
  width: 100%;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--sand);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
}

html[data-theme="light"] .google-login-btn {
  background: #fff;
  color: #1f1f1f;
}

.google-login-btn:hover {
  filter: brightness(0.98);
}

.google-login-btn i {
  font-size: 1.2rem;
  color: #ea4335;
}

.google-gis-host {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.auth-field {
  height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--sand);
}

html[data-theme="light"] .auth-field {
  background: #fff;
}

.auth-kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--copper);
}

.fix-cta,
.contact-note {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 18px 16px;
  color: var(--sand);
  line-height: 1.8;
}

.contact-link {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 999px;
  background: var(--copper);
  padding: 0 18px;
  color: var(--on-copper);
  font-size: 0.9375rem;
  font-weight: 700;
}

.site-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sand);
  direction: ltr;
  text-align: left;
}

.site-row-url {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.site-row-open {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  background: var(--clay);
  color: var(--on-clay);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 16px 16px 14px;
}

.metric-card .label {
  font-size: 12px;
  color: var(--mist);
  line-height: 1.4;
}

.metric-card .value {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sand);
}

.issue-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.4;
}

.issue-item p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: #3f524c;
}

html[data-theme="dark"] .issue-item p {
  color: var(--mist);
}

.finding-hint {
  color: var(--sand) !important;
}

.sev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 4.6rem;
  margin: 0;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.sev-high {
  background: #c2412d;
  color: #fff;
}

.sev-medium {
  background: #d97706;
  color: #fff;
}

.sev-ok,
.finding-pass .sev {
  background: #047857;
  color: #fff;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes beam {
  0% { transform: translateY(24px); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(210px); opacity: 0; }
}

@keyframes ping {
  70% { box-shadow: 0 0 0 10px rgb(16 185 129 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(16 185 129 / 0); }
}

.issue-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.4;
}

.issue-item p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.65;
  color: #3f524c;
}

html[data-theme="dark"] .issue-item p {
  color: var(--mist);
}

.finding-hint {
  color: var(--sand) !important;
}

.sev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 4.6rem;
  margin: 0;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.sev-high {
  background: #c2412d;
  color: #fff;
}

.sev-medium {
  background: #d97706;
  color: #fff;
}

.sev-ok {
  background: #047857;
  color: #fff;
}

.issues-locked {
  display: none;
}

.report-locked-note {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--mist);
  font-size: 14px;
  line-height: 1.7;
}

.lead-gate {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 16px;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.lead-gate.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lead-card {
  width: min(100%, 440px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  padding: 22px 20px 18px;
  box-shadow: 0 18px 50px rgb(0 0 0 / 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .ring-fill,
  .issues-locked,
  .lead-gate,
  .animate-spin,
  .scan-pulse,
  .scan-arc,
  .scan-beam,
  .ticker-track {
    transition: none !important;
    animation: none !important;
  }
}

.site-nav {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(255 255 255 / 0.72);
}

.site-nav a {
  color: inherit;
}

.site-nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-toggle {
  display: grid;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-drawer {
    display: none !important;
  }
}

.nav-drawer {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  background: var(--forest);
  padding: 10px 16px 14px;
}

.nav-drawer.hidden {
  display: none;
}

.nav-drawer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  color: var(--hero-text);
}

.teaser-card,
.unlock-summary {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  padding: 20px 22px;
}

.unlock-summary {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.unlock-summary p {
  flex: 1 1 18rem;
  margin: 0;
  max-width: 52ch;
  color: var(--sand);
  font-size: 15px;
  line-height: 1.7;
}

.unlock-summary .offer-go {
  margin: 0;
  flex-shrink: 0;
}

.header-tools .icon-btn .ph-whatsapp-logo {
  color: #25d366;
}

@media (max-width: 639px) {
  .seg-btn {
    min-width: 44px;
    padding: 0 8px;
  }
}


.cache-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 12px 16px;
  color: var(--mist);
  font-size: 14px;
}

.cache-note.hidden {
  display: none;
}

.cache-fresh {
  border: 0;
  border-radius: 999px;
  background: var(--copper);
  color: var(--on-copper);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cache-fresh:hover {
  background: var(--copper-hot);
}

.pain-note {
  margin-top: 28px;
  max-width: 52ch;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
  color: var(--sand);
}

.bridge {
  background: var(--ink);
}

.why-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: minmax(240px, 0.9fr) 1.4fr;
    align-items: stretch;
  }
}

.why-metric {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--forest);
  color: var(--hero-text);
}

.why-metric-num {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--clay);
}

.why-metric-cap {
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hero-text);
}

.why-metric-note {
  margin-top: 8px;
  max-width: 28ch;
  color: color-mix(in srgb, var(--hero-text) 88%, transparent);
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-copy {
  padding-block: 8px;
  padding-inline: 0;
}

@media (min-width: 900px) {
  .why-copy {
    padding-block: 12px;
    padding-inline-start: 28px;
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 28px;
}

.stat-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.stat-grid i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--clay) 16%, var(--panel));
  color: var(--clay);
}

.solutions {
  background: var(--panel);
}

.surface-panel {
  padding: 8px 0 0;
}

@media (min-width: 768px) {
  .surface-panel {
    padding: 40px;
    border-radius: var(--radius-card);
    background: var(--ink);
  }
}

.offer-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card.is-wide {
    grid-column: 1 / -1;
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  padding: 28px 24px 24px;
}

.offer-meta {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--mist);
}

.offer-card.is-lead {
  border: 0;
  background: var(--forest);
}

.offer-card.is-lead p:not(.offer-meta) {
  color: color-mix(in srgb, var(--hero-text) 88%, transparent);
}

.offer-card.is-lead .icon-well {
  background: rgb(255 255 255 / 0.1);
  color: var(--hero-text);
}

html[data-theme="dark"] .why-metric,
html[data-theme="dark"] .offer-card.is-lead,
html[data-theme="dark"] .final-band {
  background: var(--forest);
}

.offer-card h3 {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--sand);
}

.offer-card.is-lead h3 {
  color: var(--hero-text);
}

.offer-card p {
  margin-top: 10px;
  max-width: 52ch;
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.8;
}

.offer-card > p:not(.offer-meta) {
  flex: 1 1 auto;
}

.icon-well {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--clay) 16%, var(--panel));
  color: var(--clay);
  font-size: 1.25rem;
}

.text-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--clay);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

html[dir="ltr"] .text-go i {
  transform: scaleX(-1);
}

.offer-go,
.build-band .offer-go,
.teaser-card .offer-go,
.unlock-summary .offer-go,
#proof .offer-go,
.section-close .offer-go {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  align-self: start;
  border-radius: 999px;
  background: var(--clay);
  padding: 0 22px;
  color: var(--on-clay);
  font-size: 0.9375rem;
  font-weight: 700;
  white-space: nowrap;
}

.offer-go:hover,
.build-band .offer-go:hover,
.teaser-card .offer-go:hover,
.unlock-summary .offer-go:hover,
#proof .offer-go:hover {
  background: var(--clay-hot);
}

.build-band {
  background: var(--panel);
}

.process-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 28px 24px 24px;
  border-radius: var(--radius-card);
  background: var(--ink);
}

.process-num {
  position: absolute;
  inset-inline-end: 12px;
  top: -8px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: color-mix(in srgb, var(--forest) 22%, transparent);
  pointer-events: none;
}

.process-card h3 {
  position: relative;
  font-size: 1.2rem;
  font-weight: 800;
}

.process-card p {
  position: relative;
  margin-top: 8px;
  max-width: 32ch;
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.proof-shot {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--panel);
}

.proof-shot img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

.proof-shot p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
}

.proof-shot .score {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--copper);
}

.proof-shot.is-bad .score {
  color: #e07a68;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--sand);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

.faq-item summary::after {
  content: "+";
  width: auto;
  height: auto;
  flex-shrink: 0;
  border: 0;
  transform: none;
  color: var(--mist);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

html[dir="ltr"] .faq-item summary::after {
  transform: none;
}

.faq-item[open] summary::after {
  content: "−";
  transform: none;
}

html[dir="ltr"] .faq-item[open] summary::after {
  transform: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 8px;
  max-width: 60ch;
  color: var(--mist);
  line-height: 1.8;
}

.section-close {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.section-close p {
  max-width: 52ch;
  color: var(--sand);
  font-size: 14px;
  line-height: 1.8;
}

.section-close .offer-go {
  margin-top: 12px;
}

.final-wrap {
  background: var(--panel);
}

.final-band {
  display: grid;
  gap: 28px;
  padding: 36px 28px;
  border-radius: var(--radius-card);
  background: var(--forest);
  color: var(--hero-text);
}

@media (min-width: 800px) {
  .final-band {
    grid-template-columns: 1.4fr auto;
    align-items: center;
    padding: 48px 44px;
  }
}

.final-band h2 {
  max-width: 20ch;
  color: var(--hero-text);
}

.final-lead {
  margin-top: 12px;
  max-width: 42ch;
  color: color-mix(in srgb, var(--hero-text) 88%, transparent);
  font-size: 1.02rem;
  line-height: 1.7;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.ghost-go {
  display: inline-flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 999px;
  color: var(--hero-text);
  font-size: 13px;
  font-weight: 700;
}

.ghost-go:hover {
  background: rgb(255 255 255 / 0.1);
}

html[dir="ltr"] .ghost-go i {
  transform: scaleX(-1);
}

.site-footer {
  background: var(--panel);
  color: var(--sand);
}

.scan-cta-band {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--sand);
}

.is-scan-page .landing-only {
  display: none !important;
}

.is-scan-page .scan-cta-band {
  display: block;
}

.is-scan-page .hero .mx-auto {
  max-width: 72rem;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.is-scan-page .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
}

.is-scan-page .hero-visual,
.is-scan-page .window-stack,
.is-scan-page .window-stack .browser-frame,
.is-scan-page .hero-copy {
  width: 100%;
  max-width: 100%;
}

.is-scan-page .hero-visual {
  order: -1;
}

.is-scan-page .hero-badge,
.is-scan-page .hero-copy > h1,
.is-scan-page .hero-sub {
  display: none !important;
}

.is-scan-page .window-ghost {
  display: none;
}

.is-scan-page .window-stack {
  padding: 0;
}

.is-scan-page .browser-frame {
  display: flex;
  flex-direction: column;
}

.is-scan-page .browser-body {
  position: relative;
  height: min(62vh, 560px);
  min-height: min(62vh, 560px);
  max-height: min(62vh, 560px);
  overflow: hidden;
}

.is-scan-page .idle-grid,
.is-scan-page .scan-loader {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
}

.is-scan-page .idle-grid p {
  max-width: 32ch;
  margin: 0;
}

.is-scan-page .browser-body img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.is-scan-page .hero #scan-form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 22px 22px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 24px;
  background: rgb(255 255 255 / 0.08);
}

.is-scan-page .hero #scan-form label {
  text-align: start;
  font-size: 0.95rem;
}

.is-scan-page .scan-form-row {
  align-items: stretch;
}

.is-scan-page .hero #scan-form input {
  flex: 1 1 0%;
  width: auto;
  min-width: 0;
  height: 56px;
  padding-inline: 20px;
  font-size: 1.05rem;
}

.is-scan-page .hero #scan-btn {
  height: 56px;
  padding-inline: 28px;
  font-size: 1.05rem;
}

@media (max-width: 639px) {
  .is-scan-page .hero #scan-btn {
    width: 100%;
  }
}

.scan-cta-inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

@media (min-width: 768px) {
  .scan-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
  }
}

.scan-cta-band h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--sand);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
}

.scan-cta-body {
  max-width: 42ch;
  margin: 8px 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--mist);
}

.scan-cta-btn {
  margin: 0;
  width: max-content;
}

html[data-theme="dark"] .site-footer {
  background: var(--inner);
  color: var(--sand);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  }
}

.footer-nav {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--sand);
}

.footer-nav a {
  color: inherit;
  line-height: 1.5;
}

.footer-nav a:hover {
  color: var(--clay);
}

.footer-col-label,
.footer-cta-label {
  margin-bottom: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mist);
}

.footer-cta-label {
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sand);
}

.site-footer .offer-go {
  height: 48px;
  padding: 0 22px;
  font-size: 0.9375rem;
}

.footer-legal {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--mist);
  font-size: 0.85rem;
}

.site-header .icon-btn,
.site-header .seg {
  border-color: rgb(255 255 255 / 0.18);
  background: rgb(255 255 255 / 0.08);
  color: var(--hero-text);
}

.site-header .seg-btn {
  color: rgb(255 255 255 / 0.7);
}

.site-header .seg-btn.is-on {
  background: var(--clay);
  color: var(--on-clay);
}

.market h2 {
  max-width: 20ch;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--sand);
}

.market .final-band h2,
.final-band h2 {
  color: var(--hero-text);
}

.why-copy h2 {
  max-width: 20ch;
}

.market-lead {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mist);
}

.why-copy .offer-go,
.build-band .offer-go {
  margin-top: 28px;
}

.faq-band {
  background: var(--panel);
}

.journal-band {
  background: var(--ink);
}

.proof {
  background: var(--ink);
}

#scan,
#solutions,
#journal,
#build,
#proof,
#faq,
#consult,
#account {
  scroll-margin-top: 5.75rem;
}

.text-go {
  min-height: 44px;
  padding-block: 8px;
}

.btn-pill,
.offer-go,
.ghost-go,
.icon-btn,
.tab-btn,
.seg-btn {
  touch-action: manipulation;
}

.faq-item summary {
  font-size: 1.05rem;
  color: var(--sand);
}

.faq-item p {
  font-size: 0.95rem;
}

@media (max-width: 639px) {
  .float-a,
  .float-b,
  .float-c {
    min-width: 108px;
    padding: 10px 12px;
  }

  .illust-stage {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .offer-card,
  .process-card,
  .journal-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .offer-card:hover,
  .process-card:hover,
  .journal-card:hover {
    transform: translateY(-5px);
  }

  .offer-go:active,
  .btn-pill:active,
  .ghost-go:active {
    transform: scale(0.98);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    backdrop-filter: none;
    background: var(--forest);
  }
}

.journal {
  min-height: 60vh;
}

.journal-hero h1,
.journal article > h1,
.blog-post h1 {
  max-width: 22ch;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.is-articles-page .journal-hero h1,
.blog-feat-copy h2,
.blog-post h1 {
  color: var(--sand);
}

.is-articles-page .journal-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  letter-spacing: -0.03em;
}

.blog-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 768px) {
  .blog-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
  }

  .blog-head .article-cta {
    margin-top: 0;
    flex-shrink: 0;
  }
}

.blog-tag {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 12px;
  border: 1px solid color-mix(in srgb, var(--clay) 40%, var(--line));
  border-radius: 999px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-feat {
  display: grid;
  gap: 0;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
}

@media (min-width: 900px) {
  .blog-feat {
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 22rem;
  }
}

.blog-feat-media {
  display: block;
  min-height: 14rem;
  background: var(--line);
}

.blog-feat-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1200 / 800;
}

@media (min-width: 900px) {
  .blog-feat-media,
  .blog-feat-media img {
    height: 100%;
    min-height: 22rem;
    aspect-ratio: auto;
  }
}

.blog-feat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px 26px;
}

@media (min-width: 900px) {
  .blog-feat-copy {
    padding: 36px 32px;
  }
}

.blog-feat-copy h2 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
}

.blog-feat-copy h2 a {
  color: var(--sand);
}

.blog-feat-copy > p:not(.blog-tag):not(.journal-meta) {
  margin-top: 12px;
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-all-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 20px;
}

.blog-all-bar h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--mist);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.blog-filter.is-on {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--hero-text);
}

.blog-grid {
  display: grid;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-grid > li[hidden] {
  display: none;
}

.blog-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin-bottom: 18px;
  font-size: 13px;
}

.blog-crumb a {
  color: var(--mist);
}

.blog-crumb a:hover {
  color: var(--clay);
}

.blog-crumb a:not(:first-child)::before {
  content: "/";
  margin-inline-end: 8px;
  color: var(--line);
}

.related-grid {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.journal-lede {
  max-width: 58ch;
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mist);
}

.journal-byline {
  margin: 8px 0 0;
  font-size: 0.92rem;
  color: var(--mist);
}

.journal-byline a {
  color: inherit;
  font-weight: 700;
}

.journal-kicker {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

.journal-meta {
  margin-top: 10px;
  color: var(--mist);
  font-size: 13px;
}

.journal-grid {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .journal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.journal-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  padding: 0 0 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgb(18 63 53 / 0.1);
}

.journal-card .journal-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 800;
  object-fit: cover;
  background: var(--line);
}

.journal-card .journal-card-body {
  padding: 18px 20px 0;
}

.journal-band h2 {
  max-width: 20ch;
}

.journal-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.journal-card h3 a {
  color: var(--sand);
}

.journal-card.is-compact {
  padding-bottom: 16px;
}

.journal-card.is-compact h3 {
  font-size: 1.05rem;
}

.journal-card p {
  margin-top: 10px;
  color: var(--mist);
  font-size: 0.95rem;
  line-height: 1.65;
}

.journal-card .text-go {
  margin-top: 16px;
}

.article-prose {
  margin-top: 28px;
}

.article-prose h2 {
  margin: 32px 0 12px;
  font-size: 1.28rem;
  line-height: 1.4;
}

.article-prose h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.article-prose p {
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mist);
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 16px;
  padding-inline-start: 1.3rem;
  max-width: 62ch;
  color: var(--mist);
}

.article-prose li {
  margin: 0 0 8px;
  line-height: 1.7;
}

.article-prose strong {
  color: var(--sand);
  font-weight: 700;
}

.article-prose a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-figure {
  margin: 28px 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--panel);
}

.article-figure figcaption {
  margin-top: 8px;
  max-width: 62ch;
  color: var(--mist);
  font-size: 13px;
  line-height: 1.5;
}

.article-faq {
  margin-top: 36px;
  padding-top: 8px;
}

.article-faq .faq-item {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.article-cta.is-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related {
  margin-top: 48px;
}

.related h2 {
  font-size: 1.1rem;
}

.related ul:not(.related-grid) {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.related a {
  color: var(--sand);
  font-weight: 700;
}

html[dir="ltr"] .journal-card .text-go i {
  transform: scaleX(-1);
}

.help-nudge {
  position: fixed;
  z-index: 40;
  inset-inline-start: 16px;
  bottom: 16px;
  width: min(22rem, calc(100vw - 32px));
  pointer-events: none;
}

.help-nudge.is-on {
  pointer-events: auto;
}

.help-nudge[hidden] {
  display: none !important;
}

.help-nudge-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  padding: 20px 44px 18px 18px;
  box-shadow: 0 18px 40px rgb(12 46 40 / 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.help-nudge.is-on .help-nudge-card {
  opacity: 1;
  transform: translateY(0);
}

html[dir="ltr"] .help-nudge-card {
  padding: 20px 18px 18px 44px;
}

.help-nudge-title {
  margin: 0 0 8px;
  color: var(--sand);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.help-nudge-body {
  margin: 0 0 14px;
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.65;
}

.help-nudge-close {
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mist);
  cursor: pointer;
}

.help-nudge-close:hover {
  color: var(--sand);
  background: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .help-nudge-card {
    transition: none;
  }
}
