    :root {
      --ink: #ffffff;
      --ink2: #f0f4ff;
      --ink3: #e0e8ff;
      --ink4: #b8c8f0;
      --wire: rgba(29, 78, 216, .1);
      --wire2: rgba(29, 78, 216, .18);
      --b: #1d4ed8;
      --b2: #2563eb;
      --b3: #1e40af;
      --b4: #1e3a8a;
      --blight: #3b82f6;
      --bglow: rgba(29, 78, 216, .09);
      --bglow2: rgba(29, 78, 216, .16);
      --bwire: rgba(29, 78, 216, .28);
      --dim: #111827;
      --dim2: #374151;
      --pale: #1f2937;
      --accent1: #0ea5e9;
      --accent2: #1d4ed8;
      --accent3: #1e40af;
      --accent4: #0369a1;
      --shadow: 0 1px 3px rgba(29, 78, 216, .08), 0 4px 16px rgba(29, 78, 216, .06);
      --shadow-lg: 0 4px 24px rgba(29, 78, 216, .14), 0 1px 4px rgba(29, 78, 216, .06);
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--ink);
      color: var(--pale);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      font-size: 17px;
      background-image: radial-gradient(rgba(29, 78, 216, .05) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    /* ── PAGE SYSTEM ── */
    .page {
      display: none;
      opacity: 0;
      transition: opacity .25s ease
    }

    .page.active {
      display: block;
      opacity: 1
    }

    #page-coming-soon.active {
      display: flex;
    }

    .page.fade-in {
      animation: fadeIn .25s ease forwards
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(6px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ── HEADER / NAV ── */
    header {
      position: sticky;
      top: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .75rem 4rem;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--wire);
      box-shadow: 0 1px 0 var(--wire), 0 4px 20px rgba(0, 0, 0, .04);
      min-height: 70px;
      height: auto;
      flex-wrap: nowrap;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: .04em;
      color: #111827;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .logo b {
      font-weight: 600;
      color: var(--b)
    }

    nav {
      display: flex;
      align-items: center;
      gap: clamp(.8rem, 1.8vw, 2.4rem);
      flex-shrink: 1;
      overflow: hidden;
    }

    .nav-link {
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      color: #6b7280;
      font-size: clamp(.75rem, .9vw, .95rem);
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      transition: color .2s;
      padding: 0;
      position: relative;
      white-space: nowrap;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -17px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--b);
      transform: scaleX(0);
      transition: transform .2s;
    }

    .nav-link:hover {
      color: #111827
    }

    .nav-link.active {
      color: #111827;
      font-weight: 600
    }

    .nav-link.active::after {
      transform: scaleX(1)
    }

    .nav-cta {
      border: none;
      color: #fff;
      background: linear-gradient(135deg, var(--b) 0%, var(--accent1) 100%);
      padding: .44rem 1.1rem;
      border-radius: 4px;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      transition: all .2s;
      box-shadow: 0 1px 6px rgba(29, 78, 216, .35);
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
    }

    .nav-cta:hover {
      opacity: .9;
      box-shadow: 0 3px 12px rgba(29, 78, 216, .45);
      transform: translateY(-1px)
    }

    .nav-login-btn {
      background: transparent;
      border: 1px solid var(--wire2);
      color: var(--dim);
      padding: .44rem 1.1rem;
      border-radius: 4px;
      font-size: .85rem;
      font-weight: 500;
      letter-spacing: .07em;
      text-transform: uppercase;
      transition: all .2s;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
    }

    .nav-login-btn:hover {
      border-color: var(--dim);
      color: #111827
    }

    /* ── TAPE ── */
    .tape {
      overflow: hidden;
      border-bottom: 1px solid var(--wire);
      background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #1e40af 100%);
      padding: .4rem 0;
      white-space: nowrap;
    }

    .tape-inner {
      display: inline-flex;
      animation: scroll 24s linear infinite
    }

    @keyframes scroll {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .tape-item {
      display: inline-flex;
      align-items: center;
      gap: .8rem;
      padding: 0 2rem;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
    }

    .tape-item::after {
      content: '·';
      color: rgba(255, 255, 255, .4);
      margin-left: .8rem
    }

    /* tape-dot removed - using coloured tape now */

    /* ── SHARED ── */
    .wrap {
      padding: 0 4rem
    }

    .sec {
      padding: 2.5rem 0
    }

    .sec.ruled {
      border-bottom: 1px solid var(--wire)
    }

    .sec-head {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 3.5rem;
      margin-bottom: 2rem;
      align-items: start
    }

    .sec-num {
      font-family: 'Barlow', sans-serif;
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--ink4);
      line-height: 1;
      letter-spacing: -.05em;
      padding-top: .2rem;
    }

    .sec-label {
      font-size: .76rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: .75rem
    }

    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      font-weight: 400;
      color: #111827;
      line-height: 1.1;
      letter-spacing: -.01em;
      margin-bottom: .7rem;
    }

    h2 em {
      font-style: italic;
      color: var(--b2)
    }

    .sub {
      font-size: .9rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.8;
      max-width: 520px
    }

    /* ── BUTTONS ── */
    .btn-a {
      background: linear-gradient(135deg, var(--b) 0%, #0ea5e9 100%);
      color: #fff;
      padding: .65rem 1.7rem;
      border-radius: 4px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .22s;
      border: none;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      display: inline-block;
      box-shadow: 0 2px 8px rgba(29, 78, 216, .3);
    }

    .btn-a:hover {
      opacity: .9;
      transform: translateY(-2px);
      box-shadow: 0 4px 18px rgba(29, 78, 216, .4)
    }

    .btn-b {
      color: var(--dim);
      font-size: .8rem;
      font-weight: 400;
      letter-spacing: .04em;
      text-decoration: none;
      border-bottom: 1px solid var(--wire2);
      padding-bottom: 1px;
      transition: color .2s, border-color .2s;
    }

    .btn-b:hover {
      color: var(--pale);
      border-color: var(--dim)
    }

    /* ───────────────────────────────────
   HOME PAGE
─────────────────────────────────── */

    /* ───────────────────────────────────
   HOME PAGE — reimagined hero
─────────────────────────────────── */

    .hero {
      position: relative;
      overflow: hidden;
      background: #fff;
      border-bottom: 1px solid var(--wire);
    }

    /* large decorative background numeral */
    .hero::after {
      content: '✦';
      position: absolute;
      right: -1rem;
      top: -2rem;
      font-size: 28rem;
      line-height: 1;
      color: rgba(29, 78, 216, .04);
      pointer-events: none;
      user-select: none;
    }

    .hero-inner {
      padding: 1.5rem 4rem 0;
      position: relative;
    }

    /* eyebrow */
    .kicker {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: 1.2rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .kicker::before {
      content: '';
      width: 24px;
      height: 2px;
      background: linear-gradient(90deg, var(--b), var(--accent1));
      border-radius: 2px;
      display: block;
    }

    /* headline + aside layout */
    .hero-head {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 3rem;
      align-items: end;
      margin-bottom: 2.5rem;
    }

    .hero-aside {
      padding-bottom: .4rem;
    }

    .hero-aside p {
      font-size: .88rem;
      color: var(--dim2);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    /* three value chips */
    .hero-chips {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    .hero-chip {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .78rem;
      color: var(--dim2);
      font-weight: 400;
    }

    .hero-chip-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* CTA row */
    .hero-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
    }



    /* how it works — 4 col strip */
    .hero-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--ink2);
      border-bottom: 1px solid var(--wire);
    }

    .hero-step {
      padding: 1.1rem 1.4rem;
      border-right: 1px solid var(--wire);
      display: flex;
      align-items: flex-start;
      gap: .7rem;
      transition: background .2s;
    }

    .hero-step:last-child {
      border-right: none;
    }

    .hero-step:hover {
      background: #eff6ff;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5rem);
      line-height: 1.02;
      letter-spacing: -.02em;
      font-weight: 300;
      color: #111827;
      margin-bottom: 0;
    }

    h1 em {
      font-style: italic;
      font-weight: 400;
      color: var(--b)
    }

    .hero-copy {
      font-size: .95rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.75;
      max-width: 540px;
      margin: 0 auto 1.4rem;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2rem;
    }

    /* How it works — right panel in hero */
    .hero-right {
      background: var(--ink2);
      display: flex;
      flex-direction: column;
    }

    .step-details {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: .55rem;
    }

    .step-details li {
      font-size: .9rem;
      color: var(--dim2);
      font-weight: 400;
      display: flex;
      gap: 7px;
      line-height: 1.6;
    }

    .step-details li::before {
      content: '·';
      color: var(--b);
      flex-shrink: 0
    }

    .hiw-header {
      padding: 1rem 1.4rem .8rem;
      flex-shrink: 0;
      background: linear-gradient(135deg, #eff6ff 0%, #eff6ff 100%);
      border-bottom: 1px solid var(--wire);
    }

    .hiw-header .sec-label {
      margin-bottom: .3rem
    }

    .hiw-header h3 {
      font-family: 'Barlow', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #111827;
      letter-spacing: -.02em;
      line-height: 1.15;
      margin-bottom: .25rem
    }

    .hiw-header p {
      font-size: .85rem;
      color: var(--dim2);
      font-weight: 400;
      line-height: 1.55
    }

    .hiw-list {
      display: flex;
      flex-direction: column;
    }

    .step {
      display: grid;
      grid-template-columns: 38px 1fr;
      transition: background .2s;
      border-bottom: 1px solid var(--wire);
    }

    .step:last-child {
      border-bottom: none;
    }

    .step:hover {
      background: rgba(29, 78, 216, .03)
    }

    .step-num-col {
      padding: 0 0 0 .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-idx {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--b) 0%, #0ea5e9 100%);
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(29, 78, 216, .3);
      font-family: 'Barlow', sans-serif;
    }

    .step-left {
      padding: .55rem .8rem;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .step-left h4 {
      font-size: .82rem;
      font-weight: 600;
      color: #111827;
      margin-bottom: .1rem;
      line-height: 1.3
    }

    .step-left p {
      font-size: .78rem;
      font-weight: 400;
      color: #374151;
      line-height: 1.55
    }

    /* Scroll hint */
    .hiw-footer {
      flex-shrink: 0;
      padding: .65rem 1.4rem;
      border-top: 1px solid var(--wire);
      display: flex;
      align-items: center;
    }

    .scroll-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .74rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--dim2);
      cursor: pointer;
      transition: color .2s;
      text-decoration: none;
    }

    .scroll-hint:hover {
      color: var(--dim)
    }

    .scroll-mouse {
      width: 14px;
      height: 22px;
      border: 1.5px solid var(--dim2);
      border-radius: 99px;
      position: relative;
      flex-shrink: 0;
      transition: border-color .2s;
    }

    .scroll-mouse::after {
      content: '';
      position: absolute;
      top: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 2.5px;
      height: 4px;
      border-radius: 99px;
      background: var(--b);
      animation: sdot 1.8s ease infinite;
    }

    @keyframes sdot {
      0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
      }

      75% {
        opacity: 0;
        transform: translateX(-50%) translateY(8px)
      }

      100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0)
      }
    }

    .scroll-hint:hover .scroll-mouse {
      border-color: var(--dim)
    }

    /* Pricing on home */
    .pricing-sec {
      border-bottom: 1px solid var(--wire);
      padding: 2.5rem 4rem 2rem;
    }

    .pricing-sec .sec-head {
      margin-bottom: 1.5rem
    }

    .plan {
      background: var(--ink);
      padding: 1.2rem 1.4rem;
      position: relative
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--wire);
      border: 1px solid var(--wire);
      border-radius: 6px;
      overflow: hidden
    }

    .plan-hook {
      font-size: .82rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.5;
      margin-bottom: .8rem;
      min-height: 2.2rem
    }

    .plan-sub {
      font-size: .65rem;
      color: var(--dim2);
      margin-bottom: 1rem;
      font-weight: 400
    }

    .plan-cta {
      width: 100%;
      padding: .5rem;
      border-radius: 4px;
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      cursor: pointer;
      font-family: 'Barlow', sans-serif;
      transition: all .2s;
      margin-bottom: 1rem;
    }

    .plan-div {
      border: none;
      border-top: 1px solid var(--wire);
      margin-bottom: .9rem
    }

    .plan-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .plan.on {
      background: linear-gradient(160deg, #1d4ed8 0%, #1e40af 100%);
    }

    .plan.on .plan-tag {
      color: rgba(255, 255, 255, .7);
    }

    .plan.on .plan-hook {
      color: rgba(255, 255, 255, .8);
    }

    .plan.on .plan-price {
      color: #fff;
    }

    .plan.on .plan-price sup {
      color: rgba(255, 255, 255, .7);
    }

    .plan.on .plan-price .yr {
      color: rgba(255, 255, 255, .6);
    }

    .plan.on .plan-sub {
      color: rgba(255, 255, 255, .55);
    }

    .plan.on .plan-div {
      border-top-color: rgba(255, 255, 255, .15);
    }

    .plan.on .plan-feats li {
      color: rgba(255, 255, 255, .85);
    }

    .plan.on .y {
      color: #93c5fd;
    }

    .plan.on .n {
      color: rgba(255, 255, 255, .3);
    }

    .plan-tag {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--dim2);
      margin-bottom: .4rem
    }

    .plan-price {
      font-family: 'Barlow', sans-serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: #111827;
      line-height: 1;
      margin-bottom: .25rem;
      letter-spacing: -.03em;
    }

    .plan-price sup {
      font-size: 1rem;
      vertical-align: top;
      margin-top: .55rem;
      font-family: 'Barlow', sans-serif;
      font-weight: 400;
      color: var(--dim)
    }

    .plan-price .yr {
      font-family: 'Barlow', sans-serif;
      font-size: .82rem;
      color: var(--dim);
      font-weight: 400
    }

    .plan-cta.fill {
      background: rgba(255, 255, 255, .2);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .35);
    }

    .plan-cta.fill:hover {
      background: rgba(255, 255, 255, .3);
    }

    .plan-cta.ghost {
      background: transparent;
      border: 1px solid var(--wire2);
      color: var(--dim)
    }

    .plan-cta.ghost:hover {
      border-color: rgba(255, 255, 255, .15);
      color: var(--pale)
    }

    .plan-feats li {
      font-size: .82rem;
      font-weight: 400;
      color: var(--dim);
      display: flex;
      gap: 8px;
      line-height: 1.4
    }

    .y {
      color: var(--b);
      flex-shrink: 0;
      font-weight: 600
    }

    .n {
      color: var(--dim2);
      flex-shrink: 0
    }

    /* CTA bar */
    .cta-wrap {
      border: 1px solid var(--wire);
      border-radius: 6px;
      background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
      padding: 2rem 2.5rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: center;
    }

    .cta-wrap h2 {
      margin-bottom: .6rem
    }

    .cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      flex-shrink: 0
    }

    /* ── FULL-PAGE LAYOUT (features, stories) ── */
    .full-page {
      display: flex;
      flex-direction: column;
      padding: 2rem 4rem;
      overflow: hidden;
    }

    .full-page-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 1.2rem;
      flex-shrink: 0;
    }

    .full-page-body {
      flex: 1;
      overflow: hidden
    }

    .feat-grid.full-page-body {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--wire);
      border: 1px solid var(--wire);
      border-radius: 4px;
    }

    .stories-grid.full-page-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--wire);
      border: 1px solid var(--wire);
      border-radius: 4px;
    }

    /* ── FEATURES PAGE ── */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--wire);
      border: 1px solid var(--wire);
      border-radius: 4px;
      overflow: hidden;
    }

    .feat {
      background: #fff;
      padding: 1.4rem 1.5rem;
      border: none;
      border-radius: 0;
      box-shadow: none;
      transition: background .2s;
      position: relative;
    }

    .feat:hover {
      background: var(--ink2);
    }

    .feat-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .8rem;
    }

    .feat-icon svg {
      width: 18px;
      height: 18px;
    }

    .feat h3 {
      font-size: .84rem;
      font-weight: 600;
      color: #111827;
      margin-bottom: .4rem;
      letter-spacing: .01em;
      line-height: 1.3
    }

    .feat p {
      font-size: .85rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.7
    }

    /* ───────────────────────────────────
   BUSINESS PAGE
─────────────────────────────────── */
    .b2b-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start
    }

    .note {
      font-size: .78rem;
      font-weight: 400;
      color: var(--dim);
      line-height: 1.9;
      border-left: 3px solid var(--b);
      background: #eff6ff;
      border-radius: 0 4px 4px 0;
      padding: .8rem 1rem;
      margin-top: 1.2rem;
    }

    .note strong {
      color: var(--b);
      font-weight: 500
    }

    table {
      width: 100%;
      border-collapse: collapse
    }

    thead th {
      font-size: .74rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--dim2);
      padding: .55rem .8rem;
      text-align: left;
      border-bottom: 1px solid var(--wire);
    }

    tbody td {
      font-size: .78rem;
      font-weight: 400;
      color: var(--dim);
      padding: .85rem .8rem;
      border-bottom: 1px solid var(--wire)
    }

    tbody tr:hover td {
      background: rgba(255, 255, 255, .015)
    }

    .td-hi {
      color: var(--b);
      font-weight: 500
    }

    .vol-tag {
      display: inline-block;
      background: #eff6ff;
      border: 1px solid var(--bwire);
      border-radius: 3px;
      padding: 1px 7px;
      font-size: .75rem;
      color: var(--b);
      font-weight: 500;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--wire);
      background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: .72rem;
      color: rgba(255, 255, 255, .8);
    }

    footer a {
      color: rgba(255, 255, 255, .75);
      text-decoration: none;
      transition: color .2s;
      letter-spacing: .05em;
      font-size: .72rem;
      text-transform: uppercase
    }

    footer a:hover {
      color: #fff
    }

    footer nav {
      display: flex;
      gap: 2rem
    }

    /* ── STORIES PAGE ── */
    .story {
      background: #fff;
      padding: 1.4rem 1.6rem;
      position: relative;
      border: 1px solid var(--wire);
      border-top: 3px solid var(--b);
      border-radius: 6px;
      box-shadow: var(--shadow);
      transition: transform .22s, box-shadow .22s
    }

    .story:nth-child(2) {
      border-top-color: #0ea5e9;
    }

    .story:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg)
    }

    .story:hover {
      background: var(--ink2)
    }

    .story-meta {
      display: flex;
      align-items: center;
      gap: .8rem;
      margin-bottom: .9rem
    }

    .story-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--b) 0%, var(--accent1) 100%);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .story-who {}

    .story-name {
      font-size: .88rem;
      font-weight: 600;
      color: #111827;
      line-height: 1.2
    }

    .story-role {
      font-size: .72rem;
      color: var(--dim);
      font-weight: 400;
      margin-top: 2px
    }

    .story-plan {
      position: absolute;
      top: 1.3rem;
      right: 1.5rem;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #fff;
      background: var(--b);
      border: none;
      padding: 2px 9px;
      border-radius: 99px;
    }

    .story-situation {
      font-size: .82rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.75;
      margin-bottom: .9rem;
      padding-bottom: .9rem;
      border-bottom: 1px solid var(--wire);
    }

    .story-impacts {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: .9rem
    }

    .story-impacts li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .82rem;
      color: var(--pale);
      font-weight: 400;
      line-height: 1.55
    }

    .impact-tick {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #dbeafe;
      border: 1px solid #93c5fd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .55rem;
      color: #1d4ed8;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .story-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      font-style: italic;
      color: #374151;
      line-height: 1.6;
      border-left: 2px solid var(--bwire);
      padding-left: 1.1rem;
    }


    /* ── ABOUT PAGE ── */
    /* about page styles now inline */

    .pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 1.5rem
    }

    .pillar {
      background: #fff;
      border: 1px solid var(--wire);
      border-radius: 6px;
      padding: .9rem 1rem;
      box-shadow: var(--shadow);
      transition: transform .2s, box-shadow .2s;
    }

    .pillar:nth-child(1) {
      border-top: 2px solid #1d4ed8;
    }

    .pillar:nth-child(2) {
      border-top: 2px solid #0ea5e9;
    }

    .pillar:nth-child(3) {
      border-top: 2px solid #1e40af;
    }

    .pillar:nth-child(4) {
      border-top: 2px solid #0369a1;
    }

    .pillar:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg)
    }

    .pillar-label {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--b);
      margin-bottom: .3rem
    }

    .pillar p {
      font-size: .84rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.65
    }

    .team-list {
      display: flex;
      flex-direction: column;
      gap: 0
    }

    .team-member {
      padding: 1.2rem 1.5rem;
      border-right: 1px solid var(--wire);
      background: var(--ink);
      transition: background .2s;
    }

    .team-member:last-child {
      border-right: none
    }

    .team-member:hover {
      background: #eff6ff
    }

    .member-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: .4rem
    }

    .member-name {
      font-size: .9rem;
      font-weight: 600;
      color: #111827;
      line-height: 1.2
    }

    .member-role {
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--b);
      margin-top: 2px
    }

    .member-bio {
      font-size: .82rem;
      font-weight: 400;
      color: var(--dim2);
      line-height: 1.7
    }

    .member-initials {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--b) 0%, var(--accent1) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .68rem;
      font-weight: 700;
      color: #fff;
      font-family: 'Barlow', sans-serif;
      box-shadow: 0 2px 8px rgba(29, 78, 216, .3);
    }

    /* ── LOGIN PAGE ── */
    .login-wrap {
      height: calc(100vh - 52px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }

    .login-left {
      background: linear-gradient(145deg, #1d4ed8 0%, #0ea5e9 100%);
      border-right: 1px solid var(--wire);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 2.5rem 3rem;
      position: relative;
      overflow: hidden;
    }

    .login-left::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 80% 60% at 20% 70%, rgba(255, 255, 255, .08) 0%, transparent 60%);
    }

    .login-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 400;
      letter-spacing: .04em;
      color: rgba(255, 255, 255, .9);
      position: relative;
    }

    .login-brand b {
      font-weight: 600;
      color: #fff
    }

    .login-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 3.5vw, 3.4rem);
      font-weight: 400;
      color: #fff;
      line-height: 1.08;
      letter-spacing: -.01em;
      position: relative;
    }

    .login-tagline em {
      font-style: italic;
      color: rgba(255, 255, 255, .75)
    }

    .login-right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
    }

    .login-box {
      width: 100%;
      max-width: 380px
    }

    .login-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 1.2rem;
      position: relative
    }

    .login-field label {
      font-size: .8rem;
      font-weight: 600;
      color: var(--dim);
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .login-field input {
      background: var(--ink2);
      border: 1px solid var(--wire2);
      border-radius: 4px;
      padding: .7rem .9rem;
      font-size: .85rem;
      color: #111827;
      font-family: 'Barlow', sans-serif;
      outline: none;
      transition: border-color .2s;
    }

    .login-field input:focus {
      border-color: var(--b)
    }

    .login-field input::placeholder {
      color: var(--dim2)
    }

    .forgot-link {
      position: absolute;
      right: 0;
      top: 0;
      font-size: .78rem;
      color: var(--dim);
      text-decoration: none;
      font-weight: 400;
      transition: color .2s;
      letter-spacing: .03em;
    }

    .forgot-link:hover {
      color: var(--pale)
    }

    .login-divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.4rem 0;
    }

    .login-divider::before,
    .login-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--wire)
    }

    .login-divider span {
      font-size: .68rem;
      color: var(--dim2);
      font-weight: 400;
      white-space: nowrap;
      letter-spacing: .04em
    }

    .oauth-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: transparent;
      border: 1px solid var(--wire2);
      border-radius: 4px;
      padding: .7rem;
      font-size: .8rem;
      color: var(--dim);
      font-family: 'Barlow', sans-serif;
      cursor: pointer;
      transition: all .2s;
      margin-bottom: .75rem;
      font-weight: 400;
    }

    .oauth-btn:hover {
      border-color: rgba(255, 255, 255, .15);
      color: var(--pale)
    }

    .oauth-btn svg {
      flex-shrink: 0
    }

    @media(min-width:1280px) {
      body {
        font-size: clamp(20px, 1.4vw, 26px)
      }

      h1 {
        font-size: clamp(3.8rem, 6vw, 6.5rem)
      }

      h2 {
        font-size: clamp(2.4rem, 3.5vw, 4rem)
      }

      h3 {
        font-size: clamp(1.6rem, 2vw, 2.4rem)
      }

      h4 {
        font-size: clamp(1rem, 1.2vw, 1.4rem)
      }

      .sub {
        font-size: 1.1rem
      }

      .sec-label {
        font-size: .85rem
      }

      .kicker {
        font-size: .8rem
      }

      .btn-a {
        font-size: .88rem;
        padding: .85rem 2.2rem
      }

      .btn-b {
        font-size: .88rem
      }

      /* Nav */
      header {
        padding: .85rem 5rem
      }

      .logo {
        font-size: 1.6rem
      }

      .nav-link {
        font-size: .8rem;
        letter-spacing: .08em
      }

      .nav-cta {
        font-size: .8rem;
        padding: .52rem 1.4rem
      }

      .nav-login-btn {
        font-size: .78rem
      }

      /* Hero */
      .hero {
        padding: 5rem 5rem 0
      }

      .hero-aside p {
        font-size: 1.05rem;
        line-height: 1.8
      }

      .hero-chip {
        font-size: .9rem
      }

      .hero-chip-dot {
        width: 8px;
        height: 8px
      }

      .hero-step {
        padding: 1.8rem 2.4rem
      }

      .hero-step h4 {
        font-size: 1.05rem !important
      }

      .hero-step p {
        font-size: .92rem !important
      }

      .step-idx {
        width: 26px;
        height: 26px;
        font-size: .75rem
      }

      /* Tape */
      .tape-item {
        font-size: .75rem;
        padding: 0 2.4rem
      }

      /* Pricing */
      .pricing-sec {
        padding: 4rem 5rem 3rem
      }

      .plan {
        padding: 2.2rem 2.4rem
      }

      .plan-tag {
        font-size: .84rem
      }

      .plan-hook {
        font-size: 1rem
      }

      .plan-price {
        font-size: 3.5rem
      }

      .plan-sub {
        font-size: .8rem
      }

      .plan-cta {
        font-size: .8rem
      }

      .plan-feats li {
        font-size: 1rem;
        gap: 10px
      }

      .y,
      .n {
        font-size: 1rem
      }

      /* HIW page */
      #page-hiw>div>div:first-child {
        padding: 2.2rem 5rem !important
      }

      #page-hiw>div>div:last-child>div {
        padding: 2.4rem 2.6rem
      }

      #page-hiw>div>div:last-child>div h4 {
        font-size: 1.2rem !important
      }

      #page-hiw>div>div:last-child>div p {
        font-size: 1.05rem !important;
        line-height: 1.75 !important
      }

      #page-hiw>div>div:last-child>div li {
        font-size: 1rem !important
      }

      /* Features */
      #page-features>div:first-child {
        padding: 3.5rem 5rem !important
      }

      #page-features>div:nth-child(2) {
        padding: 3.5rem 5rem !important
      }

      /* Exec */
      #exec-list {
        padding: 0 5rem
      }

      .exec-head {
        padding: 1.8rem 0
      }

      .member-name {
        font-size: 1.2rem
      }

      .member-role {
        font-size: .9rem
      }

      .exec-body p {
        font-size: 1.05rem;
        line-height: 1.9
      }

      .exec-chevron {
        font-size: 1.1rem
      }

      .li-link {
        font-size: .95rem
      }

      .member-initials {
        width: 48px;
        height: 48px;
        font-size: .82rem
      }

      /* About */
      #page-about>div {
        padding: 3.5rem 5rem !important
      }

      .pillar p {
        font-size: 1rem
      }

      .pillar-label {
        font-size: .82rem
      }

      /* Team */
      #page-team>div {
        padding: 3rem 5rem !important
      }

      .team-member {
        padding: 1.8rem 2rem
      }

      .member-bio {
        font-size: 1rem
      }

      /* Stories */
      .full-page {
        padding: 2.5rem 5rem
      }

      .story {
        padding: 2.2rem 2.4rem
      }

      .story-name {
        font-size: 1rem
      }

      .story-role {
        font-size: .82rem
      }

      .story-quote {
        font-size: 1.3rem
      }

      .story-impacts li {
        font-size: 1rem
      }

      .impact-tick {
        width: 20px;
        height: 20px;
        font-size: .7rem
      }

      /* Socials */
      #page-socials>div:first-child {
        padding: 3.5rem 5rem !important
      }

      #page-socials>div:last-child {
        padding: 2.5rem 5rem !important
      }

      /* Careers */
      #page-careers>div:first-child {
        padding: 3.5rem 5rem !important
      }

      /* Footer */
      footer {
        padding: 1.6rem 5rem;
        font-size: .82rem
      }

      footer a {
        font-size: .82rem
      }

      /* Table */
      thead th {
        font-size: .84rem;
        padding: .7rem 1rem
      }

      tbody td {
        font-size: .9rem;
        padding: 1rem 1rem
      }
    }

    @media(max-width:1024px) {
      header {
        padding: .75rem 2rem
      }

      .wrap {
        padding: 0 2rem
      }

      .pricing-sec {
        padding: 2.5rem 2rem 2rem
      }

      .full-page {
        padding: 1.5rem 2rem
      }

      .hero {
        padding: 2.5rem 2rem 0
      }

      #page-hiw>div>div:first-child {
        padding: 1.2rem 2rem !important
      }

      #page-hiw>div>div:last-child {
        grid-template-columns: 1fr !important;
        height: auto !important
      }

      #page-features>div:first-child {
        padding: 2rem 2rem !important
      }

      #page-features>div:nth-child(2) {
        padding: 2rem 2rem !important
      }

      #page-features>div:nth-child(2)>div:nth-child(2) {
        grid-template-columns: 1fr 1fr !important
      }

      #page-about>div {
        padding: 2rem 2rem !important
      }

      #page-team>div {
        padding: 1.5rem 2rem !important
      }

      #exec-list {
        padding: 0 2rem !important
      }

      #page-exec>div>div:first-child {
        padding: 1rem 2rem !important
      }

      #page-socials>div:first-child {
        padding: 2rem 2rem !important
      }

      #page-socials>div:last-child {
        padding: 1.5rem 2rem !important
      }

      #page-team>div>div:last-child {
        grid-template-columns: repeat(3, 1fr) !important
      }

      #page-about>div>div:nth-child(3) {
        grid-template-columns: repeat(3, 1fr) !important
      }

      .pricing-sec>div:first-child>div:last-child {
        grid-template-columns: 1fr !important;
        gap: .6rem
      }

      footer {
        padding: 1.2rem 2rem
      }
    }

    @media(max-width:768px) {

      /* ── HEADER ── */
      header {
        padding: .6rem 1rem;
        height: auto;
        flex-wrap: wrap;
        gap: .4rem;
      }

      .logo {
        font-size: 1rem
      }

      nav {
        gap: .2rem;
        flex-wrap: wrap;
        order: 3;
        width: 100%;
        justify-content: flex-start;
      }

      nav .nav-link {
        font-size: .58rem;
        padding: .25rem .4rem;
        letter-spacing: .04em
      }

      .nav-link::after {
        display: none
      }

      .nav-login-btn {
        display: none
      }

      .nav-cta {
        font-size: .6rem;
        padding: .35rem .65rem
      }

      /* ── HOME HERO ── */
      .hero {
        padding: 1.8rem 1.2rem 0;
        text-align: left;
      }

      .hero::after {
        display: none
      }

      .hero-inner {
        padding: 0
      }

      .hero-head {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      h1 {
        font-size: 2.4rem;
        margin-bottom: .6rem
      }

      .hero-aside p {
        font-size: .85rem
      }

      .hero-cta {
        flex-wrap: wrap;
        gap: .8rem;
        margin-bottom: 1rem
      }

      .hero-chips {
        gap: .4rem
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        margin: 0 -1.2rem
      }

      /* How it works strip — stack vertically on mobile */
      .hero-steps {
        grid-template-columns: 1fr !important;
        margin: 0 -1.2rem;
      }

      .hero-step {
        border-right: none;
        border-bottom: 1px solid var(--wire);
        padding: .9rem 1.2rem;
      }

      .hero-step:last-child {
        border-bottom: none
      }

      /* ── TAPE ── */
      .tape {
        padding: .3rem 0
      }

      /* ── PRICING ── */
      .pricing-sec {
        padding: 2rem 1.2rem
      }

      .pricing-sec>div:first-child {
        grid-template-columns: 1fr !important;
        gap: .8rem;
        margin-bottom: 1rem;
      }

      .plans {
        grid-template-columns: 1fr
      }

      .plan.on {
        order: -1
      }

      .cta-wrap {
        grid-template-columns: 1fr;
        padding: 1.4rem 1.2rem;
        gap: .8rem;
      }

      /* ── FEATURES PAGE ── */
      #page-features>div:first-child {
        padding: 1.5rem 1.2rem;
        grid-template-columns: 1fr !important;
        gap: .6rem;
      }

      #page-features>div:first-child p {
        margin-bottom: 0;
        max-width: 100% !important;
      }

      #page-features .max-w-wrapper {
        padding: 1.5rem 1.2rem
      }

      /* target the inner content div */
      #page-features>div:nth-child(2) {
        padding: 1.5rem 1.2rem;
      }

      #page-features>div:nth-child(2)>div:first-child {
        grid-template-columns: 1fr !important;
      }

      #page-features>div:nth-child(2)>div:nth-child(2) {
        grid-template-columns: 1fr 1fr !important;
      }

      /* ── HOW IT WORKS PAGE ── */
      #page-hiw>div {
        height: auto !important;
        overflow: visible !important;
      }

      #page-hiw>div>div:first-child {
        padding: 1.2rem 1.2rem !important;
        flex-direction: column;
        gap: .4rem;
      }

      #page-hiw>div>div:last-child {
        grid-template-columns: 1fr !important;
        height: auto !important;
        overflow: visible !important;
        flex: none !important;
      }

      #page-hiw>div>div:last-child>div {
        border-right: none !important;
        border-bottom: 1px solid var(--wire);
        justify-content: flex-start !important;
        gap: .8rem;
        min-height: auto !important;
      }

      /* ── STORIES PAGE ── */
      .full-page {
        padding: 1.5rem 1.2rem
      }

      .full-page-head {
        grid-template-columns: 1fr;
        gap: .6rem;
        margin-bottom: 1rem;
      }

      .stories-grid {
        grid-template-columns: 1fr !important
      }

      .story {
        padding: 1.2rem
      }

      /* ── ABOUT PAGE ── */
      #page-about>div {
        padding: 1.5rem 1.2rem
      }

      #page-about>div>div:first-child {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
      }

      #page-about .pillars {
        grid-template-columns: 1fr 1fr
      }

      #page-about>div>div:nth-child(3) {
        grid-template-columns: 1fr 1fr !important;
      }

      /* ── TEAM PAGE ── */
      #page-team>div {
        padding: 1.2rem
      }

      #page-team>div>div:last-child {
        grid-template-columns: 1fr 1fr !important;
      }

      .team-member {
        border-right: none !important;
        border-bottom: 1px solid var(--wire);
      }

      /* ── EXEC TEAM ── */
      #page-exec>div>div:first-child {
        padding: 1rem 1.2rem !important;
      }

      #exec-list {
        padding: 0 1.2rem !important
      }

      .exec-head {
        padding: .75rem 0
      }

      .exec-body {
        padding: 0 0 0 .8rem !important
      }

      .exec-body p {
        font-size: .8rem
      }

      /* ── BUSINESS PAGE ── */
      .full-page-head {
        grid-template-columns: 1fr;
        gap: .6rem
      }

      .b2b-wrap {
        grid-template-columns: 1fr;
        gap: 1.2rem
      }

      /* ── LOGIN / SIGNUP ── */
      #page-login>div,
      #page-signup>div {
        padding: 1.5rem 1rem;
        min-height: auto;
      }

      /* ── SOCIALS PAGE ── */
      #page-socials>div:first-child {
        padding: 1.5rem 1.2rem
      }

      #page-socials>div:nth-child(2) {
        grid-template-columns: 1fr !important;
        padding: 0;
      }

      #page-socials>div:last-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 1.2rem;
      }

      /* ── FOOTER ── */
      footer {
        flex-direction: column;
        gap: .7rem;
        text-align: center;
        padding: 1rem;
      }

      footer nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: .4rem;
      }

      /* ── SHARED ── */
      .wrap {
        padding: 0 1.2rem
      }

      h2 {
        font-size: 1.35rem
      }

      .sub {
        font-size: .85rem;
        max-width: 100%
      }

      /* Pricing bottom bar */
      .pricing-sec>div:last-child {
        flex-direction: column !important;
        gap: 1rem;
        align-items: flex-start !important;
      }
    }

    .exec-item {
      border-bottom: 1px solid var(--wire);
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 3rem;
      padding: 2rem 0;
    }

    .exec-item:last-child {
      border-bottom: none
    }

    .exec-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: center;
    }

    .exec-body p {
      font-size: .88rem;
      font-weight: 400;
      color: var(--dim);
      line-height: 1.8;
      margin-bottom: .6rem
    }

    .exec-body p:last-of-type {
      margin-bottom: 0
    }

    .li-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--b);
      text-decoration: none;
      font-size: .82rem;
      font-weight: 500;
      margin-top: .4rem
    }
