/* Montana Web Host shared styles */
    :root {
      --ink: #0b1520;
      --overlay: rgba(8, 22, 36, 0.58);
      --white: #ffffff;
      --snow: #f7f8fa;
      --muted: rgba(255, 255, 255, 0.78);
      --accent: #dce8f2;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: auto; }
    body {
      margin: 0;
      font-family: "DM Sans", system-ui, sans-serif;
      background: var(--snow);
      color: var(--ink);
      /* Do NOT set overflow-x:hidden here: it breaks position:sticky in Chromium */
    }

    /* ===== Intro: black hold + white logo ===== */
    #intro-screen {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: grid;
      place-items: center;
      background: #000;
      transition: opacity 1.15s ease;
    }
    #intro-screen.is-hiding { opacity: 0; pointer-events: none; }
    #intro-screen.is-gone { display: none; }

    .logo-mark {
      width: min(42vw, 188px);
      height: auto;
      fill: #fff;
      animation: logoPulse 2s ease-in-out;
      filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.18));
    }
    @keyframes logoPulse {
      0%, 100% { transform: scale(0.94); opacity: 0.92; }
      50% { transform: scale(1.06); opacity: 1; }
    }

    /* ===== Scroll hero stage ===== */
    #hero-stage {
      position: relative;
      /* Climb runway in scroll-px ≈ height − 100vh. 118vh was ~18vh of scroll and felt jumpy.
         ~170vh ≈ 70vh of scroll so the ridge rises steadier without a long dead pin. */
      height: 170vh;
    }

    .hero-pin {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      height: 100dvh;
      width: 100%;
      overflow: hidden;
      background: #0a1622;
      /* LOCAL TEST 20260829: pin under #after so handoff copy rides ON the wipe, not under a white mask */
      z-index: 20;
    }

    /* Once the stage is done, park the pin at the end so #after can take over */
    .hero-pin.is-released {
      position: absolute;
      top: auto;
      bottom: 0;
      z-index: 10;
    }

    .hero-pin.is-before {
      position: absolute;
      top: 0;
      bottom: auto;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-color: #0b1520;
      background-image:
        linear-gradient(180deg, rgba(10, 22, 34, 0.15) 0%, rgba(10, 22, 34, 0.05) 40%, rgba(10, 22, 34, 0.35) 100%),
        image-set(
          url("assets/brand/hero-mountain.webp") type("image/webp"),
          url("assets/brand/hero-mountain.jpg") type("image/jpeg")
        );
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transform: scale(1.06);
      transition: transform 0.1s linear;
      will-change: transform;
    }

    .hero-filter {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 18, 30, 0.55) 0%, rgba(10, 28, 44, 0.48) 45%, rgba(12, 34, 52, 0.62) 100%);
      mix-blend-mode: multiply;
      pointer-events: none;
    }

    .hero-filter-tint {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 90% 70% at 50% 28%, rgba(70, 130, 180, 0.22), transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1.5rem 12vh;
      color: var(--white);
      transition: opacity 0.08s linear, transform 0.08s linear;
      will-change: opacity, transform;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.45rem 0.9rem;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 1.4rem;
    }

    h1 {
      margin: 0;
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(3.1rem, 9vw, 6.4rem);
      line-height: 0.95;
      letter-spacing: -0.02em;
      text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    }

    h1 .peak {
      display: inline-flex;
      align-items: center;
      height: 0.82em;
      margin: 0 0.04em -0.05em;
      vertical-align: middle;
    }
    h1 .peak svg {
      height: 100%;
      width: auto;
      fill: #fff;
    }

    .lede {
      margin: 1.25rem 0 0;
      max-width: 28rem;
      font-size: clamp(1.05rem, 2.2vw, 1.35rem);
      line-height: 1.45;
      color: var(--muted);
      font-weight: 400;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .btn {
      appearance: none;
      border: 0;
      cursor: pointer;
      font: inherit;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 999px;
      padding: 0.95rem 1.45rem;
      transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    }
    .btn:active { transform: scale(0.98); }
    .btn-primary {
      background: #fff;
      color: #0b1520;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    }
    .btn-primary:hover { background: #f2f5f8; }
    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.42);
    }
    .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

    .scroll-hint {
      position: absolute;
      left: 50%;
      bottom: 7.5vh;
      transform: translateX(-50%);
      z-index: 6;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.55rem;
      transition: opacity 0.12s linear;
      pointer-events: none;
    }
    .scroll-hint::after {
      content: "";
      width: 1px;
      height: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
      animation: drip 1.6s ease-in-out infinite;
    }
    @keyframes drip {
      0%, 100% { transform: scaleY(0.65); opacity: 0.35; }
      50% { transform: scaleY(1); opacity: 1; }
    }

    /* ===== White mountainscape: grows up and eats the hero ===== */
    #mountain-layer {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 20;
      height: 22vh;
      min-height: 140px;
      pointer-events: none;
      will-change: height;
      /* ridgeline casts a soft edge onto the photo as it climbs */
      filter: drop-shadow(0 -12px 22px rgba(8, 18, 28, 0.2));
    }

    .mountains-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    /* ===== After the eat: white page continues ===== */
    #after {
      position: relative;
      /* LOCAL TEST 20260829: above climbing pin (20) so text/nav paint on top of mountains */
      z-index: 45;
      background: #fff;
      color: var(--ink);
      min-height: 0;
      padding: 0;
      /*
        Climb always finishes a full viewport before #after would naturally reach the top.
        Pull #after up into that white so the headline arrives with the finished ridge,
        not after another screen of empty snow.
      */
      margin-top: calc(-66vh);
    }

    .after-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .after-inner h2 {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(2.4rem, 6vw, 3.8rem);
      line-height: 1.05;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }

    .after-inner p {
      margin: 0 auto;
      max-width: 34rem;
      font-size: 1.125rem;
      line-height: 1.65;
      color: rgba(11, 21, 32, 0.72);
    }

    .after-mark {
      width: 56px;
      height: auto;
      fill: var(--ink);
      margin: 0 auto 1.5rem;
      display: block;
      opacity: 0.9;
    }


    /* ===== Site chrome after the climb ===== */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem clamp(1rem, 4vw, 2rem);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(11, 21, 32, 0.08);
    }
    .site-nav a {
      color: inherit;
      text-decoration: none;
    }
    .nav-brand {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: -0.01em;
    }
    .nav-brand svg {
      width: 28px;
      height: auto;
      fill: var(--ink);
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      gap: 0.35rem 1.1rem;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.92rem;
      font-weight: 500;
      color: rgba(11, 21, 32, 0.72);
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links .nav-cta {
      display: inline-flex;
      align-items: center;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      background: var(--ink);
      color: #fff !important;
      font-weight: 600;
    }
    .nav-links .nav-cta:hover { background: #152536; }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(11, 21, 32, 0.12);
      border-radius: 12px;
      background: #fff;
      color: var(--ink);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
    }
    .nav-toggle-bars,
    .nav-toggle-bars::before,
    .nav-toggle-bars::after {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      position: relative;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .nav-toggle-bars::before,
    .nav-toggle-bars::after {
      content: "";
      position: absolute;
      left: 0;
    }
    .nav-toggle-bars::before { top: -6px; }
    .nav-toggle-bars::after { top: 6px; }
    .site-nav.is-open .nav-toggle-bars { background: transparent; }
    .site-nav.is-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
    .site-nav.is-open .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

    #after {
      min-height: 0;
      padding: 0;
      background: #fff;
      /* keep negative pull; do not reset margin here */
    }

    .after-inner {
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      /* Tight top so mark + headline sit near the ridge, not mid-page */
      padding: clamp(0.75rem, 2.2vh, 1.35rem) 1.5rem 1.35rem;
    }

    .section {
      padding: clamp(3.25rem, 8vh, 5.5rem) clamp(1.25rem, 4vw, 2rem);
    }
    .section-inner {
      max-width: 1080px;
      margin: 0 auto;
    }
    .section-kicker {
      display: inline-block;
      margin: 0 0 0.85rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(11, 21, 32, 0.5);
    }
    .section h2,
    .section-title {
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(2.1rem, 5vw, 3.2rem);
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin: 0 0 0.85rem;
      color: var(--ink);
    }
    .section-lede {
      margin: 0 0 2.25rem;
      max-width: 36rem;
      font-size: 1.08rem;
      line-height: 1.65;
      color: rgba(11, 21, 32, 0.68);
    }
    .section.centered .section-lede,
    .section.centered .section-kicker,
    .section.centered h2 {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
    .section.centered .section-lede { margin-bottom: 2.25rem; }

    .section-tint {
      background: linear-gradient(180deg, #f5f7fa 0%, #eef2f6 100%);
    }
    .section-ink {
      background: #0b1520;
      color: #fff;
    }
    .section-ink .section-kicker { color: rgba(255,255,255,0.55); }
    .section-ink h2,
    .section-ink .section-title { color: #fff; }
    .section-ink .section-lede { color: rgba(255,255,255,0.72); }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.15rem;
    }
    @media (max-width: 900px) {
      .card-grid { grid-template-columns: 1fr; }
      .nav-brand span { display: none; }
      .site-nav {
        flex-wrap: wrap;
        row-gap: 0.35rem;
      }
      .nav-toggle { display: inline-flex; margin-left: auto; }
      .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        padding: 0.35rem 0 0.5rem;
        font-size: 0.95rem;
      }
      .site-nav.is-open .nav-links { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.55rem 0.35rem;
        border-radius: 10px;
      }
      .nav-links a:hover { background: rgba(11, 21, 32, 0.04); }
      .nav-links .nav-cta {
        justify-content: center;
        margin-top: 0.25rem;
      }
    }

    .card {
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.25rem;
      padding: 1.45rem 1.4rem 1.55rem;
      box-shadow: 0 10px 30px rgba(11, 21, 32, 0.04);
    }
    .card h3 {
      margin: 0 0 0.55rem;
      font-size: 1.15rem;
      font-weight: 650;
      letter-spacing: -0.015em;
    }
    .card p {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.55;
      color: rgba(11, 21, 32, 0.68);
    }
    .card-meta {
      margin: 0.85rem 0 0 !important;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(11, 21, 32, 0.08);
      font-size: 0.86rem !important;
      font-weight: 650;
      letter-spacing: -0.01em;
      color: var(--ink) !important;
      line-height: 1.35 !important;
    }
    .card-icon {
      width: 2.4rem;
      height: 2.4rem;
      border-radius: 0.8rem;
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
      background: rgba(11, 21, 32, 0.05);
      color: var(--ink);
    }
    .card-icon svg { width: 1.2rem; height: 1.2rem; }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
      counter-reset: step;
    }
    @media (max-width: 900px) {
      .steps { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .steps { grid-template-columns: 1fr; }
    }
    .step {
      position: relative;
      padding: 1.25rem 1.15rem 1.35rem;
      border-radius: 1.15rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .step::before {
      counter-increment: step;
      content: counter(step, decimal-leading-zero);
      display: block;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.5rem;
      margin-bottom: 0.65rem;
      color: rgba(255,255,255,0.45);
    }
    .step h3 {
      margin: 0 0 0.4rem;
      font-size: 1.05rem;
      font-weight: 650;
    }
    .step p {
      margin: 0;
      font-size: 0.94rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.68);
    }

    .price-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.15rem;
      align-items: stretch;
    }
    @media (max-width: 860px) {
      .price-grid { grid-template-columns: 1fr; }
    }
    .price-hero {
      background: #fff;
      border-radius: 1.5rem;
      border: 1px solid rgba(11, 21, 32, 0.1);
      padding: clamp(1.5rem, 4vw, 2.1rem);
      box-shadow: 0 18px 50px rgba(11, 21, 32, 0.06);
      position: relative;
      overflow: hidden;
    }
    .price-hero::after {
      content: "";
      position: absolute;
      inset: auto -20% -40% auto;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(70,130,180,0.12), transparent 70%);
      pointer-events: none;
    }
    .price-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(11, 21, 32, 0.06);
      font-size: 0.72rem;
      font-weight: 650;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .price-amount {
      display: flex;
      align-items: baseline;
      gap: 0.35rem;
      flex-wrap: wrap;
      margin: 0 0 0.35rem;
    }
    .price-amount .num {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(3rem, 8vw, 4.4rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
    }
    .price-amount .unit {
      font-size: 1rem;
      color: rgba(11, 21, 32, 0.55);
      font-weight: 500;
    }
    .price-sub {
      margin: 0 0 1.35rem;
      color: rgba(11, 21, 32, 0.65);
      font-size: 1rem;
      line-height: 1.5;
      max-width: 28rem;
    }
    .check-list {
      list-style: none;
      margin: 0 0 1.6rem;
      padding: 0;
      display: grid;
      gap: 0.65rem;
    }
    .check-list li {
      display: grid;
      grid-template-columns: 1.25rem 1fr;
      gap: 0.7rem;
      align-items: start;
      font-size: 0.98rem;
      line-height: 1.45;
      color: rgba(11, 21, 32, 0.78);
    }
    .check-list li svg {
      width: 1.15rem;
      height: 1.15rem;
      margin-top: 0.12rem;
      color: #1f6b4a;
      flex-shrink: 0;
    }
    .price-side {
      display: grid;
      gap: 1.15rem;
    }
    .price-mini {
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.25rem;
      padding: 1.3rem 1.25rem 1.4rem;
    }
    .price-mini h3 {
      margin: 0 0 0.35rem;
      font-size: 1.05rem;
      font-weight: 650;
    }
    .price-mini .mini-amount {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 2rem;
      letter-spacing: -0.02em;
      margin: 0.2rem 0 0.45rem;
    }
    .price-mini p {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.5;
      color: rgba(11, 21, 32, 0.65);
    }
    .price-note {
      margin-top: 1.25rem;
      font-size: 0.9rem;
      line-height: 1.5;
      color: rgba(11, 21, 32, 0.55);
      text-align: center;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: center;
    }
    @media (max-width: 800px) {
      .about-grid { grid-template-columns: 1fr; }
    }
    .about-panel {
      border-radius: 1.5rem;
      padding: 1.75rem 1.5rem;
      background:
        linear-gradient(160deg, rgba(255,255,255,0.08), transparent 50%),
        linear-gradient(180deg, #132333, #0b1520);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .about-panel .mark {
      width: 48px;
      fill: #fff;
      opacity: 0.9;
      margin-bottom: 1.25rem;
    }
    .about-panel p {
      margin: 0;
      font-size: 1.15rem;
      line-height: 1.45;
      font-family: "Instrument Serif", Georgia, serif;
      letter-spacing: -0.01em;
    }
    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .stat {
      padding: 0.9rem 0.75rem;
      border-radius: 1rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      text-align: center;
    }
    .stat strong {
      display: block;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.55rem;
      font-weight: 400;
      letter-spacing: -0.02em;
    }
    .stat span {
      display: block;
      margin-top: 0.2rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 1.5rem;
      align-items: start;
    }
    @media (max-width: 860px) {
      .contact-wrap { grid-template-columns: 1fr; }
    }
    .contact-card {
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.4rem;
      padding: 1.5rem;
      box-shadow: 0 12px 36px rgba(11, 21, 32, 0.05);
    }
    .contact-meta {
      display: grid;
      gap: 0.9rem;
      margin-top: 1.25rem;
    }
    .contact-meta a,
    .contact-meta span {
      display: grid;
      gap: 0.15rem;
      text-decoration: none;
      color: inherit;
      padding: 0.85rem 0.95rem;
      border-radius: 0.95rem;
      background: rgba(11, 21, 32, 0.035);
      border: 1px solid rgba(11, 21, 32, 0.05);
    }
    .contact-meta strong {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(11, 21, 32, 0.5);
      font-weight: 650;
    }
    .contact-meta em {
      font-style: normal;
      font-weight: 600;
      font-size: 1.02rem;
    }
    .form-grid {
      display: grid;
      gap: 0.85rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
    }
    @media (max-width: 560px) {
      .form-row { grid-template-columns: 1fr; }
    }
    label {
      display: grid;
      gap: 0.35rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(11, 21, 32, 0.7);
    }
    input, textarea, select {
      width: 100%;
      font: inherit;
      font-weight: 400;
      color: var(--ink);
      background: #f7f8fa;
      border: 1px solid rgba(11, 21, 32, 0.12);
      border-radius: 0.85rem;
      padding: 0.85rem 0.95rem;
      outline: none;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    input:focus, textarea:focus, select:focus {
      border-color: rgba(11, 21, 32, 0.35);
      box-shadow: 0 0 0 3px rgba(11, 21, 32, 0.08);
      background: #fff;
    }
    textarea { min-height: 140px; resize: vertical; }
    .form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-top: 0.35rem;
    }
    .btn-dark {
      background: var(--ink);
      color: #fff;
      box-shadow: 0 10px 24px rgba(11, 21, 32, 0.18);
    }
    .btn-dark:hover { background: #152536; color: #fff; }
    .btn-light {
      background: #fff;
      color: var(--ink);
      border: 1px solid rgba(11, 21, 32, 0.14);
    }
    .btn-light:hover { background: #f2f5f8; color: var(--ink); }

    /* Anchors used as buttons: beat generic link color rules (e.g. .work-foot a) */
    a.btn {
      text-decoration: none;
      border-bottom: none;
    }
    a.btn.btn-dark,
    a.btn.btn-dark:visited,
    a.btn.btn-dark:hover {
      color: #fff;
    }
    a.btn.btn-light,
    a.btn.btn-light:visited,
    a.btn.btn-light:hover {
      color: var(--ink);
    }
    a.btn.btn-primary,
    a.btn.btn-primary:visited,
    a.btn.btn-primary:hover {
      color: #0b1520;
    }
    .studio-price-card a.btn.btn-primary,
    .studio-price-card a.btn.btn-primary:hover {
      background: #fff;
      color: #0b1520;
    }
    .studio-price-card a.btn.btn-dark,
    .studio-price-card a.btn.btn-dark:hover {
      background: #fff;
      color: #0b1520;
    }
    .form-fine {
      margin: 0.75rem 0 0;
      font-size: 0.82rem;
      color: rgba(11, 21, 32, 0.5);
      line-height: 1.45;
    }
    .form-fine a {
      color: rgba(11, 21, 32, 0.72);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .form-fine a:hover { color: var(--ink); }
    .human-check {
      display: grid;
      gap: 0.45rem;
      margin-top: 0.15rem;
    }
    .human-check-label {
      font-size: 0.86rem;
      font-weight: 600;
      color: rgba(11, 21, 32, 0.78);
    }
    .human-check-hint {
      font-weight: 500;
      color: rgba(11, 21, 32, 0.45);
    }
    .human-check-row {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      flex-wrap: wrap;
    }
    .human-check-q {
      font-variant-numeric: tabular-nums;
      font-weight: 600;
      font-size: 1rem;
      color: var(--ink);
      min-width: 4.5rem;
    }
    .human-check input {
      width: 5.5rem;
      max-width: 100%;
    }
    .hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

    .site-footer {
      background: #081018;
      color: rgba(255,255,255,0.72);
      padding: 2.5rem clamp(1.25rem, 4vw, 2rem) 2rem;
    }
    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      gap: 1.5rem;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1.25rem;
      align-items: start;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand {
      display: flex;
      gap: 0.75rem;
      align-items: center;
    }
    .footer-brand svg { width: 34px; fill: #fff; }
    .footer-brand strong {
      display: block;
      color: #fff;
      font-size: 1.05rem;
    }
    .footer-brand span {
      display: block;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem 1.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 0.92rem;
    }
    .footer-links a {
      color: rgba(255,255,255,0.72);
      text-decoration: none;
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
    }
    .footer-bottom a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 0.18em;
      text-decoration-color: rgba(255,255,255,0.28);
    }
    .footer-bottom a:hover {
      color: rgba(255,255,255,0.85);
      text-decoration-color: rgba(255,255,255,0.55);
    }

    .btn.btn-dark, .btn.btn-light { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }


    .plan-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.1rem;
      align-items: stretch;
      text-align: left;
    }
    @media (max-width: 900px) {
      .plan-grid { grid-template-columns: 1fr; }
    }
    .plan-card {
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.1);
      border-radius: 1.35rem;
      padding: 1.45rem 1.35rem 1.55rem;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 0 12px 36px rgba(11, 21, 32, 0.04);
    }
    .plan-card.is-featured {
      border-color: rgba(11, 21, 32, 0.28);
      box-shadow: 0 18px 50px rgba(11, 21, 32, 0.1);
      transform: translateY(-4px);
    }
    @media (max-width: 900px) {
      .plan-card.is-featured { transform: none; }
    }
    .plan-tier {
      display: inline-flex;
      align-self: flex-start;
      padding: 0.32rem 0.7rem;
      border-radius: 999px;
      background: rgba(11, 21, 32, 0.06);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }
    .plan-card.is-featured .plan-tier {
      background: var(--ink);
      color: #fff;
    }
    .plan-sale {
      display: inline-flex;
      align-self: flex-start;
      margin: 0 0 0.65rem;
      padding: 0.28rem 0.6rem;
      border-radius: 999px;
      background: #e8f5ee;
      color: #1f6b4a;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .plan-card h3 {
      margin: 0 0 0.35rem;
      font-size: 1.2rem;
      font-weight: 650;
      letter-spacing: -0.015em;
    }
    .plan-tagline {
      margin: 0 0 1rem;
      font-size: 0.95rem;
      line-height: 1.45;
      color: rgba(11, 21, 32, 0.62);
      min-height: 2.8em;
    }
    .plan-price {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 0 0 0.35rem;
    }
    .plan-price .num,
    .plan-price .was {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(2.4rem, 5vw, 3.1rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
    }
    .plan-price .was {
      color: rgba(11, 21, 32, 0.38);
      text-decoration: line-through;
      text-decoration-thickness: 0.08em;
      text-decoration-color: rgba(11, 21, 32, 0.45);
    }
    .plan-price .num.is-sale {
      color: #1f6b4a;
    }
    .plan-price .unit {
      font-size: 0.92rem;
      color: rgba(11, 21, 32, 0.55);
      font-weight: 500;
    }
    .plan-card .check-list {
      margin: 1rem 0 1.35rem;
      flex: 1;
    }
    .plan-card .btn {
      width: 100%;
      justify-content: center;
      text-align: center;
      text-decoration: none;
    }
    .host-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.75rem;
      text-align: left;
    }
    @media (max-width: 900px) {
      .host-grid { grid-template-columns: 1fr; }
    }
    .host-card {
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.15rem;
      padding: 1.2rem 1.15rem 1.3rem;
    }
    .host-card h4 {
      margin: 0 0 0.25rem;
      font-size: 1.02rem;
      font-weight: 650;
    }
    .host-card .host-amount {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.85rem;
      letter-spacing: -0.02em;
      margin: 0.2rem 0 0.4rem;
    }
    .host-card .host-amount span {
      font-family: "DM Sans", system-ui, sans-serif;
      font-size: 0.92rem;
      color: rgba(11, 21, 32, 0.55);
      font-weight: 500;
    }
    .host-card p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.5;
      color: rgba(11, 21, 32, 0.62);
    }
    .pricing-split {
      margin: 2.25rem 0 0.75rem;
      font-size: 0.72rem;
      font-weight: 650;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(11, 21, 32, 0.45);
      text-align: center;
    }






    /* ===== Case study ===== */
    .case {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1.5rem;
      align-items: stretch;
      text-align: left;
      margin-top: 0.35rem;
    }
    @media (max-width: 900px) {
      .case { grid-template-columns: 1fr; }
    }
    .case-visual {
      border-radius: 1.35rem;
      overflow: hidden;
      border: 1px solid rgba(11, 21, 32, 0.08);
      box-shadow: 0 18px 50px rgba(11, 21, 32, 0.07);
      background: #0b1520;
      position: relative;
      min-height: 320px;
    }
    .case-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      min-height: 320px;
    }
    .case-visual .case-live-pill {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(8, 16, 24, 0.78);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
      text-decoration: none;
    }
    .case-visual .case-live-pill:hover { background: rgba(8, 16, 24, 0.92); }
    .case-copy h3 {
      margin: 0 0 0.75rem;
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(1.7rem, 3.5vw, 2.2rem);
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    .case-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin: 0 0 1.25rem;
    }
    .case-meta span {
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      background: rgba(11, 21, 32, 0.05);
      border: 1px solid rgba(11, 21, 32, 0.08);
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(11, 21, 32, 0.7);
    }
    .case-steps {
      display: grid;
      gap: 0.95rem;
      margin: 0 0 1.35rem;
    }
    .case-step strong {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(11, 21, 32, 0.45);
      margin-bottom: 0.25rem;
    }
    .case-step p {
      margin: 0;
      font-size: 1.02rem;
      line-height: 1.55;
      color: rgba(11, 21, 32, 0.78);
    }
    .case-results {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
      margin: 0 0 0.85rem;
    }
    @media (max-width: 900px) {
      .case-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 420px) {
      .case-results { grid-template-columns: 1fr; }
    }
    .case-result {
      padding: 0.95rem 0.9rem;
      border-radius: 1rem;
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      text-align: left;
    }
    .case-result strong {
      display: block;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.3rem;
      line-height: 1.15;
    }
    .case-result span {
      font-size: 0.84rem;
      color: rgba(11, 21, 32, 0.62);
      line-height: 1.4;
    }
    .case-note {
      margin: 0 0 1.15rem;
      font-size: 0.86rem;
      line-height: 1.45;
      color: rgba(11, 21, 32, 0.55);
    }
    .case-copy .form-actions {
      flex-wrap: wrap;
      gap: 0.65rem;
    }
    .case-copy .form-actions .btn {
      flex: 1 1 auto;
      min-width: min(100%, 11rem);
      justify-content: center;
      text-align: center;
    }

    /* ===== Studio: plan comparer ===== */
    .studio-shell {
      margin-top: 1rem;
      border-radius: 1.6rem;
      border: 1px solid rgba(11, 21, 32, 0.1);
      background:
        radial-gradient(900px 420px at 20% 0%, rgba(70, 130, 180, 0.1), transparent 55%),
        linear-gradient(180deg, #fff, #f4f7fa);
      box-shadow: 0 22px 60px rgba(11, 21, 32, 0.07);
      padding: clamp(1.25rem, 3vw, 1.85rem);
      text-align: left;
      position: relative;
      overflow: hidden;
    }
    .studio-shell::before {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 90px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%230b1520' fill-opacity='0.04' d='M0,80 C180,40 320,100 520,70 C720,40 900,95 1100,60 C1250,35 1360,55 1440,40 L1440,120 L0,120 Z'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
      pointer-events: none;
    }
    .studio-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      align-items: end;
      margin-bottom: 1.25rem;
      position: relative;
      z-index: 1;
    }
    .studio-kicker {
      margin: 0 0 0.35rem;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(11, 21, 32, 0.45);
    }
    .studio-top h3 {
      margin: 0;
      font-family: "Instrument Serif", Georgia, serif;
      font-weight: 400;
      font-size: clamp(1.6rem, 3vw, 2rem);
      letter-spacing: -0.02em;
    }
    .plan-toggle {
      display: inline-flex;
      padding: 0.3rem;
      border-radius: 999px;
      background: rgba(11, 21, 32, 0.06);
      border: 1px solid rgba(11, 21, 32, 0.08);
      gap: 0.2rem;
    }
    .plan-toggle button {
      appearance: none;
      border: 0;
      background: transparent;
      font: inherit;
      font-weight: 650;
      font-size: 0.9rem;
      padding: 0.65rem 1.05rem;
      border-radius: 999px;
      cursor: pointer;
      color: rgba(11, 21, 32, 0.62);
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .plan-toggle button[aria-selected="true"] {
      background: var(--ink);
      color: #fff;
      box-shadow: 0 8px 20px rgba(11, 21, 32, 0.18);
    }
    .plan-toggle button:hover { color: var(--ink); }
    .plan-toggle button[aria-selected="true"]:hover { color: #fff; }
    .studio-body {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 1.25rem;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 860px) {
      .studio-body { grid-template-columns: 1fr; }
    }
    .studio-price-card {
      border-radius: 1.25rem;
      background: #0b1520;
      color: #fff;
      padding: 1.4rem 1.3rem 1.45rem;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }
    .studio-price-card::after {
      content: "";
      position: absolute;
      right: -20%;
      top: -30%;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(120,170,220,0.25), transparent 70%);
      pointer-events: none;
    }
    .studio-tier-name {
      margin: 0 0 0.35rem;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      font-weight: 700;
    }
    .studio-plan-title {
      margin: 0 0 0.85rem;
      font-size: 1.35rem;
      font-weight: 650;
      letter-spacing: -0.015em;
    }
    .studio-amount {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 0.45rem;
      margin-bottom: 0.35rem;
    }
    .studio-amount .num {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(2.8rem, 6vw, 3.6rem);
      line-height: 0.95;
      letter-spacing: -0.03em;
      transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease;
    }
    .studio-amount .was {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.6rem;
      color: rgba(255,255,255,0.35);
      text-decoration: line-through;
    }
    .studio-amount .unit {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
    }
    .studio-blurb {
      margin: 0 0 1.2rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
      font-size: 0.98rem;
      min-height: 3.2em;
    }
    .studio-price-card .btn {
      margin-top: auto;
      width: 100%;
      justify-content: center;
      text-decoration: none;
    }
    .studio-features {
      list-style: none;
      margin: 0;
      padding: 0.2rem 0 0;
      display: grid;
      gap: 0.55rem;
    }
    .studio-features li {
      display: grid;
      grid-template-columns: 1.35rem 1fr;
      gap: 0.7rem;
      align-items: start;
      padding: 0.7rem 0.85rem;
      border-radius: 0.9rem;
      border: 1px solid rgba(11, 21, 32, 0.08);
      background: rgba(255,255,255,0.72);
      font-size: 0.95rem;
      line-height: 1.4;
      color: rgba(11, 21, 32, 0.78);
      transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }
    .studio-features li[data-on="0"] {
      opacity: 0.38;
      background: rgba(255,255,255,0.35);
    }
    .studio-features li .mark {
      width: 1.2rem;
      height: 1.2rem;
      margin-top: 0.1rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #e8f5ee;
      color: #1f6b4a;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .studio-features li[data-on="0"] .mark {
      background: rgba(11, 21, 32, 0.08);
      color: rgba(11, 21, 32, 0.35);
    }
    .studio-hint {
      margin: 0.9rem 0 0;
      font-size: 0.88rem;
      color: rgba(11, 21, 32, 0.55);
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* Quiet mountain ridgeline on About */
    .about-ridge {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 140px;
      pointer-events: none;
      z-index: 1;
      opacity: 0.55;
    }
    .about-ridge svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    #about > .section-inner { z-index: 2; }

    /* ===== Craft proof: wire / before-after / build strip ===== */
    .craft-compare {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 1rem;
      align-items: center;
      text-align: left;
      margin-top: 0.5rem;
    }
    @media (max-width: 900px) {
      .craft-compare {
        grid-template-columns: 1fr;
      }
      .craft-arrow { transform: rotate(90deg); margin: 0.25rem auto; }
    }
    .craft-pane {
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(11, 21, 32, 0.05);
    }
    .craft-pane-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      border-bottom: 1px solid rgba(11, 21, 32, 0.06);
      background: rgba(247, 248, 250, 0.9);
    }
    .craft-pane-label strong {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .craft-pane-label span {
      font-size: 0.82rem;
      color: rgba(11, 21, 32, 0.55);
    }
    .craft-pane figure {
      margin: 0;
      aspect-ratio: 16 / 10;
      background: #0b1520;
      overflow: hidden;
    }
    .craft-pane img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .craft-arrow {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: #fff;
      font-size: 1.25rem;
      box-shadow: 0 10px 28px rgba(11, 21, 32, 0.2);
      flex-shrink: 0;
    }

    .ba-stage {
      position: relative;
      border-radius: 1.35rem;
      overflow: hidden;
      border: 1px solid rgba(11, 21, 32, 0.1);
      box-shadow: 0 18px 50px rgba(11, 21, 32, 0.08);
      aspect-ratio: 16 / 10;
      background: #0b1520;
      touch-action: none;
      user-select: none;
      cursor: ew-resize;
      margin-top: 0.75rem;
    }
    .ba-stage img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      pointer-events: none;
    }
    .ba-after {
      clip-path: inset(0 0 0 var(--pos, 52%));
    }
    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--pos, 52%);
      width: 2px;
      background: #fff;
      transform: translateX(-1px);
      z-index: 3;
      box-shadow: 0 0 0 1px rgba(11, 21, 32, 0.15);
    }
    .ba-handle::after {
      content: "drag";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #fff;
      color: var(--ink);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: grid;
      place-items: center;
      box-shadow: 0 10px 30px rgba(11, 21, 32, 0.25);
      border: 1px solid rgba(11, 21, 32, 0.08);
    }
    .ba-tag {
      position: absolute;
      top: 1rem;
      z-index: 4;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      background: rgba(8, 16, 24, 0.72);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
    }
    .ba-tag.is-before { left: 1rem; }
    .ba-tag.is-after { right: 1rem; }
    .ba-note {
      margin: 0.9rem 0 0;
      font-size: 0.92rem;
      color: rgba(11, 21, 32, 0.6);
      text-align: center;
    }

    .build-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      text-align: left;
      margin-top: 0.5rem;
      position: relative;
    }
    @media (max-width: 900px) {
      .build-strip { grid-template-columns: 1fr; }
    }
    .build-frame {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 1.25rem;
      overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .build-frame-top {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.5rem;
      padding: 0.85rem 1rem 0.7rem;
    }
    .build-frame-top .num {
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 1.35rem;
      color: rgba(255,255,255,0.45);
    }
    .build-frame-top strong {
      font-size: 0.95rem;
      font-weight: 650;
      color: #fff;
    }
    .build-frame figure {
      margin: 0;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .build-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .build-frame p {
      margin: 0;
      padding: 0.85rem 1rem 1.05rem;
      font-size: 0.9rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.68);
    }
    .section-ink .craft-pane {
      background: rgba(255,255,255,0.04);
      border-color: rgba(255,255,255,0.1);
      box-shadow: none;
    }
    .section-ink .craft-pane-label {
      background: rgba(255,255,255,0.04);
      border-bottom-color: rgba(255,255,255,0.08);
      color: #fff;
    }
    .section-ink .craft-pane-label span { color: rgba(255,255,255,0.55); }

    /* ===== Testimonials ===== */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.15rem;
      text-align: left;
    }
    @media (max-width: 800px) {
      .testi-grid { grid-template-columns: 1fr; }
    }
    .testi-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.35rem;
      padding: 1.55rem 1.45rem 1.5rem;
      box-shadow: 0 12px 36px rgba(11, 21, 32, 0.04);
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      overflow: hidden;
    }
    .testi-shot {
      margin: -1.55rem -1.45rem 0;
      border-radius: 1.35rem 1.35rem 0 0;
      overflow: hidden;
      border-bottom: 1px solid rgba(11, 21, 32, 0.08);
      aspect-ratio: 16 / 9;
      background: #e8eef4;
    }
    .testi-shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    /* Client logos in testimonials (permission-granted marks, not site screenshots) */
    .testi-shot.is-logo {
      aspect-ratio: 16 / 9;
      display: grid;
      place-items: center;
    }
    .testi-shot.is-logo img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100%;
    }
    .testi-shot.is-logo-light {
      background: #fcfbf9;
    }
    .testi-shot.is-logo-dark {
      background: #0f1116;
    }
    .testi-card::before {
      content: "“";
      position: absolute;
      top: 0.35rem;
      right: 1.1rem;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: 4.5rem;
      line-height: 1;
      color: rgba(11, 21, 32, 0.08);
      pointer-events: none;
    }
    .testi-quote {
      margin: 0;
      font-family: "Instrument Serif", Georgia, serif;
      font-size: clamp(1.2rem, 2.4vw, 1.45rem);
      line-height: 1.35;
      letter-spacing: -0.015em;
      color: var(--ink);
      position: relative;
      z-index: 1;
    }
    .testi-person {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }
    .testi-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(11, 21, 32, 0.08);
      background: #e8eef4;
      flex-shrink: 0;
    }
    .testi-avatar.is-initials {
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      color: #fff;
      background: #0b1520;
      border: 0;
    }
    .testi-person strong {
      display: block;
      font-size: 0.98rem;
      font-weight: 650;
      letter-spacing: -0.01em;
    }
    .testi-person span {
      display: block;
      font-size: 0.88rem;
      color: rgba(11, 21, 32, 0.58);
      margin-top: 0.12rem;
    }
    .testi-person a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(11, 21, 32, 0.2);
    }
    .testi-person a:hover {
      border-bottom-color: var(--ink);
    }

    /* ===== Work / proof ===== */
    .work-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 1.1rem;
      text-align: left;
    }
    .work-card {
      grid-column: span 4;
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid rgba(11, 21, 32, 0.08);
      border-radius: 1.35rem;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 12px 36px rgba(11, 21, 32, 0.04);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    }
    .work-card:nth-child(1),
    .work-card:nth-child(2) {
      grid-column: span 6;
    }
    @media (max-width: 900px) {
      .work-card,
      .work-card:nth-child(1),
      .work-card:nth-child(2) {
        grid-column: span 12;
      }
    }
    .work-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 50px rgba(11, 21, 32, 0.1);
    }
    .work-media {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #0b1520;
    }
    .work-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transform: scale(1.02);
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .work-card:hover .work-media img {
      transform: scale(1.06);
    }
    .work-media::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 42%;
      background: linear-gradient(180deg, transparent, rgba(8, 16, 24, 0.55));
      pointer-events: none;
    }
    .work-body {
      padding: 1.15rem 1.2rem 1.3rem;
      display: grid;
      gap: 0.35rem;
      flex: 1;
    }
    .work-body .work-kicker {
      margin: 0;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(11, 21, 32, 0.45);
    }
    .work-body h3 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 650;
      letter-spacing: -0.015em;
    }
    .work-body p {
      margin: 0.15rem 0 0;
      font-size: 0.95rem;
      line-height: 1.5;
      color: rgba(11, 21, 32, 0.65);
    }
    .work-link {
      margin-top: 0.75rem;
      font-size: 0.88rem;
      font-weight: 650;
      color: var(--ink);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }
    .work-link::after {
      content: "→";
      transition: transform 0.2s ease;
    }
    .work-card:hover .work-link::after {
      transform: translateX(3px);
    }
    .trust-strip {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
      margin: 0 auto 1.75rem;
      max-width: 1080px;
      padding: 0;
      text-align: left;
    }
    @media (max-width: 900px) {
      .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) {
      .trust-strip { grid-template-columns: 1fr; }
    }
    .trust-strip li {
      margin: 0;
      padding: 0.9rem 1rem;
      border-radius: 1rem;
      border: 1px solid rgba(11, 21, 32, 0.1);
      background: #fff;
      box-shadow: 0 10px 28px rgba(11, 21, 32, 0.05);
    }
    .trust-strip strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 0.25rem;
    }
    .trust-strip span {
      display: block;
      font-size: 0.86rem;
      line-height: 1.4;
      color: rgba(11, 21, 32, 0.62);
    }
    .trust-chip {
      padding: 0.45rem 0.85rem;
      border-radius: 999px;
      border: 1px solid rgba(11, 21, 32, 0.1);
      background: rgba(255, 255, 255, 0.7);
      font-size: 0.82rem;
      font-weight: 600;
      color: rgba(11, 21, 32, 0.7);
      letter-spacing: -0.01em;
    }
    .about-why {
      margin-top: 0.25rem;
      padding: 1rem 1.1rem;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
    }
    .about-why h3 {
      margin: 0 0 0.45rem;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: #fff;
    }
    .about-why p {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.72);
    }
    .hero-title-visual {
      display: inline;
    }
    .work-foot {
      margin: 1.75rem auto 0;
      max-width: 36rem;
      text-align: center;
      font-size: 0.95rem;
      line-height: 1.55;
      color: rgba(11, 21, 32, 0.6);
    }
    .work-foot a:not(.btn) {
      color: var(--ink);
      font-weight: 650;
      text-decoration: none;
      border-bottom: 1px solid rgba(11, 21, 32, 0.25);
    }
    .work-foot a:not(.btn):hover {
      border-bottom-color: var(--ink);
    }
    .work-foot a.btn {
      display: inline-flex;
      margin: 0 0.25rem;
      border-bottom: none;
    }

    /* ===== Showpiece FX layer ===== */
    .fx-stars-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
      border-radius: inherit;
    }
    .fx-stars-wrap canvas {
      display: block;
      width: 100%;
      height: 100%;
    }
    #process,
    #about {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }
    #process > .section-inner,
    #about > .section-inner {
      position: relative;
      z-index: 2;
    }
    .fx-spotlight {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: radial-gradient(
        520px circle at var(--spot-x, 50%) var(--spot-y, 40%),
        rgba(140, 190, 255, 0.14),
        transparent 42%
      );
      opacity: 0;
      transition: opacity 0.35s ease;
      mix-blend-mode: screen;
    }
    #process.is-hot .fx-spotlight,
    #about.is-hot .fx-spotlight {
      opacity: 1;
    }

    .fx-reveal {
      opacity: 0;
      transform: translateY(22px);
      filter: blur(6px);
      transition:
        opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
      transition-delay: var(--d, 0ms);
    }
    .fx-reveal.is-in {
      opacity: 1;
      transform: none;
      filter: none;
    }

    .fx-split {
      display: inline-block;
      overflow: hidden;
      vertical-align: bottom;
    }
    .fx-split-word {
      display: inline-block;
      white-space: nowrap;
    }
    .fx-split-title {
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }
    .fx-split > span {
      display: inline-block;
      transform: translateY(110%);
      opacity: 0;
      transition:
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.7s ease;
      transition-delay: var(--d, 0ms);
    }
    .fx-split.is-in > span {
      transform: translateY(0);
      opacity: 1;
    }

    .card,
    .plan-card,
    .step,
    .host-card,
    .work-card {
      transform-style: preserve-3d;
      transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.25s ease;
      will-change: transform;
    }
    .card.is-tilting,
    .plan-card.is-tilting,
    .host-card.is-tilting,
    .work-card.is-tilting {
      transition: transform 0.08s linear, box-shadow 0.2s ease;
    }
    .card .fx-sheen,
    .plan-card .fx-sheen,
    .host-card .fx-sheen,
    .work-card .fx-sheen {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: radial-gradient(
        280px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.28),
        transparent 55%
      );
      opacity: 0;
      transition: opacity 0.25s ease;
      mix-blend-mode: soft-light;
      z-index: 3;
    }
    .card,
    .plan-card,
    .host-card,
    .work-card {
      position: relative;
      overflow: hidden;
    }
    .card.is-hot .fx-sheen,
    .plan-card.is-hot .fx-sheen,
    .host-card.is-hot .fx-sheen,
    .work-card.is-hot .fx-sheen {
      opacity: 1;
    }
    .card > *:not(.fx-sheen),
    .plan-card > *:not(.fx-sheen),
    .host-card > *:not(.fx-sheen),
    .work-card > *:not(.fx-sheen) {
      position: relative;
      z-index: 1;
    }

    .plan-card.is-featured {
      box-shadow:
        0 18px 50px rgba(11, 21, 32, 0.1),
        0 0 0 1px rgba(11, 21, 32, 0.08),
        0 0 40px rgba(70, 130, 180, 0.12);
    }
    .plan-card.is-featured::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(
        135deg,
        rgba(70, 130, 180, 0.55),
        rgba(255, 255, 255, 0.05) 35%,
        rgba(11, 21, 32, 0.25) 70%,
        rgba(70, 130, 180, 0.4)
      );
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      mask-composite: exclude;
      pointer-events: none;
      z-index: 0;
      opacity: 0.85;
      animation: borderGlow 5.5s ease-in-out infinite;
    }
    @keyframes borderGlow {
      0%, 100% { opacity: 0.55; filter: hue-rotate(0deg); }
      50% { opacity: 1; filter: hue-rotate(18deg); }
    }

    .btn,
    .nav-cta {
      position: relative;
      overflow: hidden;
      transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.25s ease;
    }
    .btn.fx-magnet,
    .nav-cta.fx-magnet {
      will-change: transform;
    }
    .btn-dark.fx-pulse {
      box-shadow:
        0 10px 24px rgba(11, 21, 32, 0.18),
        0 0 0 0 rgba(11, 21, 32, 0.25);
      animation: ctaPulse 2.8s ease-out infinite;
    }
    @keyframes ctaPulse {
      0% { box-shadow: 0 10px 24px rgba(11, 21, 32, 0.18), 0 0 0 0 rgba(11, 21, 32, 0.28); }
      70% { box-shadow: 0 10px 24px rgba(11, 21, 32, 0.18), 0 0 0 14px rgba(11, 21, 32, 0); }
      100% { box-shadow: 0 10px 24px rgba(11, 21, 32, 0.18), 0 0 0 0 rgba(11, 21, 32, 0); }
    }

    .step {
      backdrop-filter: blur(8px);
    }
    .step.is-in {
      animation: stepPop 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
      animation-delay: var(--d, 0ms);
    }
    @keyframes stepPop {
      from { opacity: 0; transform: translateY(18px) scale(0.96); }
      to { opacity: 1; transform: none; }
    }

    .after-mark {
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    }
    .after-inner.is-in .after-mark {
      animation: markSpinIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    @keyframes markSpinIn {
      from { opacity: 0; transform: rotate(-12deg) scale(0.7); filter: blur(4px); }
      to { opacity: 0.9; transform: none; filter: none; }
    }

    .site-nav {
      transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .site-nav.is-scrolled {
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 10px 30px rgba(11, 21, 32, 0.06);
    }

    /* Cursor trail only on fine pointers */
    #fx-cursor {
      position: fixed;
      width: 18px;
      height: 18px;
      margin: -9px 0 0 -9px;
      border-radius: 50%;
      border: 1px solid rgba(11, 21, 32, 0.35);
      pointer-events: none;
      z-index: 9998;
      mix-blend-mode: difference;
      opacity: 0;
      transform: scale(0.4);
      transition: opacity 0.25s ease, transform 0.25s ease, width 0.2s ease, height 0.2s ease, margin 0.2s ease, background 0.2s ease;
      left: 0;
      top: 0;
    }
    #fx-cursor.is-on { opacity: 1; transform: scale(1); }
    #fx-cursor.is-press {
      width: 34px;
      height: 34px;
      margin: -17px 0 0 -17px;
      background: rgba(255, 255, 255, 0.12);
    }
    #fx-cursor.is-dark {
      border-color: rgba(255, 255, 255, 0.55);
    }

    .section-ink .section-kicker {
      letter-spacing: 0.2em;
    }

    @media (prefers-reduced-motion: reduce) {
      .fx-reveal,
      .fx-split > span,
      .card,
      .plan-card,
      .step,
      .host-card,
      .btn,
      .nav-cta,
      .after-mark,
      .plan-card.is-featured::before {
        animation: none !important;
        transition: none !important;
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
      #fx-cursor { display: none !important; }
    }
    @media (hover: none), (pointer: coarse) {
      #fx-cursor { display: none !important; }
    }

    @media (prefers-reduced-motion: reduce) {
      .logo-mark { animation: none; }
      .scroll-hint::after { animation: none; }
      html { scroll-behavior: auto; }
    }

    /* Headless/dev forced climb states (set by tiny boot script via data-scroll) */
    html[data-scroll] #intro-screen { display: none !important; }
    html[data-scroll] #hero-pin {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      bottom: auto !important;
    }
    html[data-scroll="0"] #mountain-layer { height: 22vh !important; transform: none !important; }
    html[data-scroll="0.25"] #mountain-layer { height: 42vh !important; transform: none !important; }
    html[data-scroll="0.45"] #mountain-layer { height: 58vh !important; transform: none !important; }
    html[data-scroll="0.7"] #mountain-layer { height: 78vh !important; transform: none !important; }
    html[data-scroll="0.95"] #mountain-layer { height: 102vh !important; transform: none !important; }
    html[data-scroll="1"] #mountain-layer { height: 102vh !important; transform: none !important; }
    html[data-scroll="0.95"] #hero-content,
    html[data-scroll="0.7"] #hero-content { opacity: 0 !important; }
    html[data-scroll="0.45"] #hero-content { opacity: 0.55 !important; }
  

