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

    :root {
      --blue: #1A6FBF;
      --blue-dark: #0D4F8C;
      --blue-light: #E3EFF9;
      --green: #2B8A3E;
      --green-dark: #1A5C28;
      --green-light: #E4F5E8;
      --gold-bright: #F5C842;
      --text: #1a1a1a;
      --text-muted: #4a4a4a;
      --text-subtle: #888;
      --border: rgba(0, 0, 0, 0.08);
      --bg: #f7f9fb;
      --white: #ffffff;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', -apple-system, sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 1.65;
    }

    a {
      color: var(--blue);
      text-decoration: none;
    }

    img {
      max-width: 100%;
    }

    /* TM superscript style */
    .tm {
      font-size: .5em;
      vertical-align: super;
      letter-spacing: 0;
      font-style: normal;
      font-weight: 500;
      opacity: .75;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }

    .nav-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo img {
      height: 42px;
      width: 42px;
      border-radius: 7px;
    }

    .nav-logo-name {
      font-family: 'Lora', serif;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.3px;
    }

    .nav-logo-name .m {
      color: var(--blue);
    }

    .nav-logo-name .s {
      color: var(--green);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
      margin-right: 18px;
    }

    .nav-links a {
      color: var(--text-muted);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: color .15s;
    }

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

    .nav-cta {
      background: var(--blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 22px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      text-decoration: none;
      display: inline-block;
      transition: background .2s, transform .15s;
    }
    
    @media (max-width: 640px) {
  .nav-cta {
    display: none;
  }
}

    .nav-cta:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    /* ── HERO ── */
    .hero {
      padding: 6rem 2rem 5rem;
      background: linear-gradient(160deg, #eef6ff 0%, #f3fbf5 50%, #fffdf0 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--blue) 0%, var(--green) 50%, var(--gold-bright) 100%);
    }

    .hero-inner {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* staggered fade-up on load */
    .hero-inner>* {
      opacity: 0;
      transform: translateY(16px);
      animation: fadeup .55s ease forwards;
    }

    .hero-inner>*:nth-child(1) {
      animation-delay: .05s;
    }

    .hero-inner>*:nth-child(2) {
      animation-delay: .15s;
    }

    .hero-inner>*:nth-child(3) {
      animation-delay: .25s;
    }

    .hero-inner>*:nth-child(4) {
      animation-delay: .35s;
    }

    .hero-inner>*:nth-child(5) {
      animation-delay: .45s;
    }

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

    .hero-logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: .25rem;
    }

    .hero-logo-wrap img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      border-radius: 12px;
    }

    .hero-brand {
      text-align: left;
    }

    .hero-brand-name {
      font-family: 'Lora', serif;
      font-size: 44px;
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1;
    }

    .hero-brand-name .m {
      color: var(--blue);
    }

    .hero-brand-name .s {
      color: var(--green);
    }

    .hero-slogan {
      font-size: 13px;
      color: var(--text-subtle);
      font-style: italic;
      margin-top: 5px;
      letter-spacing: .02em;
    }

    .hero h1 {
      font-family: 'Lora', serif;
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 600;
      line-height: 1.25;
      color: var(--text);
      margin-bottom: 1.25rem;
      letter-spacing: -.3px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--green-dark);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 580px;
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .hero-built {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-muted);
      margin-bottom: 2.25rem;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    }

    .built-dot {
      width: 7px;
      height: 7px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(.8)
      }
    }

    .hero-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 15px 40px;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(26, 111, 191, .3);
      text-decoration: none;
      display: inline-block;
      transition: transform .15s, box-shadow .2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(26, 111, 191, .38);
    }

    .cta-note {
      font-size: .8rem;
      color: var(--text-subtle);
      font-style: italic;
    }

    /* ── WHO ── */
    .who {
      padding: 5rem 2rem;
      background: var(--white);
    }

    .who-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 11.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .09em;
      margin-bottom: .85rem;
    }

    .lbl-blue {
      color: var(--blue);
    }

    .lbl-green {
      color: var(--green-dark);
    }

    .section-h {
      font-family: 'Lora', serif;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 600;
      line-height: 1.25;
      letter-spacing: -.3px;
      margin-bottom: 1rem;
      color: var(--text);
    }

    .section-p {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 3rem;
    }

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

    .who-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.5rem 1.25rem;
      text-align: center;
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }

    .who-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
      border-color: rgba(26, 111, 191, .2);
    }

    .who-icon {
      font-size: 1.75rem;
      margin-bottom: .6rem;
      display: block;
    }

    .who-card h3 {
      font-size: .875rem;
      font-weight: 600;
      color: var(--text);
    }

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

    /* ── WHAT ── */
    .what {
      padding: 5rem 2rem;
      background: var(--bg);
    }

    .what-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .pillars {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .pillar {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      position: relative;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s;
    }

    .pillar:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
    }

    .pillar-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .pa-blue {
      background: var(--blue);
    }

    .pa-green {
      background: var(--green);
    }

    .pa-gold {
      background: var(--gold-bright);
    }

    .pillar-icon {
      font-size: 1.75rem;
      margin-bottom: 1rem;
      display: block;
    }

    .pillar h3 {
      font-family: 'Lora', serif;
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: .5rem;
      color: var(--text);
    }

    .pillar p {
      font-size: .9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── SC PILOT ── */
    .pilot {
      padding: 3.5rem 2rem;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .pilot-inner {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }

    .pilot-flag {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue-light), var(--green-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
    }

    .pilot-text h3 {
      font-family: 'Lora', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .5rem;
    }

    .pilot-text p {
      font-size: .95rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* ── CTA ── */
    .cta {
      padding: 6rem 2rem;
      background: linear-gradient(135deg, var(--blue-dark) 0%, var(--green-dark) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 200, 66, .1) 0%, transparent 65%);
    }

    .cta-inner {
      max-width: 560px;
      margin: 0 auto;
      position: relative;
    }

    .cta h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 1rem;
      letter-spacing: -.3px;
    }

    .cta h2 em {
      font-style: italic;
      color: var(--gold-bright);
    }

    .cta p {
      font-size: 1rem;
      color: rgba(255, 255, 255, .7);
      margin-bottom: 2.25rem;
      line-height: 1.75;
    }

    .btn-white {
      background: #fff;
      color: var(--blue-dark);
      border: none;
      border-radius: 10px;
      padding: 15px 40px;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
      text-decoration: none;
      display: inline-block;
      transition: transform .15s, box-shadow .2s;
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    }

    .cta-sub {
      font-size: .8rem;
      color: rgba(255, 255, 255, .35);
      margin-top: 1.25rem;
      font-style: italic;
    }

    /* ── FOOTER ── */
    footer {
      background: #0a1628;
      padding: 2rem;
    }

    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .footer-logo img {
      height: 26px;
      width: 26px;
      border-radius: 5px;
    }

    .footer-logo-name {
      font-family: 'Lora', serif;
      font-size: 16px;
      font-weight: 600;
    }

    .footer-logo-name .m {
      color: #fff;
    }

    .footer-logo-name .s {
      color: var(--gold-bright);
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-links a {
      font-size: .8rem;
      color: rgba(255, 255, 255, .35);
      text-decoration: none;
      transition: color .15s;
    }

    .footer-links a:hover {
      color: rgba(255, 255, 255, .7);
    }

    .footer-copy {
      font-size: .75rem;
      color: rgba(255, 255, 255, .2);
      width: 100%;
      text-align: center;
      margin-top: 8px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .hero {
        padding: 4rem 1.25rem 4rem;
      }

      .who,
      .what,
      .cta {
        padding: 3.5rem 1.25rem;
      }

      .pilot {
        padding: 3rem 1.25rem;
      }

      .pilot-inner {
        flex-direction: column;
        gap: 1rem;
      }

      .hero-brand-name {
        font-size: 36px;
      }

      .hero-logo-wrap img {
        width: 52px;
        height: 52px;
      }

      footer .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .brand-word {
      white-space: nowrap;
      display: inline-flex;
      align-items: flex-start;
      gap: 0;
    }

    /* ── SCREENSHOT SHOWCASE ── */
.screenshot-showcase {
  padding: 3rem 2rem 5rem;
  background: var(--white);
}

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

.screenshot-inner img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.screenshot-inner p {
  margin-top: 1rem;
  font-size: .95rem;
  color: var(--text-muted);
}

/* ── WORKFLOW SCREENSHOTS ── */
.workflow-shots {
  padding: 5rem 2rem;
  background: var(--white);
}

.workflow-inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

.shot-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.shot-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border);
}

.shot-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1rem 1rem .35rem;
  color: var(--text);
}

