:root {
    --bone: #f4f1ea;
    --bone-warm: #ebe6db;
    --paper: #ffffff;
    --ink: #0a0d0a;
    --ink-mid: #2a2f2a;
    --ink-soft: #5a615a;
    --ink-muted: #8a8f8a;
    --rule: rgba(10,13,10,.08);
    --rule-strong: rgba(10,13,10,.16);
    --rx: #c4361c;
    --rx-deep: #962910;
    --pill-bg: #e8e1d2;
    --leaf: #2b4a35;

    --ff-display: 'Fraunces', 'Times New Roman', serif;
    --ff-body: 'Manrope', system-ui, sans-serif;
    --ff-mono: 'JetBrains Mono', 'Courier New', monospace;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bone);
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* Subtle paper grain */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
  }

  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: var(--bone);
    padding: 10px 16px;
    z-index: 1001;
    text-decoration: none;
    font-weight: 600;
  }
  .skip-link:focus { left: 8px; top: 8px; }

  .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ============================================================
     NAV
     ============================================================ */
  .nav {
    padding: 28px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rule);
  }

  .logo {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -.02em;
    color: var(--ink);
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
  }

  .logo .dot {
    color: var(--rx);
    font-weight: 900;
  }

  .logo .tld {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: .95em;
  }

  .nav-meta {
    font-family: var(--ff-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-muted);
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero {
    padding: 80px 0 100px;
    position: relative;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-family: var(--ff-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--rx);
    font-weight: 600;
  }

  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--rx);
  }

  .hero-headline {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
    line-height: .98;
    letter-spacing: -.035em;
    color: var(--ink);
    margin-bottom: 32px;
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--rx);
    font-weight: 400;
  }

  .hero-headline .stroke {
    position: relative;
    display: inline-block;
  }

  .hero-headline .stroke::after {
    content: '';
    position: absolute;
    bottom: 0.08em;
    left: -2%;
    width: 104%;
    height: 0.08em;
    background: var(--rx);
    z-index: -1;
    opacity: .15;
    transform: skewY(-1.5deg);
  }

  .hero-sub {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.45;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 56px;
    font-variation-settings: "opsz" 18;
  }

  .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.01em;
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--bone);
  }

  .btn-primary:hover {
    background: var(--rx);
    transform: translateY(-1px);
  }

  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
  }

  .btn-secondary:hover {
    background: var(--ink);
    color: var(--bone);
    transform: translateY(-1px);
  }

  .btn-price {
    font-family: var(--ff-mono);
    font-weight: 700;
    font-size: .82rem;
    padding: 4px 8px;
    border-radius: 3px;
    margin-left: 4px;
    white-space: nowrap;
  }

  .btn-primary .btn-price {
    background: rgba(255,255,255,.15);
    color: #fff;
  }

  .btn-secondary .btn-price {
    background: rgba(10,13,10,.08);
    color: var(--ink);
  }

  .btn-arrow {
    display: inline-block;
    transition: transform .2s ease;
  }

  .btn:hover .btn-arrow {
    transform: translateX(4px);
  }

  .hero-pricing-note {
    margin-top: 20px;
    font-family: var(--ff-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .hero-pricing-note a {
    color: var(--rx);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
  }

  /* Rx flourish in hero corner */
  .rx-flourish {
    position: absolute;
    top: 100px;
    right: 32px;
    font-family: var(--ff-display);
    font-size: 12rem;
    line-height: 1;
    color: var(--rx);
    opacity: .06;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    transform: rotate(-8deg);
  }

  @media (max-width: 768px) {
    .rx-flourish { display: none; }
    .hero { padding: 48px 0 64px; }
    .hero-tag { margin-bottom: 28px; }
    .hero-headline { margin-bottom: 24px; }
    .hero-sub { margin-bottom: 40px; }
  }

  /* ============================================================
     TRUST BAR
     ============================================================ */
  .trust {
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--bone-warm);
    padding: 32px 0;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    align-items: center;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .trust-num {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.02em;
    font-variation-settings: "opsz" 72;
  }

  .trust-num em {
    font-style: italic;
    color: var(--rx);
    font-weight: 400;
  }

  .trust-label {
    font-family: var(--ff-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-muted);
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .trust-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .trust-num { font-size: 1.6rem; }
  }

  /* ============================================================
     SECTION SHARED
     ============================================================ */
  .section {
    padding: 100px 0;
    position: relative;
  }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--rx);
    font-weight: 600;
    margin-bottom: 24px;
  }

  .section-eyebrow::before {
    content: '§';
    font-family: var(--ff-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--rx);
  }

  .section-h2 {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 800px;
    font-variation-settings: "opsz" 96;
  }

  .section-h2 em {
    font-style: italic;
    color: var(--rx);
    font-weight: 400;
  }

  .section-intro {
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 64px;
  }

  @media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-intro { margin-bottom: 40px; }
  }

  /* ============================================================
     WHAT YOU GET
     ============================================================ */
  .features {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }

  .feature {
    background: var(--paper);
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: background .2s ease;
  }

  .feature:hover {
    background: var(--bone);
  }

  .feature-num {
    font-family: var(--ff-mono);
    font-size: .7rem;
    color: var(--rx);
    font-weight: 700;
    letter-spacing: .1em;
    flex-shrink: 0;
    width: 30px;
    padding-top: 6px;
  }

  .feature-body h3 {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.015em;
    font-variation-settings: "opsz" 36;
  }

  .feature-body p {
    font-size: .96rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  @media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature { padding: 28px 24px; }
  }

  /* ============================================================
     HOW IT WORKS
     ============================================================ */
  .how-it-works {
    background: var(--ink);
    color: var(--bone);
    position: relative;
    overflow: hidden;
  }

  .how-it-works::before {
    content: 'Rx';
    position: absolute;
    top: -40px;
    right: -40px;
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 20rem;
    color: var(--rx);
    opacity: .08;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }

  .how-it-works .section-eyebrow {
    color: #ff6b50;
  }

  .how-it-works .section-eyebrow::before {
    color: #ff6b50;
  }

  .how-it-works .section-h2 {
    color: var(--bone);
  }

  .how-it-works .section-h2 em {
    color: #ff6b50;
  }

  .how-it-works .section-intro {
    color: rgba(244,241,234,.65);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .step {
    padding: 36px 28px;
    border: 1px solid rgba(244,241,234,.12);
    background: rgba(244,241,234,.03);
    transition: all .25s ease;
  }

  .step:hover {
    background: rgba(244,241,234,.06);
    border-color: rgba(244,241,234,.25);
    transform: translateY(-3px);
  }

  .step-num {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 3.5rem;
    line-height: 1;
    color: #ff6b50;
    margin-bottom: 20px;
    font-weight: 400;
    font-variation-settings: "opsz" 96;
  }

  .step h3 {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--bone);
    margin-bottom: 10px;
    letter-spacing: -.015em;
  }

  .step p {
    font-size: .95rem;
    line-height: 1.6;
    color: rgba(244,241,234,.7);
  }

  .step-time {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--ff-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(244,241,234,.45);
    padding: 4px 10px;
    border: 1px solid rgba(244,241,234,.15);
    border-radius: 3px;
  }

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

  /* ============================================================
     STATES + PRICING TABLE
     ============================================================ */
  .states-section {
    background: var(--bone);
  }

  .price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    border: 1px solid var(--rule-strong);
  }

  .price-table caption {
    caption-side: top;
    text-align: left;
    font-family: var(--ff-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-muted);
    padding-bottom: 12px;
  }

  .price-table thead th {
    font-family: var(--ff-mono);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-muted);
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--rule-strong);
    background: var(--bone-warm);
  }

  .price-table thead th.num { text-align: right; }

  .price-table tbody tr {
    border-bottom: 1px solid var(--rule);
    transition: background .15s ease;
  }

  .price-table tbody tr:last-child { border-bottom: none; }

  .price-table tbody tr:hover { background: var(--bone); }

  .price-table td {
    padding: 16px 18px;
    vertical-align: middle;
  }

  .st-cell {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .st-abbr {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.02em;
    font-variation-settings: "opsz" 36;
  }

  .st-name {
    font-family: var(--ff-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-muted);
  }

  .price-table td.num {
    text-align: right;
    font-family: var(--ff-mono);
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
    white-space: nowrap;
  }

  .price-table td.num .dash { color: var(--ink-muted); font-weight: 400; }

  .st-note {
    font-size: .86rem;
    line-height: 1.45;
    color: var(--ink-soft);
  }

  .st-book {
    text-align: right;
    white-space: nowrap;
  }

  .st-book a {
    font-family: var(--ff-mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: var(--rx);
    text-decoration: none;
    border-bottom: 1px solid rgba(196,54,28,.3);
    padding-bottom: 2px;
    transition: all .15s ease;
  }

  .st-book a:hover {
    color: var(--rx-deep);
    border-color: var(--rx-deep);
  }

  .price-foot {
    margin-top: 20px;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 720px;
  }

  .price-foot strong { color: var(--ink); }

  @media (max-width: 820px) {
    .price-table thead { display: none; }
    .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
    .price-table tr {
      padding: 18px 16px;
      border-bottom: 1px solid var(--rule-strong);
    }
    .price-table td { padding: 4px 0; }
    .price-table td.num {
      text-align: left;
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }
    .price-table td.num::before {
      content: attr(data-label);
      font-family: var(--ff-mono);
      font-size: .66rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--ink-muted);
      font-weight: 600;
    }
    .st-book { text-align: left; padding-top: 10px !important; }
  }

  /* ============================================================
     CTA STRIP
     ============================================================ */
  .cta-strip {
    background: var(--rx);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-strip::before {
    content: '℞';
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    font-family: var(--ff-display);
    font-size: 18rem;
    line-height: 1;
    color: rgba(255,255,255,.08);
    font-weight: 900;
    pointer-events: none;
  }

  .cta-strip h2 {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    font-variation-settings: "opsz" 72;
  }

  .cta-strip h2 em {
    font-style: italic;
    color: #ffe1d8;
  }

  .cta-strip p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 32px;
    position: relative;
  }

  .cta-strip .btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }

  .btn-on-red {
    background: #fff;
    color: var(--rx);
  }

  .btn-on-red:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
  }

  .btn-on-red-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
  }

  .btn-on-red-outline:hover {
    background: #fff;
    color: var(--rx);
    border-color: #fff;
    transform: translateY(-1px);
  }

  .btn-on-red .btn-price {
    background: rgba(196,54,28,.15);
    color: var(--rx);
  }

  .btn-on-red-outline .btn-price {
    background: rgba(255,255,255,.15);
    color: #fff;
  }

  /* ============================================================
     FAQ
     ============================================================ */
  .faq-section {
    background: var(--bone);
  }

  .faq-list {
    border-top: 1px solid var(--rule-strong);
  }

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

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -.015em;
    transition: color .2s ease;
    font-variation-settings: "opsz" 36;
  }

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

  .faq-item summary:hover {
    color: var(--rx);
  }

  .faq-marker {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--rule-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-mono);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    transition: all .2s ease;
  }

  .faq-item[open] .faq-marker {
    background: var(--rx);
    border-color: var(--rx);
    color: #fff;
    transform: rotate(45deg);
  }

  .faq-item[open] summary {
    color: var(--ink);
  }

  .faq-body {
    padding: 0 56px 32px 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
  }

  .faq-body p { margin-bottom: 12px; }
  .faq-body p:last-child { margin-bottom: 0; }
  .faq-body strong { color: var(--ink); }
  .faq-body a {
    color: var(--rx);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
  }

  @media (max-width: 640px) {
    .faq-item summary { font-size: 1.05rem; padding: 22px 0; }
    .faq-body { padding-right: 0; }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  .footer {
    background: var(--ink);
    color: var(--bone);
    padding: 64px 0 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand .logo {
    color: var(--bone);
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .footer-brand .tld {
    color: rgba(244,241,234,.5);
  }

  .footer-brand p {
    color: rgba(244,241,234,.6);
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 420px;
  }

  .footer-powered {
    font-family: var(--ff-mono);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(244,241,234,.4);
    padding-top: 16px;
    border-top: 1px solid rgba(244,241,234,.12);
  }

  .footer-powered a {
    color: rgba(244,241,234,.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(244,241,234,.2);
  }

  .footer-powered a:hover {
    color: #ff6b50;
    border-color: #ff6b50;
  }

  .footer-col h4 {
    font-family: var(--ff-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(244,241,234,.45);
    margin-bottom: 18px;
    font-weight: 600;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col li {
    margin-bottom: 10px;
  }

  .footer-col a {
    color: var(--bone);
    text-decoration: none;
    font-size: .95rem;
    transition: color .2s;
  }

  .footer-col a:hover {
    color: #ff6b50;
  }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(244,241,234,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom p {
    font-family: var(--ff-mono);
    font-size: .72rem;
    color: rgba(244,241,234,.45);
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  @media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ============================================================
     ANIMATIONS
     ============================================================ */
  .stagger > * {
    opacity: 0;
    transform: translateY(16px);
    animation: stagger-in .7s ease forwards;
  }

  .stagger > *:nth-child(1) { animation-delay: .1s; }
  .stagger > *:nth-child(2) { animation-delay: .2s; }
  .stagger > *:nth-child(3) { animation-delay: .3s; }
  .stagger > *:nth-child(4) { animation-delay: .4s; }
  .stagger > *:nth-child(5) { animation-delay: .5s; }

  @keyframes stagger-in {
    to { opacity: 1; transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  /* ============================================================
     SITE HEADER (shared)
     ============================================================ */
  .site-header{
    position: sticky; top: 0; z-index: 900;
    background: rgba(244,241,234,.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
  }
  .hdr-inner{ display:flex; align-items:center; gap:28px; padding:16px 0; }
  .hdr-nav{ display:flex; gap:26px; margin-left:auto; align-items:center; }
  .hdr-nav a{
    font-family: var(--ff-body); font-size:.93rem; font-weight:600;
    color: var(--ink-soft); text-decoration:none; letter-spacing:-.01em;
    transition: color .15s ease; white-space:nowrap;
  }
  .hdr-nav a:hover{ color: var(--rx); }
  .hdr-nav a[aria-current="page"]{ color: var(--ink); border-bottom:2px solid var(--rx); padding-bottom:2px; }
  .hdr-cta{
    padding:11px 20px; border-radius:4px;
    background: var(--ink); color: var(--bone);
    font-family: var(--ff-body); font-weight:700; font-size:.9rem;
    text-decoration:none; white-space:nowrap;
    transition: background .2s ease, transform .2s ease;
  }
  .hdr-cta:hover{ background: var(--rx); transform: translateY(-1px); }

  @media (max-width: 760px){
    .hdr-inner{ flex-wrap: wrap; gap:14px; padding:14px 0; }
    .hdr-cta{ margin-left:auto; padding:9px 16px; font-size:.85rem; }
    .hdr-nav{
      order:3; width:100%; margin-left:0; gap:20px;
      overflow-x:auto; padding-top:2px;
      -ms-overflow-style:none; scrollbar-width:none;
    }
    .hdr-nav::-webkit-scrollbar{ display:none; }
  }

  /* ============================================================
     FOOTER — four column variant
     ============================================================ */
  .footer-grid.cols4{ grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  @media (max-width: 900px){
    .footer-grid.cols4{ grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px){
    .footer-grid.cols4{ grid-template-columns: 1fr; }
  }

  /* ============================================================
     RENEW PAGE
     ============================================================ */
  .page-hero{ padding: 72px 0 64px; position:relative; }
  .page-hero h1{
    font-family: var(--ff-display); font-weight:500;
    font-size: clamp(2.3rem, 5.5vw, 4.2rem); line-height:1.0;
    letter-spacing:-.03em; color: var(--ink); margin-bottom:24px;
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }
  .page-hero h1 em{ font-style:italic; color: var(--rx); font-weight:400; }
  .page-hero .lede{
    font-family: var(--ff-display); font-weight:400;
    font-size: clamp(1.02rem, 1.9vw, 1.3rem); line-height:1.45;
    color: var(--ink-soft); max-width:620px; margin-bottom:40px;
    font-variation-settings: "opsz" 18;
  }
  @media (max-width:768px){ .page-hero{ padding:44px 0 44px; } }

  .notice{
    border-left: 3px solid var(--rx);
    background: var(--bone-warm);
    padding: 20px 24px; margin: 8px 0 0;
    max-width: 720px;
  }
  .notice p{ font-size:.98rem; line-height:1.6; color: var(--ink-mid); margin:0; }
  .notice p + p{ margin-top:10px; }
  .notice strong{ color: var(--ink); }

  .rn-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:1px; background:var(--rule); border:1px solid var(--rule); }
  .rn-cell{ background: var(--paper); padding:30px 26px; }
  .rn-cell h3{
    font-family: var(--ff-display); font-weight:600; font-size:1.22rem;
    color: var(--ink); margin-bottom:10px; letter-spacing:-.015em;
    font-variation-settings: "opsz" 36;
  }
  .rn-cell p{ font-size:.95rem; line-height:1.55; color: var(--ink-soft); }
  @media (max-width:820px){ .rn-grid{ grid-template-columns:1fr; } }