/* Multi-page helpers */
.work-teaser-grid {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Home teaser: three equal demo cards (not 6+6 then orphan 4) */
.work-teaser-grid.work-grid .work-card,
.work-teaser-grid.work-grid .work-card:nth-child(1),
.work-teaser-grid.work-grid .work-card:nth-child(2),
.work-teaser-grid.work-grid .work-card:nth-child(3) {
  grid-column: span 4;
  min-height: 100%;
}
.work-teaser-grid .work-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.3rem;
  text-align: left;
}
.work-teaser-grid .work-body p {
  flex: 1;
  margin: 0.35rem 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(11, 21, 32, 0.72);
  min-height: 4.2em;
}
.work-teaser-grid .work-link {
  margin-top: auto;
}
@media (max-width: 900px) {
  .work-teaser-grid.work-grid .work-card,
  .work-teaser-grid.work-grid .work-card:nth-child(1),
  .work-teaser-grid.work-grid .work-card:nth-child(2),
  .work-teaser-grid.work-grid .work-card:nth-child(3) {
    grid-column: span 12;
  }
}

/* Inner pages: sticky top already provides chrome; avoid double-stack awkwardness */
body.inner-page .site-nav {
  position: relative;
  top: auto;
}

/* Portfolio page: roomier cards for longer descriptions */
body.inner-page #portfolio .work-card,
body.inner-page #portfolio .work-card:nth-child(1),
body.inner-page #portfolio .work-card:nth-child(2) {
  grid-column: span 6;
}
body.inner-page #portfolio .work-body {
  padding: 1.25rem 1.35rem 1.45rem;
}
body.inner-page #portfolio .work-body p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(11, 21, 32, 0.72);
}
@media (max-width: 900px) {
  body.inner-page #portfolio .work-card,
  body.inner-page #portfolio .work-card:nth-child(1),
  body.inner-page #portfolio .work-card:nth-child(2) {
    grid-column: span 12;
  }
}

