    /* =========================================================
       REVIEW X-RAY — PosterAI brand variant
       Black canvas, yellow/gold signature accent (matches
       PosterAI's own app identity), purple reserved for the
       PosterAI cross-sell moment, bold condensed display type.
       Same markup/content/JS as the indigo variant — palette
       and type only.
       ========================================================= */

    :root {
      /* Core surface */
      --bg: #0A0A0A;
      --card: #141414;
      --card-glass: rgba(255, 255, 255, 0.045);
      --card-glass-strong: rgba(255, 255, 255, 0.075);
      --text: #F5F5F2;
      --text-secondary: #A3A3AC;
      --text-muted: #68686F;
      --border: rgba(255, 255, 255, 0.1);
      --border-strong: rgba(255, 255, 255, 0.2);

      /* Brand — yellow is identity (logo, labels, outlines);
         white is the primary action color; purple is reserved
         for the PosterAI moment only. */
      --brand: #F5C518;
      --brand-hover: #FFD84D;
      --brand-ink: #14110A;
      --brand-light: rgba(245, 197, 24, 0.16);
      --brand-lighter: rgba(245, 197, 24, 0.08);

      --purple: #8B5CF6;
      --purple-hover: #9D71F8;
      --purple-light: rgba(139, 92, 246, 0.18);

      --white-ink: #111111;

      /* Data — deliberately NOT yellow, since yellow means brand
         here, not "warning" */
      --negative: #FF5C5C;
      --negative-light: rgba(255, 92, 92, 0.14);

      --warning: #FB923C;
      --warning-light: rgba(251, 146, 60, 0.14);

      --positive: #2FE3A8;
      --positive-light: rgba(47, 227, 168, 0.14);

      --neutral: #6B6B75;
      --neutral-light: rgba(255, 255, 255, 0.06);

      /* UI */
      --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.5);
      --shadow-sm:
        0 1px 3px rgba(0, 0, 0, 0.45),
        0 1px 2px rgba(0, 0, 0, 0.35);

      --shadow-md:
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.32);

      --shadow-lg:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 10px 24px rgba(0, 0, 0, 0.4);

      --radius-sm: 12px;
      --radius: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --radius-pill: 999px;

      --container: 1180px;
      color-scheme: dark;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(ellipse 1000px 520px at 50% -8%, rgba(245, 197, 24, 0.12), transparent 62%),
        var(--bg);

      color: var(--text);
      font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

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

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
    }

    /* Bold condensed display type for every heading — the
       PosterAI headline voice. Anton has no italic face, so the
       browser synthesizes an oblique slant, matching the skewed
       "SELL FASTER" look. */
    h1, h2, h3,
    .dash-title, .hero h1 .highlight {
      font-family: "Anton", "Arial Narrow", sans-serif;
      font-style: italic;
      text-transform: uppercase;
      font-weight: 400;
    }

    /* =========================================================
       NAV
       ========================================================= */

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--border);
      background: rgba(10, 10, 10, 0.75);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 11px;
      font-family: Inter, sans-serif;
      font-weight: 800;
      letter-spacing: -0.02em;
      font-size: 18px;
      text-transform: none;
    }

    .brand-mark {
      width: 35px;
      height: 35px;
      border-radius: 11px;
      display: grid;
      place-items: center;
      box-shadow: 0 0 22px rgba(245, 197, 24, 0.3);
      overflow: hidden;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      color: var(--text-secondary);
      font-size: 14px;
      font-weight: 600;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-cta {
      border: 1px solid var(--border-strong);
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      color: var(--text);
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      box-shadow: var(--shadow-xs);
    }

    .nav-cta:hover {
      border-color: var(--brand);
    }

    /* =========================================================
       BUTTONS — white pill = primary action (matches PosterAI's
       "TAKE PHOTO"); yellow is reserved for outline/identity
       elements; purple only for the PosterAI cross-sell CTA.
       ========================================================= */

    .btn {
      border: 0;
      border-radius: var(--radius-pill);
      min-height: 50px;
      padding: 0 22px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: 0.18s ease;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      font-size: 14px;
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .btn-primary {
      background: #FFFFFF;
      color: var(--white-ink);
      box-shadow: 0 10px 26px rgba(255, 255, 255, 0.12);
    }

    .btn-primary:hover {
      background: var(--brand-hover);
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(255, 216, 77, 0.3);
    }

    .btn-secondary {
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      color: var(--text);
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-xs);
    }

    .btn-secondary:hover {
      border-color: var(--brand);
      transform: translateY(-1px);
    }

    /* The PosterAI cross-sell CTA gets the purple treatment —
       same role as the "Compose" button in the PosterAI app. */
    #posterai .btn-primary,
    .bridge-actions .btn-primary {
      background: var(--purple);
      color: #ffffff;
      box-shadow: 0 10px 26px rgba(139, 92, 246, 0.32);
    }

    #posterai .btn-primary:hover,
    .bridge-actions .btn-primary:hover {
      background: var(--purple-hover);
      box-shadow: 0 14px 30px rgba(157, 113, 248, 0.4);
    }

    /* =========================================================
       HERO
       ========================================================= */

    .hero {
      padding: 104px 0 72px;
      text-align: center;
      overflow: hidden;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(245, 197, 24, 0.4);
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      color: var(--brand);
      padding: 7px 14px;
      border-radius: var(--radius-pill);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: var(--shadow-xs);
      font-family: Inter, sans-serif;
      font-style: normal;
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      background: var(--brand);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.2);
    }

    .hero h1 {
      max-width: 890px;
      margin: 24px auto 20px;
      font-size: clamp(48px, 6.6vw, 84px);
      line-height: 0.92;
      letter-spacing: -0.01em;
    }

    .hero h1 .highlight {
      color: var(--brand);
      display: block;
    }

    .hero-copy {
      max-width: 670px;
      margin: 0 auto;
      font-size: 19px;
      line-height: 1.65;
      color: var(--text-secondary);
      font-family: Inter, sans-serif;
    }

    /* URL Scanner */

    .scanner {
      max-width: 780px;
      margin: 38px auto 0;
      padding: 8px;
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-pill);
      display: flex;
      align-items: center;
      box-shadow: var(--shadow-md);
      position: relative;
    }

    .scanner-icon {
      width: 45px;
      min-width: 45px;
      display: grid;
      place-items: center;
      color: var(--text-muted);
    }

    .scanner-icon svg {
      width: 20px;
      height: 20px;
    }

    .scanner input {
      flex: 1;
      min-width: 0;
      height: 52px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
      font-size: 15px;
      font-family: Inter, sans-serif;
    }

    .scanner input::placeholder {
      color: var(--text-muted);
    }

    .scanner .btn {
      min-height: 52px;
      white-space: nowrap;
    }

    .scanner-note {
      margin-top: 13px;
      color: var(--text-muted);
      font-size: 12px;
      font-family: Inter, sans-serif;
    }

    .scanner-note strong {
      color: var(--text-secondary);
    }

    .hero-mini-proof {
      margin: 29px auto 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 600;
      font-family: Inter, sans-serif;
    }

    .hero-mini-proof span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-mini-proof svg {
      width: 16px;
      height: 16px;
      color: var(--positive);
    }

    /* =========================================================
       PLATFORM MARQUEE — factual "works wherever reviews live"
       mentions, plain-text only (no reproduced logos/marks), so
       this never reads as an endorsement or partnership claim.
       ========================================================= */

    .marquee-section {
      padding: 34px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.015);
      overflow: hidden;
    }

    .marquee-label {
      text-align: center;
      font-family: Inter, sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 22px;
    }

    .marquee {
      position: relative;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    }

    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      gap: 64px;
      animation: marquee-scroll 32s linear infinite;
    }

    .marquee-section:hover .marquee-track {
      animation-play-state: paused;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: Inter, sans-serif;
      font-size: 21px;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: var(--text-secondary);
      white-space: nowrap;
      opacity: 0.75;
      transition: opacity 0.15s, color 0.15s;
    }

    .marquee-item:hover {
      opacity: 1;
      color: var(--text);
    }

    .marquee-item svg {
      width: 20px;
      height: 20px;
      color: var(--brand);
      flex: none;
    }

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

    @media (prefers-reduced-motion: reduce) {
      .marquee-track {
        animation: none;
      }
    }

    @media (max-width: 650px) {
      .marquee-track {
        gap: 40px;
      }
      .marquee-item {
        font-size: 16px;
      }
      .marquee-item svg {
        width: 16px;
        height: 16px;
      }
    }

    /* =========================================================
       DASHBOARD PREVIEW
       ========================================================= */

    .dashboard-section {
      padding: 25px 0 110px;
    }

    .dashboard-shell {
      max-width: 1080px;
      margin: 0 auto;
      padding: 13px;
      border: 1px solid var(--border-strong);
      border-radius: 28px;
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .dashboard-shell::before {
      content: "";
      position: absolute;
      width: 70%;
      height: 160px;
      left: 15%;
      bottom: -55px;
      background: rgba(245, 197, 24, 0.14);
      filter: blur(80px);
      z-index: -1;
    }

    .dashboard {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 19px;
      overflow: hidden;
      font-family: Inter, sans-serif;
    }

    .dash-top {
      min-height: 68px;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid var(--border);
      padding: 0 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .dash-product {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .product-logo {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      display: grid;
      place-items: center;
      background: var(--brand-light);
      color: var(--brand);
      font-weight: 900;
      font-size: 16px;
    }

    .dash-product strong {
      display: block;
      font-size: 14px;
      font-family: Inter, sans-serif;
    }

    .dash-product small {
      color: var(--text-muted);
      font-size: 11px;
    }

    .status-pill {
      background: var(--positive-light);
      color: var(--positive);
      border: 1px solid rgba(47, 227, 168, 0.3);
      border-radius: var(--radius-pill);
      padding: 6px 12px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .dash-content {
      padding: 22px;
    }

    .dash-title-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 18px;
    }

    .dash-kicker {
      color: var(--brand);
      font-size: 10px;
      font-weight: 850;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: Inter, sans-serif;
    }

    .dash-title {
      margin: 3px 0 0;
      font-size: 22px;
      letter-spacing: 0;
    }

    .dash-date {
      color: var(--text-muted);
      font-size: 11px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 12px;
    }

    .metric-card {
      background: var(--card-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 17px;
      box-shadow: var(--shadow-xs);
    }

    .metric-label {
      color: var(--text-muted);
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.055em;
    }

    .metric-number {
      margin-top: 8px;
      font-size: 31px;
      font-weight: 850;
      line-height: 1;
      letter-spacing: -0.02em;
      font-family: Inter, sans-serif;
    }

    .metric-number.red {
      color: var(--negative);
    }

    .metric-number.brand-color {
      color: var(--brand);
    }

    .metric-foot {
      margin-top: 8px;
      color: var(--text-secondary);
      font-size: 10px;
    }

    .metric-foot strong {
      color: var(--text);
    }

    .dash-main-grid {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 12px;
    }

    .panel {
      background: var(--card-glass);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 19px;
      box-shadow: var(--shadow-xs);
    }

    .panel-title-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      margin-bottom: 17px;
    }

    .panel-title {
      font-size: 12px;
      font-weight: 800;
    }

    .panel-sub {
      color: var(--text-muted);
      font-size: 9px;
    }

    /* Donut */

    .sentiment-wrap {
      display: flex;
      align-items: center;
      gap: 25px;
      min-height: 205px;
    }

    .donut {
      width: 145px;
      height: 145px;
      min-width: 145px;
      border-radius: 50%;
      background:
        conic-gradient(
          var(--negative) 0 63%,
          var(--neutral) 63% 76%,
          var(--positive) 76% 100%
        );
      position: relative;
      display: grid;
      place-items: center;
    }

    .donut::after {
      content: "";
      position: absolute;
      width: 103px;
      height: 103px;
      background: var(--card);
      border-radius: 50%;
    }

    .donut-center {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .donut-center strong {
      display: block;
      font-size: 27px;
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--negative);
      font-family: Inter, sans-serif;
    }

    .donut-center span {
      color: var(--text-muted);
      font-size: 8px;
      text-transform: uppercase;
      font-weight: 800;
    }

    .legend {
      flex: 1;
    }

    .legend-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 10px;
    }

    .legend-item:last-child {
      border: 0;
    }

    .legend-name {
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--text-secondary);
    }

    .legend-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }

    .legend-value {
      font-weight: 800;
    }

    /* Bars */

    .bars {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .bar-row {
      display: grid;
      grid-template-columns: 125px 1fr 32px;
      align-items: center;
      gap: 10px;
    }

    .bar-name {
      font-size: 9px;
      color: var(--text-secondary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .bar-track {
      height: 7px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: var(--radius-pill);
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      width: 0;
      border-radius: inherit;
      transition: width 1.1s cubic-bezier(.2,.8,.2,1);
    }

    .bar-fill.negative {
      background: var(--negative);
    }

    .bar-fill.warning {
      background: var(--warning);
    }

    .bar-fill.positive {
      background: var(--positive);
    }

    .bar-fill.neutral {
      background: var(--neutral);
    }

    .bar-value {
      font-size: 9px;
      font-weight: 800;
      text-align: right;
    }

    .opportunity-banner {
      margin-top: 12px;
      background: linear-gradient(135deg, rgba(245, 197, 24, 0.16) 0%, rgba(245, 197, 24, 0.04) 100%);
      border: 1px solid rgba(245, 197, 24, 0.3);
      border-radius: var(--radius);
      padding: 18px 19px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 15px;
    }

    .opportunity-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: var(--brand);
      color: var(--brand-ink);
    }

    .opportunity-icon svg {
      width: 20px;
    }

    .opportunity-banner small {
      display: block;
      color: var(--brand);
      text-transform: uppercase;
      font-size: 9px;
      font-weight: 850;
      letter-spacing: 0.06em;
      margin-bottom: 3px;
    }

    .opportunity-banner strong {
      display: block;
      font-size: 12px;
      font-family: Inter, sans-serif;
    }

    .confidence {
      border-radius: var(--radius-pill);
      padding: 6px 10px;
      color: var(--positive);
      background: var(--positive-light);
      font-size: 8px;
      font-weight: 850;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* =========================================================
       SECTIONS
       ========================================================= */

    .section {
      padding: 110px 0;
    }

    .section-white {
      background: rgba(255, 255, 255, 0.015);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section-heading {
      max-width: 720px;
      margin: 0 auto 58px;
      text-align: center;
    }

    .section-label {
      color: var(--brand);
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.08em;
      font-family: Inter, sans-serif;
    }

    .section-heading h2 {
      margin: 12px 0 14px;
      font-size: clamp(36px, 4.4vw, 54px);
      line-height: 1;
    }

    .section-heading p {
      color: var(--text-secondary);
      font-size: 17px;
      line-height: 1.65;
      margin: 0;
      font-family: Inter, sans-serif;
    }

    /* =========================================================
       REAL REPORT GALLERY
       ========================================================= */

    .report-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .report-gallery-item {
      margin: 0;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }

    .report-gallery-item:first-child {
      grid-column: 1 / -1;
    }

    .report-gallery-item img {
      display: block;
      width: 100%;
      height: auto;
      border-bottom: 1px solid var(--border);
    }

    .report-gallery-item figcaption {
      padding: 20px 22px 24px;
    }

    .report-gallery-item h3 {
      font-family: Inter, sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 8px;
    }

    .report-gallery-item p {
      color: var(--text-secondary);
      font-size: 14.5px;
      line-height: 1.6;
      margin: 0;
      font-family: Inter, sans-serif;
    }

    @media (max-width: 860px) {
      .report-gallery {
        grid-template-columns: 1fr;
      }
      .report-gallery-item:first-child {
        grid-column: auto;
      }
    }

    /* =========================================================
       HOW IT WORKS
       ========================================================= */

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

    .step {
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-xs);
      transition: border-color .15s, transform .12s;
    }

    .step:hover {
      border-color: var(--brand);
      transform: translateY(-2px);
    }

    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--brand-light);
      color: var(--brand);
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 25px;
      font-family: Inter, sans-serif;
    }

    .step h3 {
      margin: 0 0 10px;
      font-size: 21px;
    }

    .step p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.65;
      font-family: Inter, sans-serif;
    }

    .step-visual {
      height: 115px;
      margin-top: 25px;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .mini-browser {
      width: 82%;
      background: var(--card-glass-strong);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 9px;
      box-shadow: var(--shadow-sm);
    }

    .mini-browser-top {
      display: flex;
      gap: 4px;
      margin-bottom: 8px;
    }

    .mini-browser-top i {
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.25);
      border-radius: 50%;
    }

    .mini-line {
      height: 5px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.1);
      margin: 5px 0;
    }

    .mini-line.short {
      width: 55%;
    }

    .scan-visual {
      position: relative;
      width: 70px;
      height: 70px;
      border: 1px solid rgba(245, 197, 24, 0.4);
      background: var(--card-glass-strong);
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: var(--brand);
      box-shadow: var(--shadow-sm);
    }

    .scan-visual::after {
      content: "";
      position: absolute;
      left: 9px;
      right: 9px;
      height: 2px;
      background: var(--brand);
      box-shadow: 0 0 12px rgba(245, 197, 24, 0.8);
      animation: scan 2s infinite ease-in-out;
    }

    @keyframes scan {
      0%, 100% {
        top: 17px;
      }
      50% {
        top: 51px;
      }
    }

    .scan-visual svg {
      width: 28px;
    }

    .mini-result {
      width: 84%;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .mini-result div {
      background: var(--card-glass-strong);
      border: 1px solid var(--border);
      border-radius: 8px;
      height: 60px;
      padding: 8px;
    }

    .mini-result strong {
      font-size: 17px;
      display: block;
      font-family: Inter, sans-serif;
    }

    .mini-result span {
      color: var(--text-muted);
      font-size: 6px;
      text-transform: uppercase;
      font-weight: 800;
    }

    /* =========================================================
       INTELLIGENCE GRID
       ========================================================= */

    .intelligence-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .intel-card {
      border: 1px solid var(--border);
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border-radius: var(--radius-lg);
      padding: 27px;
      display: flex;
      gap: 19px;
      transition: 0.2s ease;
    }

    .intel-card:hover {
      transform: translateY(-2px);
      border-color: var(--border-strong);
      box-shadow: var(--shadow-sm);
    }

    .intel-icon {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 13px;
      display: grid;
      place-items: center;
    }

    .intel-icon svg {
      width: 21px;
      height: 21px;
    }

    .intel-icon.red {
      background: var(--negative-light);
      color: var(--negative);
    }

    .intel-icon.green {
      background: var(--positive-light);
      color: var(--positive);
    }

    .intel-icon.purple {
      background: var(--brand-light);
      color: var(--brand);
    }

    .intel-icon.orange {
      background: var(--warning-light);
      color: var(--warning);
    }

    .intel-card h3 {
      margin: 0 0 6px;
      font-size: 18px;
    }

    .intel-card p {
      color: var(--text-secondary);
      font-size: 13px;
      line-height: 1.6;
      margin: 0;
      font-family: Inter, sans-serif;
    }

    /* =========================================================
       EXTENSION CTA
       ========================================================= */

    .extension-box {
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      background:
        radial-gradient(circle at 25% 20%, rgba(245, 197, 24, 0.2), transparent 60%),
        #000000;
      border: 1px solid rgba(245, 197, 24, 0.22);
      color: var(--text);
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 460px;
      box-shadow: var(--shadow-lg);
    }

    .extension-copy {
      padding: 64px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .dark-label {
      color: var(--brand);
      text-transform: uppercase;
      font-size: 11px;
      letter-spacing: 0.08em;
      font-weight: 850;
      font-family: Inter, sans-serif;
    }

    .extension-copy h2 {
      font-size: clamp(38px, 4.4vw, 56px);
      line-height: 0.95;
      margin: 13px 0 17px;
    }

    .extension-copy p {
      color: var(--text-secondary);
      font-size: 16px;
      line-height: 1.7;
      max-width: 510px;
      margin: 0 0 28px;
      font-family: Inter, sans-serif;
    }

    .extension-copy .btn {
      align-self: flex-start;
    }

    .extension-note {
      color: var(--text-muted);
      font-size: 11px;
      margin-top: 13px;
      font-family: Inter, sans-serif;
    }

    .extension-visual {
      position: relative;
      background: radial-gradient(circle at center, rgba(245, 197, 24, 0.2), transparent 55%);
      display: grid;
      place-items: center;
      padding: 50px;
    }

    .extension-popup {
      width: min(100%, 340px);
      background: var(--card);
      color: var(--text);
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-lg);
      padding: 18px;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
      transform: rotate(2deg);
      font-family: Inter, sans-serif;
    }

    .popup-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      padding-bottom: 13px;
      margin-bottom: 14px;
    }

    .popup-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 850;
    }

    .popup-logo {
      width: 26px;
      height: 26px;
      background: var(--brand);
      color: var(--brand-ink);
      border-radius: 8px;
      display: grid;
      place-items: center;
      font-size: 11px;
    }

    .popup-page {
      padding: 11px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
    }

    .popup-page strong {
      font-size: 11px;
      display: block;
    }

    .popup-page span {
      color: var(--text-muted);
      font-size: 8px;
    }

    .popup-button {
      height: 42px;
      border-radius: var(--radius-pill);
      background: #FFFFFF;
      color: var(--white-ink);
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    /* =========================================================
       POSTERAI BRIDGE — purple is the moment here.
       ========================================================= */

    .bridge {
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
    }

    .bridge-flow {
      margin: 45px auto 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 13px;
      flex-wrap: wrap;
    }

    .flow-card {
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 16px 20px;
      min-width: 175px;
      box-shadow: var(--shadow-xs);
      font-family: Inter, sans-serif;
    }

    .flow-card small {
      display: block;
      color: var(--text-muted);
      text-transform: uppercase;
      font-size: 8px;
      letter-spacing: 0.08em;
      font-weight: 850;
      margin-bottom: 5px;
    }

    .flow-card strong {
      font-size: 13px;
    }

    .flow-arrow {
      color: var(--text-muted);
      font-size: 20px;
    }

    .poster-card {
      background: linear-gradient(135deg, #8B5CF6 0%, #6D3FE0 100%);
      color: #ffffff;
      border-color: transparent;
      box-shadow: 0 15px 30px rgba(139, 92, 246, 0.35);
    }

    .poster-card small {
      color: #E4D9FF;
    }

    .bridge h2 {
      font-size: clamp(38px, 4.8vw, 60px);
      line-height: 0.95;
      margin: 13px auto 17px;
    }

    .bridge > p {
      color: var(--text-secondary);
      max-width: 670px;
      margin: 0 auto;
      font-size: 17px;
      line-height: 1.7;
      font-family: Inter, sans-serif;
    }

    .bridge-actions {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* =========================================================
       FINAL CTA
       ========================================================= */

    .final-cta {
      padding: 0 0 110px;
    }

    .final-box {
      background: var(--card-glass);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-xl);
      padding: 70px 30px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    .final-box h2 {
      margin: 12px auto 15px;
      max-width: 690px;
      font-size: clamp(38px, 4.8vw, 58px);
      line-height: 0.96;
    }

    .final-box p {
      color: var(--text-secondary);
      max-width: 580px;
      margin: 0 auto 28px;
      font-size: 16px;
      font-family: Inter, sans-serif;
    }

    /* =========================================================
       FOOTER
       ========================================================= */

    footer {
      border-top: 1px solid var(--border);
      background: transparent;
    }

    .footer-inner {
      min-height: 110px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .footer-copy {
      color: var(--text-muted);
      font-size: 11px;
      font-family: ui-monospace, "SF Mono", Menlo, monospace;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-links {
      display: flex;
      gap: 22px;
      color: var(--text-secondary);
      font-size: 12px;
      font-weight: 600;
      font-family: Inter, sans-serif;
    }

    .footer-links a:hover {
      color: var(--brand);
    }

    /* =========================================================
       DEMO MODAL
       ========================================================= */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(7px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-backdrop.show {
      display: flex;
    }

    .modal {
      width: min(100%, 480px);
      background: var(--card);
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
      animation: modalIn .22s ease;
      font-family: Inter, sans-serif;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(10px) scale(.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--brand-light);
      color: var(--brand);
      margin-bottom: 18px;
    }

    .modal h3 {
      font-size: 24px;
      margin: 0 0 8px;
    }

    .modal p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.6;
    }

    .modal-url {
      margin: 19px 0;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
      padding: 12px 14px;
      border-radius: var(--radius-sm);
      color: var(--text-secondary);
      font-size: 12px;
      word-break: break-all;
    }

    .modal-status {
      min-height: 16px;
      margin: -6px 0 14px;
      font-size: 12.5px;
      color: var(--brand);
    }

    .modal-actions {
      display: flex;
      gap: 9px;
    }

    .modal-actions .btn {
      flex: 1;
    }

    /* =========================================================
       RESPONSIVE
       ========================================================= */

    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hero {
        padding-top: 78px;
      }

      .metric-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .dash-main-grid {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .intelligence-grid {
        grid-template-columns: 1fr;
      }

      .extension-box {
        grid-template-columns: 1fr;
      }

      .extension-copy {
        padding: 50px 38px;
      }

      .extension-visual {
        min-height: 370px;
      }
    }

    @media (max-width: 650px) {
      .container {
        width: min(calc(100% - 26px), var(--container));
      }

      .nav {
        height: 68px;
      }

      .nav-inner {
        gap: 10px;
      }

      .brand {
        font-size: 15px;
        white-space: nowrap;
      }

      .brand-mark {
        width: 30px;
        height: 30px;
        border-radius: 9px;
      }

      .nav-cta {
        padding: 9px 12px;
        font-size: 11px;
        white-space: nowrap;
        flex: none;
      }

      .hero {
        padding: 65px 0 48px;
      }

      .hero h1 {
        font-size: 44px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .scanner {
        display: block;
        padding: 8px;
        border-radius: var(--radius-lg);
      }

      .scanner-icon {
        display: none;
      }

      .scanner input {
        width: 100%;
        padding: 0 10px;
      }

      .scanner .btn {
        width: 100%;
      }

      .hero-mini-proof {
        gap: 10px 16px;
      }

      .dashboard-shell {
        padding: 6px;
        border-radius: 20px;
      }

      .dash-top {
        min-height: auto;
        padding: 14px 16px;
        gap: 8px 10px;
        flex-wrap: wrap;
      }

      .dash-product {
        min-width: 0;
      }

      .dash-product small {
        display: block;
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .status-pill {
        white-space: nowrap;
        font-size: 9px;
        padding: 6px 9px;
        flex: none;
        margin-left: auto;
      }

      .dash-content {
        padding: 13px;
      }

      .dash-title-row {
        display: block;
      }

      .dash-date {
        margin-top: 5px;
      }

      .metric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
      }

      .metric-card {
        padding: 13px;
      }

      .metric-number {
        font-size: 25px;
      }

      .sentiment-wrap {
        flex-direction: column;
      }

      .bar-row {
        grid-template-columns: 90px 1fr 28px;
      }

      .opportunity-banner {
        grid-template-columns: auto 1fr;
      }

      .confidence {
        grid-column: 2;
        justify-self: start;
      }

      .section {
        padding: 80px 0;
      }

      .section-heading {
        margin-bottom: 38px;
      }

      .extension-copy {
        padding: 42px 25px;
      }

      .extension-visual {
        padding: 35px 25px;
      }

      .flow-arrow {
        transform: rotate(90deg);
        width: 100%;
      }

      .bridge-flow {
        flex-direction: column;
      }

      .flow-card {
        width: 100%;
      }

      .final-box {
        padding: 50px 20px;
      }

      .footer-inner {
        padding: 28px 0;
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* =========================================================
   CONTENT / ARTICLE PAGES
   Shared across how-it-works, features, competitor-analysis,
   review-analysis, customer-review-analysis, competitive-
   intelligence, product-research, review-sentiment-analysis,
   what-is-review-x-ray, privacy, terms, contact.
   ========================================================= */

.breadcrumbs {
  padding: 18px 0;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span.sep { margin: 0 8px; opacity: .5; }
.breadcrumbs span.current { color: var(--text-secondary); }

.page-hero {
  padding: 40px 0 56px;
  border-bottom: 1px solid var(--border);
}
.page-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: .98;
  max-width: 900px;
  margin-bottom: 18px;
}
.page-lede {
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 68ch;
}
.page-lede strong { color: var(--text); font-weight: 700; }

.prose {
  max-width: 760px;
  padding: 56px 0;
  font-family: Inter, sans-serif;
}
.prose + .prose { padding-top: 0; }
.prose h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.prose h2:not(:first-child) { margin-top: 8px; }
.prose h3 {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: none;
  font-style: normal;
  color: var(--text);
  margin: 28px 0 10px;
}
.prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.prose p strong { color: var(--text); }
.prose ul, .prose ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--brand); }
.prose a:not(.btn) { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose a.btn-primary { color: var(--white-ink); }
.prose a.btn-secondary { color: var(--text); }
.prose blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--brand);
  background: var(--card-glass);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  color: var(--text);
  font-style: italic;
}
.section-divider { border: 0; border-top: 1px solid var(--border); margin: 0; }

.callout {
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--card-glass);
  border: 1px solid var(--border-strong);
}
.callout.accent { border-color: rgba(245, 197, 24, 0.3); background: var(--brand-lighter); }
.callout p { margin: 0; color: var(--text); }
.callout .k {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 36px;
}
@media (max-width: 700px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: var(--card-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.pillar-card h3 { margin-top: 0; font-size: 15.5px; }
.pillar-card p { font-size: 14px; margin-bottom: 0; color: var(--text-secondary); line-height: 1.6; }
.pillar-card .n { font-family: ui-monospace, monospace; color: var(--brand); font-size: 12px; display: block; margin-bottom: 8px; }

.faq { margin: 20px 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.faq-item p {
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.inline-cta {
  margin: 40px 0 8px;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(245, 197, 24, 0.02));
  border: 1px solid rgba(245, 197, 24, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.inline-cta h3 { margin: 0 0 4px; font-size: 20px; }
.inline-cta p { margin: 0; color: var(--text-secondary); font-size: 14px; }

.legal-page .prose { max-width: 820px; }
.legal-page .prose h2 { font-size: 22px; margin-top: 36px; }
.legal-meta { color: var(--text-muted); font-size: 13px; font-family: ui-monospace, monospace; }
.placeholder-note {
  display: inline-block;
  background: var(--warning-light);
  color: var(--warning);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
}

.related-links {
  padding: 40px 0 70px;
}
.related-links h2 { font-size: 20px; margin-bottom: 16px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 800px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 550px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  background: var(--card-glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: Inter, sans-serif;
  transition: border-color .15s, transform .12s;
}
.related-card:hover { border-color: var(--brand); transform: translateY(-1px); }
.related-card b { display: block; font-size: 14px; margin-bottom: 4px; color: var(--text); }
.related-card span { font-size: 12.5px; color: var(--text-muted); }

/* =========================================================
   SITEMAP FOOTER (multi-page site — richer than the single
   landing-page footer)
   ========================================================= */

footer { padding: 56px 0 32px; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
@media (max-width: 800px) {
  .footer-cols { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}
.footer-col-title {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
