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

  :root {
    --ink:     #111111;
    --ink-2:   #444444;
    --ink-3:   #888888;
    --border:  #e8e8e8;
    --surface: #f8f7f5;
    --gold:    #c8a050;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-logo:    'Cinzel', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ── Buttons ── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px; font-weight: 500; cursor: pointer;
    transition: opacity 0.15s, background 0.15s;
    text-decoration: none; white-space: nowrap;
  }
  .btn--dark  { background: var(--ink); color: #fff; }
  .btn--dark:hover { opacity: 0.82; }
  .btn--light { background: #fff; color: var(--ink); }
  .btn--light:hover { opacity: 0.9; }
  .btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
  .btn--ghost:hover { border-color: var(--ink); }
  .btn--sm  { padding: 0.5rem 1rem; font-size: 0.875rem; }
  .btn--lg  { padding: 0.875rem 2rem; font-size: 1rem; }

  /* ── Section helpers ── */
  .section-label {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; line-height: 1.15; letter-spacing: -0.01em;
    margin-bottom: 1rem;
  }
  .section-sub { font-size: 1.0625rem; color: var(--ink-2); max-width: 520px; }

  /* ── Nav ── */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    isolation: isolate;
  }
  .nav__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    height: 5.75rem; display: flex; align-items: center; gap: 2rem;
  }
  .nav__logo {
    font-family: var(--font-logo); font-size: 1.375rem;
    font-weight: 600; letter-spacing: -0.01em; flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .nav__logo-img { height: 4.6875rem; width: auto; display: block; }
  .nav__links { display: flex; gap: 1.75rem; flex: 1; }
  .nav__link { font-size: 0.875rem; color: var(--ink-2); transition: color 0.15s; }
  .nav__link:hover { color: var(--ink); }
  .nav__cta { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
  .nav__signin { font-size: 0.875rem; color: var(--ink-2); }
  .nav__signin:hover { color: var(--ink); }

  /* ── Hero ── */
  .hero {
    min-height: 88vh;
    padding: 6rem 2rem;
    background: #fff;
    display: flex; align-items: center;
    /* position + z-index creates a stacking context that contains all the
       animated art frames, keeping them below the sticky nav (z-index:100) */
    position: relative;
    z-index: 0;
  }
  .hero__layout {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .hero__inner { position: relative; z-index: 1; }
  .hero__kicker {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
  }
  .hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 5rem);
    font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }
  .hero__headline em { font-style: italic; color: var(--gold); }
  .hero__sub {
    font-size: 1.0625rem; color: var(--ink-2); line-height: 1.65;
    max-width: 480px; margin-bottom: 2.5rem;
  }
  .hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
  .hero__trial-note { font-size: 0.8125rem; color: var(--ink-3); }

  /* ── Artwork collage ── */
  .hero__collage {
    position: relative;
    height: 560px;
    pointer-events: none;
  }

  /* Per-frame rotation read from CSS vars so .hero__collage--<variant>
     modifiers can change the tilt without redeclaring keyframes.
     Default values match the original homepage layout. */
  .hero__collage {
    --rot-a: -2.5deg;
    --rot-b:  1.8deg;
    --rot-c: -1.2deg;
    --rot-d:  2.8deg;
    --rot-e: -3.2deg;
  }
  @keyframes float-a {
    0%, 100% { transform: rotate(var(--rot-a)) translateY(0px); }
    50%       { transform: rotate(var(--rot-a)) translateY(-14px); }
  }
  @keyframes float-b {
    0%, 100% { transform: rotate(var(--rot-b)) translateY(0px); }
    50%       { transform: rotate(var(--rot-b)) translateY(-10px); }
  }
  @keyframes float-c {
    0%, 100% { transform: rotate(var(--rot-c)) translateY(0px); }
    50%       { transform: rotate(var(--rot-c)) translateY(-18px); }
  }
  @keyframes float-d {
    0%, 100% { transform: rotate(var(--rot-d)) translateY(0px); }
    50%       { transform: rotate(var(--rot-d)) translateY(-8px); }
  }
  @keyframes float-e {
    0%, 100% { transform: rotate(var(--rot-e)) translateY(0px); }
    50%       { transform: rotate(var(--rot-e)) translateY(-12px); }
  }

  /* Frame shell — sizes itself around the image, no fixed dimensions */
  .art-frame {
    position: absolute;
    display: inline-block; /* shrink-wraps the mat */
    border-radius: 3px;
    /* Per-frame color overrides below; drop shadow shared here */
    box-shadow: 0 20px 50px rgba(0,0,0,0.28), 0 6px 16px rgba(0,0,0,0.14);
  }
  .art-frame__mat {
    padding: 10px;
    background: #f9f5ee;
    line-height: 0; /* kills phantom gap below img */
  }

  /* ── Frame colour variants ──
     Pattern: outer moulding → narrow dark inner lip → outer moulding again
     Mat background shifts subtly to complement each frame tone            */

  /* a — Gold (warm classic) */
  .art-frame--a {
    box-shadow:
            0 0 0 6px #c8a050,
            0 0 0 9px #7a5c20,
            0 0 0 11px #c8a050,
            0 20px 50px rgba(0,0,0,0.28), 0 6px 16px rgba(0,0,0,0.14);
  }
  .art-frame--a .art-frame__mat { background: #fdf9f0; }

  /* b — Ebony / black */
  .art-frame--b {
    box-shadow:
            0 0 0 6px #2a2a2a,
            0 0 0 9px #000,
            0 0 0 11px #3a3a3a,
            0 20px 50px rgba(0,0,0,0.35), 0 6px 16px rgba(0,0,0,0.18);
  }
  .art-frame--b .art-frame__mat { background: #f5f5f5; }

  /* c — White / bright gallery */
  .art-frame--c {
    box-shadow:
            0 0 0 6px #e8e8e8,
            0 0 0 9px #bbb,
            0 0 0 11px #f0f0f0,
            0 20px 50px rgba(0,0,0,0.22), 0 6px 16px rgba(0,0,0,0.10);
  }
  .art-frame--c .art-frame__mat { background: #ffffff; }

  /* d — Walnut / warm brown */
  .art-frame--d {
    box-shadow:
            0 0 0 6px #7a4a28,
            0 0 0 9px #3d2010,
            0 0 0 11px #8f5830,
            0 20px 50px rgba(0,0,0,0.30), 0 6px 16px rgba(0,0,0,0.15);
  }
  .art-frame--d .art-frame__mat { background: #fdf6ee; }

  /* e — Silver / grey */
  .art-frame--e {
    box-shadow:
            0 0 0 6px #909090,
            0 0 0 9px #555,
            0 0 0 11px #a8a8a8,
            0 20px 50px rgba(0,0,0,0.25), 0 6px 16px rgba(0,0,0,0.12);
  }
  .art-frame--e .art-frame__mat { background: #f7f7f7; }
  /* Image fills its natural size — max-width on each variant controls scale */
  .art-frame__img {
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.9);
  }

  /* ── Per-frame: only position, max-width, animation ── */

  /* Large portrait — back left */
  .art-frame--a {
    max-width: 210px;
    top: 30px; left: 0px;
    animation: float-a 9s ease-in-out infinite;
    z-index: 1;
  }

  /* Landscape — top right */
  .art-frame--b {
    max-width: 250px;
    top: 10px; right: 0px;
    animation: float-b 11s ease-in-out infinite;
    z-index: 2;
  }

  /* Center portrait — prominent, front */
  .art-frame--c {
    max-width: 200px;
    top: 170px; left: calc(50% - 100px);
    animation: float-c 13s ease-in-out infinite;
    z-index: 3;
  }

  /* Small square — bottom right */
  .art-frame--d {
    max-width: 165px;
    bottom: 20px; right: 10px;
    animation: float-d 8s ease-in-out infinite;
    z-index: 2;
  }

  /* Fifth frame — lower left, fills the gap */
  .art-frame--e {
    max-width: 155px;
    bottom: 10px; left: 20px;
    animation: float-e 10s ease-in-out infinite;
    animation-delay: -3s;
    z-index: 1;
  }

  /* ── Per-page collage variants ──────────────────────────────────────────
     Each landing page renders the same 5-frame collage but with a unique
     modifier class on .hero__collage. Override position, size, z-index,
     and per-frame rotation (via the --rot-{a..e} vars declared on the
     base .hero__collage) so each page has its own visual fingerprint
     while reusing the same DOM and animation infrastructure. */

  /* ── Cooperative gallery — "salon hang" ─────────────────────────────────
     Walnut frame promoted to top z-index; tighter cluster; sharper tilts
     to evoke a busy member-owned wall. */
  .hero__collage--coop { --rot-a: -4deg; --rot-b: 3deg; --rot-c: -1deg; --rot-d: 1.5deg; --rot-e: -2.5deg; }
  .hero__collage--coop .art-frame--a { max-width: 220px; top:  40px; left:   10px; right: auto; bottom: auto; z-index: 1; }
  .hero__collage--coop .art-frame--b { max-width: 220px; top:   0px; right:  20px; left:  auto; bottom: auto; z-index: 2; }
  .hero__collage--coop .art-frame--c { max-width: 180px; top: 230px; left:   40px; right: auto; bottom: auto; z-index: 1; }
  .hero__collage--coop .art-frame--d { max-width: 200px; top: 160px; right:   0px; left:  auto; bottom: auto; z-index: 3; }
  .hero__collage--coop .art-frame--e { max-width: 150px; bottom:  0px; left: 130px; top:  auto; right: auto; z-index: 2; }

  /* ── POS Sync — "diagonal stream" ───────────────────────────────────────
     Ebony frame promoted to top z-index; pieces tracking diagonally from
     top-left to bottom-right. Suggests movement / sync. */
  .hero__collage--pos { --rot-a: -3deg; --rot-b: 1deg; --rot-c: -1deg; --rot-d: 4deg; --rot-e: -2deg; }
  .hero__collage--pos .art-frame--a { max-width: 200px; top:   0px; left:   0px; right: auto; bottom: auto; z-index: 1; }
  .hero__collage--pos .art-frame--b { max-width: 230px; top: 100px; left: 110px; right: auto; bottom: auto; z-index: 3; }
  .hero__collage--pos .art-frame--c { max-width: 180px; top:  50px; right:   0px; left:  auto; bottom: auto; z-index: 2; }
  .hero__collage--pos .art-frame--d { max-width: 170px; bottom: 40px; left:  30px; top:  auto; right: auto; z-index: 2; }
  .hero__collage--pos .art-frame--e { max-width: 160px; bottom:  0px; right: 30px; top:  auto; left:  auto; z-index: 1; }

  /* ── Consignment — "orderly grid" ───────────────────────────────────────
     White frame center-stage at top z-index; gentler tilts; symmetric
     positions. Suggests calm tracking and organization. */
  .hero__collage--consign { --rot-a: -1.5deg; --rot-b: 1.2deg; --rot-c: -0.5deg; --rot-d: 1.5deg; --rot-e: -1.5deg; }
  .hero__collage--consign .art-frame--a { max-width: 200px; top:  30px; left:  20px; right: auto; bottom: auto; z-index: 1; }
  .hero__collage--consign .art-frame--b { max-width: 200px; top:  30px; right: 20px; left:  auto; bottom: auto; z-index: 2; }
  .hero__collage--consign .art-frame--c { max-width: 200px; top: 210px; left: calc(50% - 100px); right: auto; bottom: auto; z-index: 3; }
  .hero__collage--consign .art-frame--d { max-width: 170px; bottom: 30px; left: 30px; top:  auto; right: auto; z-index: 1; }
  .hero__collage--consign .art-frame--e { max-width: 170px; bottom: 30px; right: 30px; top:  auto; left:  auto; z-index: 1; }

  /* ── QR Codes — "asymmetric scan" ───────────────────────────────────────
     White frame promoted; biggest tilts of any variant; uneven heights to
     evoke a phone-camera framing the wall from a casual angle. */
  .hero__collage--qr { --rot-a: -6deg; --rot-b: 5deg; --rot-c: -2deg; --rot-d: 4deg; --rot-e: -5deg; }
  .hero__collage--qr .art-frame--a { max-width: 200px; top:  80px; left:   0px; right: auto; bottom: auto; z-index: 1; }
  .hero__collage--qr .art-frame--b { max-width: 240px; top:   0px; right:  30px; left:  auto; bottom: auto; z-index: 2; }
  .hero__collage--qr .art-frame--c { max-width: 180px; top: 250px; left:  50px; right: auto; bottom: auto; z-index: 3; }
  .hero__collage--qr .art-frame--d { max-width: 170px; bottom: 30px; right: 0px; left:  auto; top:  auto; z-index: 1; }
  .hero__collage--qr .art-frame--e { max-width: 160px; bottom:  0px; left: 160px; right: auto; top:  auto; z-index: 2; }

  /* ── About page ────────────────────────────────────────────────────────
     The /about page uses the same hero/section frame as the marketing
     pages but with a single feature photo in place of the floating
     collage, plus a few extra components: full-bleed photo break, a
     side-by-side founder card, and a longer-form prose section. */

  /* Hero photo slot — replaces the .hero__collage on /about with a
     single tall image so the wall doesn't feel as "salesy" as the
     animated frames on the landing pages. */
  .hero__photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .hero__photo img {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow:
            0 0 0 6px #c8a050,
            0 0 0 9px #7a5c20,
            0 0 0 11px #c8a050,
            0 30px 80px rgba(0,0,0,0.30), 0 8px 24px rgba(0,0,0,0.16);
  }

  /* Full-bleed photo break section — usually sits between two prose
     sections to give the page some breathing room. */
  .photo-break {
    width: 100%;
    background: var(--ink);
    overflow: hidden;
  }
  .photo-break img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    opacity: 0.95;
  }

  /* Prose section — long-form text with a constrained max-width so the
     reading column stays comfortable. */
  .prose {
    padding: 6rem 2rem;
    background: var(--bg);
  }
  .prose__inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .prose__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }
  .prose__inner p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-2);
    margin-bottom: 1.25rem;
  }
  .prose__inner p:last-child { margin-bottom: 0; }
  .prose__inner p strong { color: var(--ink); font-weight: 600; }
  .prose--surface { background: var(--surface); }

  /* Founder card — portrait + short bio side by side. Stacks on
     narrow viewports. */
  .founder {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
  }
  .founder__photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .founder__body p { margin-bottom: 0.75rem; }
  .founder__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .founder__role {
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
  }
  @media (max-width: 700px) {
    .founder { grid-template-columns: 1fr; padding: 1.5rem; text-align: center; }
    .founder__photo { margin: 0 auto; }
  }

  /* ── Customer logo strip ──────────────────────────────────────────────
     Slim band under the homepage hero (and reusable on the showcase
     page) showing the working galleries that run on Primatura. Logos
     are grayscale by default so they read as a unified credibility
     strip rather than a competing visual; hover brings color back. */
  .customers {
    padding: 3rem 2rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .customers__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
  .customers__label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--ink-3);
    margin-bottom: 1.75rem;
  }
  .customers__strip {
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 3rem;
  }
  .customers__logo {
    display: inline-flex; align-items: center;
    max-height: 54px;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.2s, filter 0.2s;
  }
  .customers__logo:hover { opacity: 1; filter: grayscale(0%); }
  .customers__logo img { max-height: 54px; width: auto; display: block; }

  /* ── Gallery showcase page ────────────────────────────────────────────
     Layout for /galleries-using-primatura. 2×2 grid of cards on
     desktop, single column on mobile. Each card: logo above, name
     below, short description, outbound "Visit gallery" link. */
  .galleries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
  }
  .gallery-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  }
  .gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--ink-3);
  }
  .gallery-card__logo {
    height: 80px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.75rem;
  }
  .gallery-card__logo img {
    max-height: 80px; max-width: 240px;
    width: auto; height: auto;
    display: block;
  }
  .gallery-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }
  .gallery-card__body {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 1.75rem;
    flex: 1;
  }
  .gallery-card__link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.875rem; font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
    transition: border-color 0.15s, color 0.15s;
  }
  .gallery-card__link:hover {
    border-bottom-color: var(--gold);
    color: var(--ink);
  }
  @media (max-width: 760px) {
    .galleries-grid { grid-template-columns: 1fr; }
  }

  /* ── Features ── */
  .features { padding: 7rem 2rem; background: var(--surface); }
  .features__inner { max-width: 1200px; margin: 0 auto; }
  .features__inner .section-title { margin-bottom: 3.5rem; }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 10px; padding: 1.75rem;
    transition: box-shadow 0.2s;
  }
  .feature-card--highlight {
    border-color: var(--gold);
    border-width: 2px;
    background: #fdf9f2;
    box-shadow: 0 2px 16px rgba(200, 160, 80, 0.12);
    position: relative;
    overflow: hidden;
  }
  .feature-card--highlight::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #e8b860, var(--gold));
  }
  .feature-card--highlight .feature-card__icon {
    background: rgba(200, 160, 80, 0.12);
    border-color: rgba(200, 160, 80, 0.35);
  }
  @keyframes card-vibrate {
    0%   { transform: translateX(0) rotate(0deg); }
    10%  { transform: translateX(-5px) rotate(-0.6deg); }
    20%  { transform: translateX(5px) rotate(0.6deg); }
    30%  { transform: translateX(-4px) rotate(-0.4deg); }
    40%  { transform: translateX(4px) rotate(0.4deg); }
    50%  { transform: translateX(-2px) rotate(-0.2deg); }
    60%  { transform: translateX(2px) rotate(0.2deg); }
    70%  { transform: translateX(-1px); }
    80%  { transform: translateX(1px); }
    90%  { transform: translateX(0); }
    100% { transform: translateX(0) rotate(0deg); }
  }
  .feature-card--highlight.card-vibrating {
    animation: card-vibrate 0.55s ease-in-out;
  }
  .feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
  .feature-card__icon {
    width: 2.5rem; height: 2.5rem; border-radius: 8px;
    background: var(--surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); margin-bottom: 1.125rem;
  }
  .feature-card__title {
    font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem;
  }
  .feature-card__body { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6; }
  /* "Read more" style affordance on a card whose body links to a deeper
     landing page. Sits on its own line below the body copy, picks up the
     gold accent so it reads as clickable at a glance, underlines on hover. */
  .feature-card__link {
    display: inline-flex; align-items: center; gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
  }
  .feature-card__link:hover {
    border-bottom-color: var(--gold);
    color: var(--ink);
  }
  .feature-card__coming-soon {
    display: inline-block; font-size: 0.65rem; font-weight: 500;
    padding: 0.15rem 0.5rem; border-radius: 20px;
    background: #fef9c3; color: #854d0e;
    vertical-align: middle; margin-left: 0.4rem;
    letter-spacing: 0.03em; font-family: var(--font-body);
  }

  /* ── Screenshots ── */
  .screenshots { padding: 7rem 2rem; background: #fff; }
  .screenshots__inner { max-width: 1200px; margin: 0 auto; }
  .screenshots__inner .section-title { margin-bottom: 0.5rem; }
  .screenshots__inner .section-sub { margin-bottom: 3.5rem; }

  .screenshots__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .screenshot-block--wide   { grid-column: 1 / -1; }
  /* The mobile capture sits in its own full-width row so the phone bezel
     stays centered instead of hugging one column. The .screenshot__frame--phone
     max-width keeps it from stretching. */
  .screenshot-block--mobile { grid-column: 1 / -1; text-align: center; }
  .screenshot-block--mobile .screenshot-block__caption {
    align-items: center; max-width: 540px; margin: 0 auto;
  }

  .screenshot__placeholder {
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: 12px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: border-color 0.15s;
  }
  .screenshot__placeholder:hover { border-color: var(--gold); }
  .screenshot__placeholder--mobile {
    aspect-ratio: 9/16;
    max-height: 500px;
  }
  .screenshot__placeholder-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.75rem; text-align: center; padding: 2rem;
    color: var(--ink-3);
  }
  .screenshot__placeholder-label {
    font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--ink-2);
  }
  .screenshot__placeholder-hint {
    font-size: 0.875rem; color: var(--ink-3); max-width: 300px; line-height: 1.5;
  }

  /* Real-screenshot frames — constrain the image, signal "this is a UI
     mockup, not live data" via faux browser/device chrome. */
  .screenshot__frame {
    position: relative;
    margin: 0 0 1.25rem;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow:
      0 18px 36px -20px rgba(15, 15, 15, 0.35),
      0 4px 10px -4px rgba(15, 15, 15, 0.08);
  }

  /* Browser chrome: traffic-light dots in a light bar above the image. */
  .screenshot__frame--browser {
    aspect-ratio: 16/10;
    padding-top: 30px;
    background:
      linear-gradient(to bottom, #ececef 0 30px, transparent 30px),
      #fff;
    border: 1px solid #e5e5e7;
  }
  .screenshot__frame--browser::before {
    content: "";
    position: absolute;
    top: 11px; left: 14px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow:
      16px 0 0 #febc2e,
      32px 0 0 #28c840;
    z-index: 1;
  }

  /* Phone chrome: dark bezel + rounded corners. */
  .screenshot__frame--phone {
    aspect-ratio: 9/19.5;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    background: #1a1a1a;
    border-radius: 28px;
    border: 1px solid #2a2a2a;
    padding: 10px;
  }

  .screenshot__img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .screenshot__frame--phone .screenshot__img {
    object-fit: cover;
    border-radius: 20px;
  }

  .screenshot-block__caption {
    display: flex; flex-direction: column; gap: 0.25rem;
  }
  .screenshot-block__caption strong {
    font-size: 1rem; font-weight: 500; color: var(--ink);
  }
  .screenshot-block__caption span {
    font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6;
  }

  @media (max-width: 760px) {
    .screenshots__grid { grid-template-columns: 1fr; }
    .screenshot-block--wide { grid-column: 1; }
  }

  /* ── Pricing (single tier) ──
     Scope under .pricing__inner to outweigh the later-declared
     .pricing__grid rule (which would otherwise lay the lone card out
     in the first of three grid columns, pinning it to the left). */
  .pricing__inner .pricing__grid--single {
    display: flex; justify-content: center;
  }
  .pricing__inner .pricing__grid--single .pricing-card {
    max-width: 980px; width: 100%;
    padding: 3rem;
  }
  .pricing__grid--single .pricing-card__header {
    display: flex !important; align-items: baseline; gap: 1.5rem;
    flex-wrap: wrap; margin-bottom: 2rem !important;
    padding-bottom: 2rem; border-bottom: 1px solid var(--border);
  }
  .pricing__grid--single .pricing-card__name {
    font-size: 1rem; margin-bottom: 0;
  }
  .pricing__grid--single .pricing-card__price {
    margin-bottom: 0;
  }
  .pricing__grid--single .pricing-card__billed {
    margin-left: auto;
  }
  .pricing-card__features--two-col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 2.5rem;
    margin-bottom: 2rem;
    flex-direction: unset;
  }
  .pricing-card__features--two-col li {
    font-size: 0.9375rem;
  }
  .pricing-card__footnote {
    text-align: center; font-size: 0.8125rem;
    color: var(--ink-3); margin-top: 1rem;
  }
  @media (max-width: 760px) {
    .pricing__inner .pricing__grid--single .pricing-card { padding: 2rem; }
  }
  @media (max-width: 480px) {
    .pricing-card__features--two-col { grid-template-columns: 1fr; }
  }

  /* ── Pricing ── */
  .pricing { padding: 7rem 2rem; }
  .pricing__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
  .pricing__inner .section-title { margin-bottom: 0.75rem; }
  /* Center the sub copy (block via max-width) and the interval toggle
     (a flex row that's otherwise left-anchored). */
  .pricing__inner .section-sub  { margin-left: auto; margin-right: auto; }
  .pricing__inner .interval-toggle {
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .interval-toggle {
    display: flex; align-items: center; gap: 0.5rem;
    margin: 1.5rem 0 3rem;
  }
  .interval-btn {
    padding: 0.4rem 1.25rem; border-radius: 20px;
    border: 1.5px solid var(--border); background: #fff;
    font-size: 0.875rem; cursor: pointer; transition: all 0.15s;
    font-family: var(--font-body);
  }
  .interval-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }
  .interval-save { font-size: 0.8125rem; color: #16a34a; font-weight: 500; margin-left: 0.5rem; }

  .pricing__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }

  .pricing-card {
    border: 1.5px solid var(--border); border-radius: 12px;
    padding: 2rem; position: relative; display: flex; flex-direction: column;
    /* Reset alignment so the centered .pricing__inner doesn't cascade
       into the card's left-aligned feature list. */
    text-align: left;
  }
  .pricing-card--featured {
    border-color: var(--ink); background: #fafaf8;
  }
  .pricing-card__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--ink); color: #fff; font-size: 0.75rem; font-weight: 500;
    padding: 0.25rem 0.875rem; border-radius: 20px; white-space: nowrap;
  }
  .pricing-card__header { margin-bottom: 1.5rem; }
  .pricing-card__name { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); margin-bottom: 0.75rem; }
  .pricing-card__price { display: flex; align-items: baseline; gap: 0.2rem; margin-bottom: 0.25rem; }
  .pricing-card__amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 600; line-height: 1; letter-spacing: -0.02em; }
  .pricing-card__per { font-size: 0.9375rem; color: var(--ink-2); }
  .pricing-card__billed { font-size: 0.8125rem; color: var(--ink-3); }

  .pricing-card__features {
    list-style: none; display: flex; flex-direction: column;
    gap: 0.625rem; flex: 1; margin-bottom: 2rem;
  }
  .pricing-card__features li {
    font-size: 0.9375rem; color: var(--ink-2);
    display: flex; align-items: center; gap: 0.625rem;
  }
  .pricing-card__features li::before {
    content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0;
  }
  /* AI feature rows — the ✦ prefix replaces the ✓ checkmark */
  .pricing-card__features li:has(> *:first-child) { }
  .pricing-card--featured .pricing-card__features li[data-ai],
  .pricing-card__features li.ai-feature { color: var(--ink-1); font-weight: 500; }

  .pricing-card__cta {
    display: block; text-align: center; padding: 0.75rem;
    border: 1.5px solid var(--ink); border-radius: 8px;
    font-size: 0.9375rem; font-weight: 500;
    transition: all 0.15s;
  }
  .pricing-card__cta:hover { background: var(--ink); color: #fff; }
  .pricing-card__cta--featured { background: var(--ink); color: #fff; }
  .pricing-card__cta--featured:hover { opacity: 0.85; }

  /* ── FAQ ── */
  .faq { padding: 7rem 2rem; background: var(--surface); }
  .faq__inner { max-width: 760px; margin: 0 auto; }
  .faq__inner .section-title { margin-bottom: 3rem; }

  .faq__list { display: flex; flex-direction: column; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }

  .faq-item__q {
    padding: 1.25rem 0; font-size: 1rem; font-weight: 500;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
  }
  .faq-item__q::-webkit-details-marker { display: none; }
  .faq-item__q::after {
    content: "+"; font-size: 1.25rem; color: var(--ink-3);
    flex-shrink: 0; transition: transform 0.2s;
  }
  details[open] .faq-item__q::after { content: "−"; }
  .faq-item__a {
    padding-bottom: 1.25rem; font-size: 0.9375rem;
    color: var(--ink-2); line-height: 1.7; max-width: 640px;
  }

  /* ── CTA Banner ── */
  .cta-banner {
    background: var(--ink); color: #fff;
    padding: 6rem 2rem; text-align: center;
  }
  .cta-banner__inner { max-width: 640px; margin: 0 auto; }
  .cta-banner__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; margin-bottom: 1rem; letter-spacing: -0.01em;
  }
  .cta-banner__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
  .cta-banner__note { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }

  /* ── Footer ── */
  .footer { padding: 4rem 2rem 2rem; border-top: 1px solid var(--border); }
  .footer__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; gap: 4rem; flex-wrap: wrap;
    padding-bottom: 3rem; border-bottom: 1px solid var(--border);
  }
  .footer__brand { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 0.875rem; }
  .footer__logo-img { height: 3.5rem; width: auto; display: block; flex-shrink: 0; }
  .footer__logo { font-family: var(--font-logo); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.4rem; }
  .footer__tagline { font-size: 0.875rem; color: var(--ink-3); }
  .footer__links { display: flex; gap: 3rem; flex-wrap: wrap; }
  .footer__col { display: flex; flex-direction: column; gap: 0.625rem; }
  .footer__col-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-2); margin-bottom: 0.25rem; }
  .footer__link { font-size: 0.875rem; color: var(--ink-3); }
  .footer__link:hover { color: var(--ink); }
  .footer__bottom { max-width: 1200px; margin: 0 auto; padding-top: 1.5rem; font-size: 0.8125rem; color: var(--ink-3); }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .hero__layout { grid-template-columns: 1fr; }
    .hero__collage { display: none; }
    .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
    .nav__links { display: none; }
  }
  @media (max-width: 600px) {
    .hero { padding: 4rem 1.5rem; }
    .features, .pricing, .faq, .cta-banner { padding: 4rem 1.5rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
  }