/* ===== Browser tab chrome + peer page wipe ===== */
:root {
  --chrome-h: 52px;
  --chrome-bg: #e8eaed;
  --chrome-tab: #f7f8fa;
  --chrome-tab-active: #ffffff;
  --chrome-ink: #0b1520;
  --wipe-bg: #f7f8fa;
}

.browser-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 14000;
  height: var(--chrome-h);
  background: linear-gradient(180deg, #dfe3e8 0%, var(--chrome-bg) 100%);
  border-bottom: 1px solid rgba(11, 21, 32, 0.12);
  box-shadow: 0 8px 28px rgba(11, 21, 32, 0.06);
  font-family: "DM Sans", system-ui, sans-serif;
  transform: translateZ(0);
}

body.chrome-await-intro .browser-chrome {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
body.chrome-visible .browser-chrome {
  opacity: 1;
  pointer-events: auto;
}

.browser-chrome-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  height: 100%;
  gap: 0.75rem;
  padding: 0 0.65rem 0 0.85rem;
  max-width: 100%;
}

.browser-traffic {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.95rem;
}
.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 0 0 0.5px rgba(0,0,0,0.12);
}
.browser-dot.is-close { background: #ff5f57; }
.browser-dot.is-min { background: #febc2e; }
.browser-dot.is-max { background: #28c840; }

.browser-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
  min-width: 0;
  overflow: auto;
  scrollbar-width: none;
  height: 100%;
  padding-top: 0.45rem;
}
.browser-tabs::-webkit-scrollbar { display: none; }

.browser-tab {
  position: relative;
  flex: 0 1 auto;
  min-width: 5.5rem;
  max-width: 11rem;
  height: calc(var(--chrome-h) - 12px);
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(11, 21, 32, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(11, 21, 32, 0.08);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.browser-tab:hover {
  background: rgba(255, 255, 255, 0.78);
  color: var(--chrome-ink);
}
.browser-tab.is-active {
  background: var(--chrome-tab-active);
  color: var(--chrome-ink);
  z-index: 2;
  box-shadow:
    0 -1px 0 #fff,
    8px 0 0 -1px transparent;
}
/* Active tab blends into page */
.browser-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--chrome-tab-active);
}

.browser-tab-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-chrome-title {
  display: none;
  align-items: center;
  padding-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 21, 32, 0.45);
}
@media (min-width: 900px) {
  .browser-chrome-title { display: flex; }
}

/* Inner pages: offset content under fixed chrome */
body.inner-page.has-browser-chrome {
  padding-top: var(--chrome-h);
}
body.inner-page.has-browser-chrome .page-top {
  top: var(--chrome-h, 52px);
}

/* Home: chrome floats over hero; add safe space only after climb content */
body:not(.inner-page).has-browser-chrome #after {
  scroll-margin-top: var(--chrome-h);
}
body:not(.inner-page).has-browser-chrome .site-nav {
  top: var(--chrome-h);
}