.shot-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 1rem 1.25rem;
}

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

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

@media (max-width: 640px) {
  .nav-cta {
    display: none !important;
  }
}

/* ── INTERIOR PAGES ── */
.page-hero {
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, #eef6ff 0%, #f3fbf5 58%, #fffdf0 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.page-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--blue);
  margin-bottom: .85rem;
}

.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
  color: var(--text);
}

.page-hero h1 em {
  color: var(--green-dark);
  font-style: italic;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-section {
  padding: 5rem 2rem;
  background: var(--white);
}

.page-section.alt {
  background: var(--bg);
}

.page-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.content-narrow p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

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

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

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.alt .info-card {
  background: var(--white);
}

.info-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.info-card h2,
.info-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .55rem;
  color: var(--text);
}

.info-card p {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.check-list {
  list-style: none;
  display: grid;
  gap: .85rem;
}

.check-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.check-list li strong {
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  margin-right: .55rem;
}

.contact-panel {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 12px 36px rgba(0,0,0,.07);
  text-align: center;
}

.contact-panel h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: .75rem;
}

.contact-panel p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 1px solid rgba(26,111,191,.25);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(26,111,191,.45);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.mini-cta {
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}

.mini-cta h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: .75rem;
}

.mini-cta p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.footer-links {
  row-gap: 10px;
}