/* Leaving: old page gets pushed down */
body.is-page-leaving #intro-screen,
body.is-page-leaving #hero-stage,
body.is-page-leaving #after,
body.is-page-leaving .page-top,
body.is-page-leaving .page-hero,
body.is-page-leaving .page-main,
body.is-page-leaving .site-footer {
  transition: transform 0.52s cubic-bezier(0.33, 0.1, 0.2, 1), filter 0.52s ease;
  will-change: transform;
}
body.is-page-pushed #intro-screen,
body.is-page-pushed #hero-stage,
body.is-page-pushed #after,
body.is-page-pushed .page-top,
body.is-page-pushed .page-hero,
body.is-page-pushed .page-main,
body.is-page-pushed .site-footer {
  transform: translateY(18vh);
  filter: brightness(0.92);
}

/* Wipe sheet: new page peers in from top, covers, then exits downward */
.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 16000;
  pointer-events: none;
  visibility: hidden;
}
.page-wipe.is-armed {
  visibility: visible;
  pointer-events: auto;
}
.page-wipe-sheet {
  position: absolute;
  inset: 0;
  background: var(--wipe-bg);
  border-radius: 0;
  box-shadow: 0 -20px 60px rgba(11, 21, 32, 0.18);
  transform: translateY(-105%);
  transition: transform 0.52s cubic-bezier(0.33, 0.1, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-wipe.is-covering .page-wipe-sheet {
  transform: translateY(0);
}
.page-wipe.is-hold .page-wipe-sheet {
  transform: translateY(0);
  transition: none;
}
.page-wipe.is-reveal .page-wipe-sheet {
  /* finish the peer push: sheet keeps going down off screen */
  transform: translateY(105%);
  transition: transform 0.48s cubic-bezier(0.33, 0.1, 0.2, 1);
}
.page-wipe.is-gone {
  visibility: hidden;
  pointer-events: none;
}

.page-wipe-head {
  flex: 0 0 var(--chrome-h);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  background: linear-gradient(180deg, #dfe3e8 0%, var(--chrome-bg) 100%);
  border-bottom: 1px solid rgba(11, 21, 32, 0.1);
}
.page-wipe-label {
  margin-left: 0.65rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--chrome-ink);
  font-family: "DM Sans", system-ui, sans-serif;
}
.page-wipe-body {
  flex: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(11, 21, 32, 0.04), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--wipe-bg) 100%);
}

/* Entering page settles upward slightly as wipe finishes */
body.is-page-entering .page-top,
body.is-page-entering .page-hero,
body.is-page-entering .page-main,
body.is-page-entering #after,
body.is-page-entering #hero-stage {
  transform: translateY(-2.5vh);
  opacity: 0.85;
}
body.is-page-ready .page-top,
body.is-page-ready .page-hero,
body.is-page-ready .page-main,
body.is-page-ready #after,
body.is-page-ready #hero-stage {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  transform: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .page-wipe-sheet,
  body.is-page-leaving #after,
  body.is-page-leaving #hero-stage,
  body.is-page-leaving .page-main,
  body.is-page-pushed #after,
  body.is-page-pushed #hero-stage,
  body.is-page-pushed .page-main {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  :root { --chrome-h: 48px; }
  .browser-tab {
    min-width: 4.4rem;
    padding: 0 0.7rem;
    font-size: 0.78rem;
  }
  .browser-traffic { display: none; }
  .browser-chrome-inner {
    grid-template-columns: 1fr;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }
}


/* ===== Timeline ===== */
.timeline {
  margin: 2.25rem auto 0;
  max-width: 920px;
  text-align: left;
  display: grid;
  gap: 0.85rem;
}
.timeline-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.timeline-head h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.timeline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.timeline-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
}
.section:not(.section-ink) .timeline-badge {
  border-color: rgba(11,21,32,0.12);
  background: rgba(11,21,32,0.05);
  color: rgba(11,21,32,0.78);
}
.timeline-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(255,255,255,0.18);
  margin-left: 0.55rem;
}
.section:not(.section-ink) .timeline-track {
  border-left-color: rgba(11,21,32,0.12);
}
.timeline-track li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.35rem;
}
.timeline-track li::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 1.15rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,21,32,0.35);
}
.section:not(.section-ink) .timeline-track li::before {
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(11,21,32,0.12);
}
.timeline-track .t-when {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.section:not(.section-ink) .timeline-track .t-when {
  color: rgba(11,21,32,0.45);
}
.timeline-track strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.2rem;
}
.timeline-track p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
}
.section:not(.section-ink) .timeline-track p {
  color: rgba(11,21,32,0.68);
}
.timeline-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
}
.section:not(.section-ink) .timeline-note {
  color: rgba(11,21,32,0.58);
}