@media (max-width: 800px) {
  .content-grid,
  .content-grid.two,
  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 0 1.25rem;
  }

  .page-hero {
    padding: 4rem 1.25rem 3.5rem;
  }

  .page-section {
    padding: 3.5rem 1.25rem;
  }

  .contact-panel {
    padding: 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn-primary,
  .contact-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* Tab system */
    .tab-nav {
      display: flex;
      gap: 0;
      border-bottom: 2px solid var(--border);
      margin-bottom: 2.5rem;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .tab-nav::-webkit-scrollbar { display: none; }

    .tab-btn {
      background: none;
      border: none;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      padding: .75rem 1.4rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-subtle);
      cursor: pointer;
      white-space: nowrap;
      transition: color .15s, border-color .15s;
    }
    .tab-btn:hover { color: var(--blue); }
    .tab-btn.active {
      color: var(--blue);
      border-bottom-color: var(--blue);
    }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Step list */
    .step-list {
      display: grid;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .step {
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 1rem;
      align-items: start;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.25rem 1.25rem 1.25rem 1rem;
    }
    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      font-weight: 700;
      font-size: .85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .step-body h3 {
      font-family: 'Lora', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .35rem;
    }
    .step-body p {
      font-size: .94rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
    }
    .step-body p + p { margin-top: .5rem; }

    /* Role badge */
    .role-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: linear-gradient(135deg, var(--blue-light), var(--green-light));
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--blue-dark);
      margin-bottom: 1.5rem;
    }

    /* Tip box */
    .tip-box {
      background: var(--blue-light);
      border: 1px solid rgba(26,111,191,.15);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      font-size: .9rem;
      color: var(--blue-dark);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .tip-box strong { color: var(--blue-dark); }

    /* Feature grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .feature-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.25rem;
    }
    .feature-card .fc-icon {
      font-size: 1.4rem;
      margin-bottom: .5rem;
      display: block;
    }
    .feature-card h4 {
      font-family: 'Lora', serif;
      font-size: .97rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .3rem;
    }
    .feature-card p {
      font-size: .87rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
    }

    /* Section sub-heading */
    .sub-heading {
      font-family: 'Lora', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--text);
      margin: 2rem 0 1rem;
    }

    /* Workflow strip */
    .workflow-strip {
      display: flex;
      align-items: center;
      gap: .5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      padding: 1rem 1.25rem;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-size: .85rem;
      color: var(--text-muted);
    }
    .wf-step {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 5px 12px;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
    }
    .wf-arrow { color: var(--text-subtle); font-size: .8rem; }

    /* Help footer */
    .help-footer {
      background: linear-gradient(135deg, var(--blue-light), var(--green-light));
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      text-align: center;
      margin-top: 2.5rem;
    }
    .help-footer h3 {
      font-family: 'Lora', serif;
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: .5rem;
    }
    .help-footer p {
      font-size: .92rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
    }

    @media (max-width: 640px) {
      .feature-grid { grid-template-columns: 1fr; }
      .step { grid-template-columns: 36px 1fr; gap: .75rem; }
    }

/* ── FINAL POLISH OVERRIDES ── */
/* Brand wordmark spacing fix */
.brand-word {
  white-space: nowrap;
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.brand-word .m,
.brand-word .s,
.brand-word .tm {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.tm {
  font-size: 0.45em;
  line-height: 1;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 500;
  opacity: .75;
  transform: translateY(-0.35em);
}

/* Mobile nav and onboarding tab polish */
@media (max-width: 640px) {
  .nav-logo-name {
    font-size: 18px;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
  }

  .nav-inner {
    height: 58px;
  }

  .tab-btn {
    padding: .7rem 1rem;
    font-size: .85rem;
  }
}

/* ── 2026 messaging refresh additions ── */
.record-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.record-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .045);
}

.record-card span {
  display: block;
  font-size: 1.55rem;
  margin-bottom: .65rem;
}

.record-card strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
}

.record-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

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

.module-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.45rem 1.25rem;
  position: relative;
  min-height: 210px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
  border-color: rgba(26, 111, 191, .2);
}

.module-card.ready {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.module-card.planned {
  background: #fbfbfb;
}

.module-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .85rem;
}

.module-card.planned .module-status {
  background: var(--green-light);
  color: var(--green-dark);
}

.module-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: .45rem;
  color: var(--text);
}

.module-card p {
  font-size: .89rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.workflow-strip.large {
  margin-bottom: 2.5rem;
}

.callout-card {
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border: 1px solid rgba(26, 111, 191, .14);
  border-radius: 18px;
  padding: 1.75rem;
  align-self: stretch;
}

.callout-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .65rem;
  color: var(--text);
}

.callout-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .record-grid,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .record-section {
    padding: 3.5rem 1.25rem;
  }

  .record-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: auto;
  }
}