/* ===== FAQ accordion ===== */
.faq {
  margin: 0 auto;
  max-width: 820px;
  text-align: left;
}
.faq details {
  border: 1px solid rgba(11,21,32,0.1);
  background: #fff;
  border-radius: 0.95rem;
  margin: 0.55rem 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq details[open] {
  box-shadow: 0 12px 32px rgba(11,21,32,0.06);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11,21,32,0.06);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-a {
  padding: 0 1.15rem 1.1rem;
  margin: 0;
  color: rgba(11,21,32,0.72);
  line-height: 1.55;
  font-size: 0.98rem;
}
.faq-more {
  margin: 0;
}
.faq-more-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  margin: 1.5rem auto 0;
  max-width: 820px;
}
.faq-more-toggle[aria-expanded="true"] {
  border-color: rgba(11, 21, 32, 0.18);
  background: rgba(11, 21, 32, 0.04);
}
.sale-end {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a7a4c;
}
.studio-price-card .sale-end {
  color: #9be7c0;
}
.plan-sale {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.studio-amount .num.is-sale { color: #9be7c0; }
.plan-price .num.is-sale { color: #1a7a4c; }


/* ===== Tech stack horizontal marquee ===== */
.tech-marquee-section {
  padding: 0.85rem 0 1.1rem;
  background: #fff;
  border-top: 1px solid rgba(11, 21, 32, 0.06);
  border-bottom: 1px solid rgba(11, 21, 32, 0.06);
  overflow: hidden;
}

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

.tech-marquee-fade {
  display: none; /* mask handles edges; keep hooks for older browsers if needed */
}

.tech-marquee-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  padding: 0.35rem 0;
  animation: techMarquee 42s linear infinite;
  will-change: transform;
}

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

.tech-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  border-radius: 999px;
  background: #f4f6f9;
  border: 1px solid rgba(11, 21, 32, 0.08);
  box-shadow: 0 6px 16px rgba(11, 21, 32, 0.04);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  user-select: none;
}

.tech-logo {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* Simple monogram marks (no external logo assets) */
.tech-html5 { background-color: #e44d26; background-image: none; }
.tech-html5::after { content: "5"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; }
.tech-css3 { background-color: #264de4; }
.tech-css3::after { content: "3"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; }
.tech-js { background-color: #f7df1e; color: #111; }
.tech-js::after { content: "JS"; font-family: "DM Sans", system-ui, sans-serif; color: #111; font-size: 0.55rem; }
.tech-php { background-color: #777bb4; }
.tech-php::after { content: "php"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; font-size: 0.5rem; text-transform: lowercase; }
.tech-wp { background-color: #21759b; }
.tech-wp::after { content: "W"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; }
.tech-react { background-color: #20232a; }
.tech-react::after { content: "⚛"; font-size: 0.85rem; line-height: 1; }
.tech-node { background-color: #339933; }
.tech-node::after { content: "N"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; }
.tech-python { background-color: #3776ab; }
.tech-python::after { content: "Py"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; font-size: 0.55rem; }
.tech-mysql { background-color: #00758f; }
.tech-mysql::after { content: "SQL"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; font-size: 0.45rem; }
.tech-git { background-color: #f05032; }
.tech-git::after { content: "git"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; font-size: 0.5rem; }
.tech-ssl { background-color: #0b1520; }
.tech-ssl::after { content: "🔒"; font-size: 0.7rem; line-height: 1; }
.tech-woo { background-color: #96588a; }
.tech-woo::after { content: "Woo"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; font-size: 0.42rem; }
.tech-tailwind { background-color: #38bdf8; }
.tech-tailwind::after { content: "Tw"; font-family: "DM Sans", system-ui, sans-serif; color: #0b1520; font-size: 0.55rem; }
.tech-liquid { background-color: #95bf47; }
.tech-liquid::after { content: "Liq"; font-family: "DM Sans", system-ui, sans-serif; color: #fff; font-size: 0.42rem; }
.tech-rest { background-color: #0b1520; }
.tech-rest::after { content: "{}"; font-family: ui-monospace, monospace; color: #9ae6b4; font-size: 0.55rem; }

.tech-logo::after {
  display: block;
  line-height: 1;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .tech-marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.5rem 1rem;
    transform: none;
  }
  /* Hide the duplicated loop set */
  .tech-marquee-track .tech-chip:nth-child(n+16) { display: none; }
  .tech-marquee {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }
}


/* ===== Tech marquee Variant B: quieter compare strip ===== */
.tech-marquee-label {
  margin: 0 auto 0.55rem;
  max-width: 1100px;
  padding: 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(11, 21, 32, 0.42);
}

.tech-marquee-section.tech-marquee-quiet {
  padding: 1.15rem 0 1.35rem;
  background: #fff;
  border-top: 1px solid rgba(11, 21, 32, 0.06);
  border-bottom: 1px solid rgba(11, 21, 32, 0.06);
}

.tech-marquee--quiet {
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tech-marquee-track--quiet {
  gap: 0;
  animation-duration: 55s; /* slower */
}

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

.tech-chip-quiet {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.35rem 1.15rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(11, 21, 32, 0.48);
  white-space: nowrap;
  user-select: none;
  position: relative;
}

.tech-chip-quiet + .tech-chip-quiet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(11, 21, 32, 0.22);
  transform: translate(-50%, -50%);
}

.tech-chip-quiet span {
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .tech-marquee-track--quiet {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    gap: 0.15rem 0.1rem;
    padding: 0.35rem 1rem;
    transform: none;
  }
  .tech-marquee-track--quiet .tech-chip-quiet:nth-child(n+16) { display: none; }
  .tech-marquee--quiet {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }
  .tech-chip-quiet + .tech-chip-quiet::before {
    /* keep separators in static wrap */
  }
}

/* --- 2026-08-28 audit picks --- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #0b1520;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #7eb6ff;
  outline-offset: 3px;
}
.about-avatar {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 0 1.15rem;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(160deg, #1a3348, #0b1520 70%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  flex-shrink: 0;
}
.about-avatar svg {
  width: 46px;
  height: auto;
  fill: #fff;
  opacity: 0.95;
}
.about-panel .about-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-family: "DM Sans", system-ui, sans-serif;
}
.studio-host-line {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(11, 21, 32, 0.68);
}
.pricing-page-intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.pricing-page-intro h2 {
  margin: 0 0 0.85rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.85rem, 3.6vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pricing-page-intro p {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(11, 21, 32, 0.72);
}
.pricing-page-intro p + p { margin-top: 0.85rem; }

/* --- mobile polish 2026-08-28 --- */
@media (max-width: 900px) {
  /* browser chrome + sticky nav: keep content clear of fixed chrome */
  body {
    padding-top: 0;
  }
  #after > .site-nav {
    top: var(--chrome-h, 52px);
  }
  body.inner-page .page-top {
    top: var(--chrome-h, 52px);
  }
  .hero-content {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .cta-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }
  .cta-row .btn {
    min-height: 44px;
    min-width: min(100%, 11.5rem);
    justify-content: center;
  }
  .section {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .studio-top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .plan-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .plan-toggle button {
    min-height: 44px;
  }
  .studio-features {
    font-size: 0.92rem;
  }
  .studio-price-card .btn,
  .studio-shell .btn {
    min-height: 44px;
    width: 100%;
    justify-content: center;
  }
  .form-actions {
    flex-wrap: wrap;
  }
  .form-actions .btn {
    min-height: 44px;
    flex: 1 1 12rem;
    justify-content: center;
  }
  .ba-stage {
    min-height: 220px;
  }
  .contact-meta a,
  .contact-meta span {
    min-height: 44px;
  }
  .footer-links {
    gap: 0.35rem 0.85rem;
  }
  .footer-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  /* kill accidental horizontal scroll from FX/tilt leftovers */
  body, #after, .section-inner, .studio-shell {
    max-width: 100%;
  }
  .fx-tilt,
  .work-card,
  .card {
    transform: none !important;
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: clamp(2.15rem, 11vw, 2.85rem);
  }
  .hero-content .lede {
    font-size: 1rem;
    line-height: 1.5;
  }
  .after-inner {
    padding-top: 0.85rem;
  }
  .after-inner h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }
  .studio-amount .num {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }
  .plan-toggle button {
    font-size: 0.86rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .browser-tabs {
    justify-content: center;
  }
  .page-hero {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
}

@media (max-width: 390px) {
  .cta-row .btn {
    width: 100%;
  }
  .nav-brand svg {
    width: 28px;
  }
}

/* sticky chrome + nav clearance for in-page jumps */
body.has-browser-chrome section[id],
body.has-browser-chrome #after,
body.has-browser-chrome .after-inner {
  scroll-margin-top: calc(var(--chrome-h, 52px) + 4.5rem);
}
@media (max-width: 900px) {
  body.has-browser-chrome section[id] {
    scroll-margin-top: calc(var(--chrome-h, 48px) + 4.25rem);
  }
  /* keep section titles from sitting under sticky bar while reading */
  .section > .section-inner > .section-kicker:first-child,
  .section > .section-inner.centered > .section-kicker:first-child {
    scroll-margin-top: calc(var(--chrome-h, 48px) + 4.25rem);
  }
}

/* Home section scrollspy + mobile section pill */
.site-nav .nav-links a {
  position: relative;
}
/* Dense in-page section strip on home (desktop) — page tabs live in browser chrome */
.site-nav.site-nav-sections .nav-links {
  gap: 0.2rem 0.72rem;
  font-size: 0.84rem;
  flex-wrap: nowrap;
}
.site-nav.site-nav-sections .nav-links .nav-cta {
  padding: 0.48rem 0.9rem;
  font-size: 0.84rem;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .site-nav.site-nav-sections .nav-links {
    gap: 0.15rem 0.55rem;
    font-size: 0.78rem;
  }
  .site-nav.site-nav-sections .nav-brand span {
    display: none;
  }
}
@media (max-width: 900px) {
  .site-nav.site-nav-sections .nav-links {
    flex-wrap: wrap;
    font-size: 0.95rem;
    gap: 0.15rem;
  }
}
.site-nav .nav-links a.is-active:not(.nav-cta) {
  color: var(--ink);
  font-weight: 700;
}
.site-nav .nav-links a.is-active:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.1rem;
  right: 0.1rem;
  bottom: -0.4rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0.88;
}
.site-nav .nav-links a.nav-cta.is-active {
  box-shadow: 0 0 0 2px rgba(11, 21, 32, 0.16);
}
/* Drawer: active section reads clearly on mobile too */
@media (max-width: 900px) {
  .site-nav .nav-links a.is-active:not(.nav-cta) {
    background: rgba(11, 21, 32, 0.06);
  }
  .site-nav .nav-links a.is-active:not(.nav-cta)::after {
    display: none;
  }
}

.section-pill {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(120%);
  z-index: 130;
  display: none;
  align-items: center;
  gap: 0.45rem;
  max-width: min(92vw, 18rem);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(11, 21, 32, 0.92);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(11, 21, 32, 0.28);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
}
.section-pill-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #9be7c0;
  flex: 0 0 auto;
}
.section-pill.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
@media (max-width: 900px) {
  .section-pill {
    display: inline-flex;
  }
}
@media (min-width: 901px) {
  .section-pill {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-pill {
    transition: opacity 0.15s ease;
  }
}


/* Inner-page sticky hook strip (not a second nav) */
.page-top {
  position: sticky;
  top: var(--chrome-h, 52px);
  z-index: 100;
  background: rgba(247, 248, 250, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 21, 32, 0.08);
}
body.inner-page.has-browser-chrome .page-top {
  top: var(--chrome-h, 52px);
}
.page-hook {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.15rem;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
  min-height: 3.5rem;
}
.page-hook-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}
.page-hook-brand svg {
  width: 28px;
  height: auto;
  fill: var(--ink);
  display: block;
}
.page-hook-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
}
.page-hook-title {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.page-hook-line {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(11, 21, 32, 0.62);
  max-width: 34rem;
}
.page-hook-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}
.page-hook-cta:hover {
  background: #152536;
  color: #fff !important;
}
@media (max-width: 720px) {
  .page-hook {
    flex-wrap: wrap;
    row-gap: 0.55rem;
    padding-top: 0.7rem;
    padding-bottom: 0.75rem;
  }
  .page-hook-text {
    flex: 1 1 calc(100% - 7.5rem);
    order: 2;
    width: 100%;
  }
  .page-hook-brand { order: 1; }
  .page-hook-cta {
    order: 1;
    margin-left: auto;
  }
  .page-hook-line {
    flex: 1 1 100%;
    font-size: 0.88rem;
  }
}
@media (max-width: 420px) {
  .page-hook-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}


/* === MWH ADDONS PRICING 20260828 === */
.addon-lede {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(11, 21, 32, 0.68);
  text-align: center;
}
.addon-grid .host-card {
  display: flex;
  flex-direction: column;
}
.host-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}
.host-card-head h4 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.req-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.req-badge {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(11, 21, 32, 0.08);
}
.req-badge svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}
.req-badge--adv {
  background: linear-gradient(160deg, #1a3348, #0b1520 75%);
  color: #e8f1f8;
  border-color: rgba(255, 255, 255, 0.12);
}
.req-badge--mail {
  background: linear-gradient(160deg, #1f6b4a, #145239 75%);
  color: #e8fff4;
  border-color: rgba(255, 255, 255, 0.14);
}
.req-legend {
  list-style: none;
  margin: 1.15rem auto 0;
  padding: 0.85rem 1rem;
  max-width: 44rem;
  display: grid;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 21, 32, 0.08);
  border-radius: 0.95rem;
  text-align: left;
}
.req-legend li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(11, 21, 32, 0.72);
}
.req-legend li strong {
  color: var(--ink);
  font-weight: 650;
}
.req-legend .req-badge {
  width: 1.7rem;
  height: 1.7rem;
}
.req-legend .req-badge svg {
  width: 0.95rem;
  height: 0.95rem;
}
.host-card .host-starts {
  display: block;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(11, 21, 32, 0.55);
  margin-bottom: 0.1rem;
}
/* keep old host-req hidden if leftover */
.addon-grid .host-card p.host-req { display: none; }


/* Best plan badge row */
.plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}
.plan-card-head .plan-tier { margin: 0; }

/* === portfolio type chips compact === */
.trust-strip--types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.4rem;
  margin: 0 auto 1.35rem;
  max-width: 52rem;
  padding: 0 0.25rem;
  text-align: center;
  grid-template-columns: none; /* override base grid */
}
.trust-strip--types .trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 21, 32, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: rgba(11, 21, 32, 0.68);
  white-space: nowrap;
}
/* kill base .trust-strip span { display:block } for type chips */
.trust-strip--types > span.trust-chip {
  display: inline-flex;
  font-size: 0.72rem;
  line-height: 1.2;
  color: rgba(11, 21, 32, 0.68);
}
@media (max-width: 560px) {
  .trust-strip--types {
    gap: 0.3rem 0.32rem;
    margin-bottom: 1.15rem;
  }
  .trust-strip--types .trust-chip,
  .trust-strip--types > span.trust-chip {
    padding: 0.24rem 0.52rem;
    font-size: 0.68rem;
  }
}

/* type chip random pop-in */
.trust-strip--types.is-armed .trust-chip {
  opacity: 0;
  transform: scale(0.04);
  transform-origin: center center;
  will-change: transform, opacity;
}
.trust-strip--types .trust-chip.is-pop {
  animation: trustChipPop 0.72s cubic-bezier(0.22, 1.2, 0.36, 1) forwards;
}
@keyframes trustChipPop {
  0% {
    opacity: 0;
    transform: scale(0.04);
  }
  55% {
    opacity: 1;
    transform: scale(1.12);
  }
  78% {
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trust-strip--types.is-armed .trust-chip,
  .trust-strip--types .trust-chip.is-pop {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* === lets-go intake === */
.letsgo-hero {
  padding: 2.75rem 1.5rem 0.5rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.letsgo-hero h1 {
  margin: 0 0 0.85rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.3rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.letsgo-hero p {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(11, 21, 32, 0.72);
}
.letsgo-selected {
  margin-top: 0.85rem !important;
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(11, 21, 32, 0.06);
  border: 1px solid rgba(11, 21, 32, 0.1);
  font-size: 0.92rem !important;
  font-weight: 650;
  color: var(--ink) !important;
}
.letsgo-section { padding-top: 1.5rem; }
.letsgo-form {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.letsgo-block {
  margin: 0 0 1.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid rgba(11, 21, 32, 0.1);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(11, 21, 32, 0.04);
}
.letsgo-block legend {
  padding: 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.letsgo-hint {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(11, 21, 32, 0.62);
}
.letsgo-note {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(26, 122, 76, 0.08);
  border: 1px solid rgba(26, 122, 76, 0.18);
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(11, 21, 32, 0.78);
}
.letsgo-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 800px) {
  .letsgo-plans { grid-template-columns: 1fr; }
}
.letsgo-plan { display: block; cursor: pointer; margin: 0; }
.letsgo-plan input {
  /* size/clip overridden in MWH LETSGO OVERFLOW FIX block */
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.letsgo-plan-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 100%;
  padding: 1rem 0.95rem 1.05rem;
  border-radius: 1rem;
  border: 1.5px solid rgba(11, 21, 32, 0.12);
  background: #fafbfc;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.letsgo-plan-card.is-featured {
  border-color: rgba(26, 122, 76, 0.35);
}
.letsgo-plan-card.is-on,
.letsgo-plan input:focus-visible + .letsgo-plan-card {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(11, 21, 32, 0.12);
  background: #fff;
}
.letsgo-plan-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 21, 32, 0.5);
}
.letsgo-plan-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.letsgo-plan-price {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.letsgo-plan-price s {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.85rem;
  color: rgba(11, 21, 32, 0.45);
  margin-left: 0.25rem;
}
.letsgo-plan-meta {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(11, 21, 32, 0.58);
}
.letsgo-checks {
  display: grid;
  gap: 0.45rem;
}
.letsgo-check {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.65rem;
  align-items: start;
  margin: 0;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
  color: rgba(11, 21, 32, 0.82);
}
.letsgo-check:hover { background: rgba(11, 21, 32, 0.03); }
.letsgo-check input { margin-top: 0.2rem; }
.letsgo-check em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(11, 21, 32, 0.55);
  margin-top: 0.15rem;
}
.letsgo-check-strong {
  margin-bottom: 0.45rem;
  border-color: rgba(11, 21, 32, 0.08);
  background: rgba(11, 21, 32, 0.02);
}
.letsgo-domain-own {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}
.letsgo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
@media (max-width: 640px) {
  .letsgo-grid { grid-template-columns: 1fr; }
}
.letsgo-form .field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: rgba(11, 21, 32, 0.78);
}
.letsgo-form .field input,
.letsgo-form .field textarea,
.letsgo-form .field select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(11, 21, 32, 0.14);
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.letsgo-form .field input:focus,
.letsgo-form .field textarea:focus {
  outline: 2px solid rgba(11, 21, 32, 0.25);
  outline-offset: 1px;
}
.letsgo-form .field-wide { grid-column: 1 / -1; }
.letsgo-form .req { color: #b42318; }
.letsgo-form .opt { font-weight: 500; color: rgba(11, 21, 32, 0.45); }
.letsgo-actions { margin-top: 1.15rem; display: flex; flex-wrap: wrap; gap: 0.65rem; }
.letsgo-actions .btn { min-height: 44px; }

/* === MWH LETSGO OVERFLOW FIX 20260829 === */
/* Global `input { width:100% }` made absolute plan radios + honeypots expand the page. */
.letsgo-plan {
  position: relative;
}
.letsgo-plan input[type="radio"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  left: 0 !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  box-shadow: none !important;
  background: transparent !important;
}
.hp,
input.hp,
.letsgo-form input.hp,
form input.hp {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* === MWH BACK-TO-NAV GLASS 20260829 === */
.back-to-nav {
  position: fixed;
  right: calc(0.85rem + env(safe-area-inset-right, 0px));
  bottom: calc(0.95rem + env(safe-area-inset-bottom, 0px));
  z-index: 140;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.28) 45%,
    rgba(230, 238, 246, 0.38) 100%
  );
  box-shadow:
    0 10px 28px rgba(11, 21, 32, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 -1px 0 rgba(11, 21, 32, 0.06) inset;
  -webkit-backdrop-filter: blur(18px) saturate(1.55);
  backdrop-filter: blur(18px) saturate(1.55);
  color: #0b1520;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.back-to-nav svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  display: block;
  /* peak mark points up — reads as “up” without extra chevron */
  transform: translateY(-1px);
}
.back-to-nav.is-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-nav:hover,
.back-to-nav:focus-visible {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(220, 232, 242, 0.5) 100%
  );
  box-shadow:
    0 12px 32px rgba(11, 21, 32, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  outline: none;
}
.back-to-nav:focus-visible {
  box-shadow:
    0 0 0 3px rgba(11, 21, 32, 0.2),
    0 12px 32px rgba(11, 21, 32, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}
.back-to-nav:active {
  transform: translateY(1px) scale(0.96);
}
@media (max-width: 900px) {
  .back-to-nav {
    display: inline-flex;
  }
}
@media (min-width: 901px) {
  .back-to-nav {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-nav {
    transition: opacity 0.15s ease;
  }
  .back-to-nav.is-on {
    transform: none;
  }
}
