 /* ─── CSS VARIABLES ─────────────────────────────── */
    :root {
      --cream: #f8f5ef;
      --white: #ffffff;
      --ink: #111110;
      --ink-soft: #3d3b35;
      --muted: #9a9590;
      --teal: #0a7c66;
      --teal-hover: #0e9e83;
      --teal-pale: #e4f4ef;
      --teal-pale2: #cdeee5;
      --gold: #c08020;
      --gold-pale: #fdf3e0;
      --border: #e6e0d6;
      --shadow-sm: 0 2px 16px rgba(17,17,16,.07);
      --shadow-md: 0 6px 40px rgba(17,17,16,.11);
      --radius: 14px;
    }

    /* ─── BASE ──────────────────────────────────────── */
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; letter-spacing: -0.03em; }

    .mono { font-family: 'Fira Code', monospace; }

    .text-teal  { color: var(--teal) !important; }
    .text-gold  { color: var(--gold) !important; }
    .text-muted-custom { color: var(--muted); }
    .bg-cream   { background: var(--cream); }
    .bg-teal    { background: var(--teal); }
    .border-teal{ border-color: var(--teal) !important; }

    /* ─── BUTTONS ───────────────────────────────────── */
    .btn-teal {
      background: var(--teal);
      color: #fff;
      border: 2px solid var(--teal);
      border-radius: 8px;
      font-weight: 700;
      font-size: .9rem;
      padding: .75rem 1.6rem;
      transition: all .25s;
    }
    .btn-teal:hover {
      background: var(--teal-hover);
      border-color: var(--teal-hover);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(10,124,102,.28);
    }
    .btn-outline-teal {
      background: transparent;
      color: var(--teal);
      border: 2px solid var(--teal);
      border-radius: 8px;
      font-weight: 700;
      font-size: .9rem;
      padding: .75rem 1.6rem;
      transition: all .25s;
    }
    .btn-outline-teal:hover {
      background: var(--teal);
      color: #fff;
      transform: translateY(-2px);
    }
    .btn-ink {
      background: var(--ink);
      color: #fff;
      border: 2px solid var(--ink);
      border-radius: 8px;
      font-weight: 700;
      font-size: .88rem;
      padding: .55rem 1.3rem;
      transition: all .2s;
    }
    .btn-ink:hover { background: #2a2a28; border-color: #2a2a28; color: #fff; }

    /* ─── SECTION LABEL ─────────────────────────────── */
    .s-label {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-family: 'Fira Code', monospace;
      font-size: .68rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: .8rem;
    }
    .s-label::before {
      content: '';
      width: 18px; height: 2px;
      background: var(--teal);
      border-radius: 1px;
    }

    /* ─── NAVBAR ────────────────────────────────────── */
    .navbar {
      background: rgba(248,245,239,.92) !important;
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      padding: .9rem 0;
    }
    .navbar-brand {
      display: flex; align-items: center; gap: .55rem;
      font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em;
      color: var(--ink);
      text-decoration: none;
    }
    .brand-icon {
      width: 34px; height: 34px;
      background: var(--teal);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1rem;
    }
    .navbar-nav .nav-link {
      color: var(--ink-soft);
      font-weight: 500;
      font-size: .88rem;
      padding: .4rem .85rem;
      border-radius: 6px;
      transition: background .2s, color .2s;
    }
    .navbar-nav .nav-link:hover {
      background: var(--teal-pale);
      color: var(--teal);
    }
    .navbar-toggler {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: .4rem .7rem;
    }
    .navbar-toggler:focus { box-shadow: none; }

    /* ─── HERO ──────────────────────────────────────── */
    #hero {
      background: var(--cream);
      padding-top: 100px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: var(--teal-pale);
      border: 1px solid rgba(10,124,102,.2);
      border-radius: 4px;
      padding: .35rem 1rem;
      font-family: 'Fira Code', monospace;
      font-size: .7rem;
      color: var(--teal);
      letter-spacing: .06em;
      margin-bottom: 1.6rem;
    }
    .dot-live {
      width: 7px; height: 7px;
      background: var(--teal);
      border-radius: 50%;
      animation: blink 2s infinite;
      flex-shrink: 0;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

    .hero-title {
      font-size: clamp(2.4rem, 5vw, 4.2rem);
      line-height: 1.05;
      letter-spacing: -.04em;
    }
    .hero-title .line-teal { color: var(--teal); }
    .hero-title .underlined {
      text-decoration: underline;
      text-decoration-color: var(--gold);
      text-decoration-thickness: 3px;
      text-underline-offset: 5px;
    }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--ink-soft);
      line-height: 1.75;
    }

    /* Live weight card */
    .live-weight-card {
      background: var(--teal);
      color: #fff;
      border-radius: var(--radius);
      padding: 1.8rem;
      box-shadow: 0 10px 40px rgba(10,124,102,.25);
    }
    .lw-badge {
      font-family: 'Fira Code', monospace;
      font-size: .62rem;
      background: rgba(255,255,255,.18);
      padding: .25rem .7rem;
      border-radius: 4px;
      letter-spacing: .08em;
    }
    .lw-value {
      font-size: clamp(2.8rem, 6vw, 4rem);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1;
    }
    .lw-unit {
      font-family: 'Fira Code', monospace;
      font-size: .7rem;
      opacity: .65;
      margin-top: .3rem;
    }
    .lw-bar {
      height: 4px;
      background: rgba(255,255,255,.2);
      border-radius: 2px;
      margin-top: 1.2rem;
      overflow: hidden;
    }
    .lw-bar-fill {
      height: 100%; width: 78%;
      background: #fff; border-radius: 2px;
      animation: barPulse 2s ease-in-out infinite;
    }
    @keyframes barPulse { 0%,100%{width:78%} 50%{width:83%} }

    /* Stat strip */
    .stat-strip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-sm);
      transition: transform .3s, box-shadow .3s;
    }
    .stat-strip:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
    .stat-strip-label {
      font-family: 'Fira Code', monospace;
      font-size: .62rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--muted);
      margin-bottom: .25rem;
    }
    .stat-strip-value {
      font-size: 1.55rem;
      font-weight: 800;
      letter-spacing: -.03em;
    }
    .stat-icon {
      width: 46px; height: 46px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .si-teal { background: var(--teal-pale); }
    .si-gold { background: var(--gold-pale); }
    .si-red  { background: #fdecea; }

    /* ─── MARQUEE ────────────────────────────────────── */
    .marquee-band {
      background: var(--ink);
      padding: .85rem 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 28s linear infinite;
      white-space: nowrap;
    }
    .marquee-track:hover { animation-play-state: paused; }
    @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .mq-item {
      display: inline-flex;
      align-items: center;
      gap: .9rem;
      padding: 0 2rem;
      font-family: 'Fira Code', monospace;
      font-size: .72rem;
      color: rgba(248,245,239,.5);
      text-transform: uppercase;
      letter-spacing: .05em;
    }
    .mq-item strong { color: rgba(248,245,239,.9); }
    .mq-sep { color: var(--teal); }

    /* ─── PROBLEMS ───────────────────────────────────── */
    #problems { background: var(--white); }
    .problem-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.6rem;
      background: var(--cream);
      transition: border-color .3s, transform .3s;
      height: 100%;
    }
    .problem-card:hover {
      border-color: var(--teal);
      transform: translateY(-3px);
    }
    .prob-num {
      font-family: 'Fira Code', monospace;
      font-size: .68rem;
      color: var(--teal);
      margin-bottom: .7rem;
      letter-spacing: .08em;
    }
    .prob-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--teal-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem;
      margin-bottom: 1rem;
    }
    .prob-title { font-size: .97rem; font-weight: 700; margin-bottom: .4rem; }
    .prob-desc  { font-size: .82rem; color: var(--muted); line-height: 1.6; margin: 0; }

    /* ─── FEATURES BENTO ─────────────────────────────── */
    #features { background: var(--cream); }
    .feat-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.8rem;
      box-shadow: var(--shadow-sm);
      transition: transform .3s, box-shadow .3s;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .feat-card::before {
      content:'';
      position: absolute;
      top:0; left:0; right:0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), #4dd9b8);
      opacity: 0;
      transition: opacity .3s;
    }
    .feat-card:hover::before { opacity: 1; }
    .feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .feat-card.dark {
      background: var(--ink);
      border-color: transparent;
      color: #fff;
    }
    .feat-card.teal-bg {
      background: var(--teal);
      border-color: transparent;
      color: #fff;
    }
    .feat-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--teal-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 1.1rem;
    }
    .feat-card.dark .feat-icon  { background: rgba(255,255,255,.08); }
    .feat-card.teal-bg .feat-icon { background: rgba(255,255,255,.18); }
    .feat-title { font-size: .97rem; font-weight: 700; margin-bottom: .85rem; }
    .feat-list  { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
    .feat-list li {
      font-size: .8rem;
      color: var(--ink-soft);
      display: flex; align-items: flex-start; gap: .5rem;
      line-height: 1.45;
    }
    .feat-card.dark .feat-list li,
    .feat-card.teal-bg .feat-list li { color: rgba(255,255,255,.75); }
    .feat-list li::before {
      content: '→';
      color: var(--teal);
      font-size: .75rem;
      flex-shrink: 0;
      margin-top: .05em;
    }
    .feat-card.dark .feat-list li::before,
    .feat-card.teal-bg .feat-list li::before { color: rgba(255,255,255,.5); }

    /* ─── WORKFLOW ────────────────────────────────────── */
    #workflow { background: var(--white); }
    .step-line {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .step-item {
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 1.5rem;
      padding-bottom: 2.5rem;
      position: relative;
    }
    .step-item:last-child { padding-bottom: 0; }
    .step-item::after {
      content: '';
      position: absolute;
      left: 29px; top: 56px; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--teal), transparent);
    }
    .step-item:last-child::after { display: none; }
    .step-num {
      width: 56px; height: 56px;
      border: 2px solid var(--teal);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 800;
      color: var(--teal);
      background: var(--white);
      flex-shrink: 0;
      position: relative; z-index: 1;
      transition: all .3s;
    }
    .step-item:hover .step-num { background: var(--teal); color: #fff; }
    .step-body { padding-top: .7rem; }
    .step-title { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
    .step-desc  { font-size: .83rem; color: var(--muted); line-height: 1.65; margin: 0; }
    .step-tag {
      display: inline-block;
      margin-top: .7rem;
      background: var(--teal-pale);
      color: var(--teal);
      font-family: 'Fira Code', monospace;
      font-size: .62rem;
      padding: .25rem .7rem;
      border-radius: 4px;
      letter-spacing: .08em;
    }

    /* ─── METRICS ─────────────────────────────────────── */
    #metrics { background: var(--teal); color: #fff; }
    .metric-tile {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      padding: 2rem 1.8rem;
      transition: background .3s, transform .3s;
      height: 100%;
    }
    .metric-tile:hover { background: rgba(255,255,255,.2); transform: scale(1.03); }
    .mt-num {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: .5rem;
    }
    .mt-label { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
    .mt-desc  { font-size: .78rem; opacity: .65; line-height: 1.55; margin: 0; }

    /* ─── INTEGRATIONS ────────────────────────────────── */
    #integrations { background: var(--cream); }
    .int-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.6rem;
      box-shadow: var(--shadow-sm);
      height: 100%;
      transition: transform .3s;
    }
    .int-card:hover { transform: translateY(-3px); }
    .int-cat {
      font-family: 'Fira Code', monospace;
      font-size: .62rem;
      color: var(--teal);
      letter-spacing: .12em;
      text-transform: uppercase;
      padding-bottom: .8rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 1rem;
    }
    .int-item {
      display: flex; align-items: center; gap: .5rem;
      font-size: .84rem; color: var(--ink-soft);
      padding: .3rem 0;
    }
    .int-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      opacity: .5;
      flex-shrink: 0;
    }

    /* ─── PRICING ─────────────────────────────────────── */
    #pricing { background: var(--white); }
    .price-card {
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 2.2rem;
      height: 100%;
      position: relative;
      transition: transform .3s;
    }
    .price-card:hover { transform: translateY(-5px); }
    .price-card.featured {
      background: var(--ink);
      border-color: var(--ink);
      color: #fff;
    }
    .price-badge {
      position: absolute;
      top: -13px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: #fff;
      font-family: 'Fira Code', monospace;
      font-size: .62rem;
      font-weight: 600;
      padding: .3rem 1rem;
      border-radius: 999px;
      letter-spacing: .06em;
      white-space: nowrap;
    }
    .price-tier {
      font-family: 'Fira Code', monospace;
      font-size: .62rem;
      color: var(--teal);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .4rem;
    }
    .price-card.featured .price-tier { color: rgba(255,255,255,.5); }
    .price-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.3rem; }
    .price-amount {
      font-size: clamp(2rem, 4vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1;
      margin-bottom: .3rem;
    }
    .price-note { font-size: .78rem; color: var(--muted); margin-bottom: .2rem; }
    .price-card.featured .price-note { color: rgba(255,255,255,.45); }
    .price-amc { font-size: .75rem; color: var(--gold); font-weight: 600; margin-bottom: 1.8rem; }
    .price-card.featured .price-amc { color: #f0c46a; }
    .price-features { list-style: none; padding: 0; margin: 0 0 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
    .price-features li {
      font-size: .83rem;
      display: flex; align-items: flex-start; gap: .6rem;
      color: var(--ink-soft); line-height: 1.4;
    }
    .price-card.featured .price-features li { color: rgba(255,255,255,.8); }
    .price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
    .price-card.featured .price-features li::before { color: #5de0bf; }
    .price-cta {
      display: block; width: 100%; padding: .85rem;
      border-radius: 8px; font-weight: 700; font-size: .88rem;
      text-align: center; text-decoration: none; transition: all .2s;
    }
    .price-cta-outline {
      border: 1.5px solid var(--border);
      color: var(--ink); background: transparent;
    }
    .price-cta-outline:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
    .price-cta-fill {
      background: var(--teal); color: #fff; border: 1.5px solid var(--teal);
    }
    .price-cta-fill:hover {
      background: var(--teal-hover);
      box-shadow: 0 6px 20px rgba(10,124,102,.3);
      color: #fff;
    }

    /* ─── TESTIMONIALS ────────────────────────────────── */
    #testimonials { background: var(--cream); }
    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow-sm);
      height: 100%;
      transition: transform .3s;
    }
    .testi-card:hover { transform: translateY(-4px); }
    .stars { display: flex; gap: 3px; margin-bottom: 1rem; }
    .stars span {
      width: 13px; height: 13px;
      background: var(--gold);
      clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    }
    .testi-text {
      font-size: .88rem;
      color: var(--ink-soft);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 1.5rem;
    }
    .testi-av {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-hover));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .8rem; color: #fff;
      flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: .85rem; margin-bottom: .1rem; }
    .testi-co   { font-size: .75rem; color: var(--muted); }

    /* ─── FOUNDER ─────────────────────────────────────── */
    #founder { background: var(--ink); color: #fff; }
    #founder .s-label { color: rgba(255,255,255,.45); }
    #founder .s-label::before { background: rgba(255,255,255,.25); }
    .blockquote-custom {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 700;
      line-height: 1.5;
      border-left: 3px solid var(--teal);
      padding: 1.2rem 1.5rem;
      background: rgba(255,255,255,.04);
      border-radius: 0 8px 8px 0;
      margin-bottom: 1.8rem;
      color: #fff;
    }
    .founder-bio { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.8; }
    .founder-tag-pill {
      background: rgba(10,124,102,.22);
      border: 1px solid rgba(10,124,102,.35);
      color: #5de0bf;
      padding: .3rem .85rem;
      border-radius: 4px;
      font-family: 'Fira Code', monospace;
      font-size: .68rem;
      display: inline-block;
      margin: .2rem;
    }
    .founder-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .founder-av {
      width: 110px; height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-hover));
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; font-weight: 800; color: #fff;
      margin: 0 auto 1.2rem;
    }
    .f-stat-num {
      font-size: 1.8rem; font-weight: 800;
      color: var(--teal-hover); letter-spacing: -.03em;
    }
    .f-stat-lbl {
      font-family: 'Fira Code', monospace;
      font-size: .62rem; color: rgba(255,255,255,.35);
      text-transform: uppercase; letter-spacing: .07em;
    }

    /* ─── CONTACT ─────────────────────────────────────── */
    #contact { background: var(--white); }
    .cinfo-block {
      display: flex; gap: .9rem; align-items: flex-start;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 1.2rem;
      transition: border-color .3s;
    }
    .cinfo-block:hover { border-color: var(--teal); }
    .cinfo-icon {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: var(--teal-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: .95rem; flex-shrink: 0;
    }
    .cinfo-lbl {
      font-family: 'Fira Code', monospace;
      font-size: .62rem; color: var(--muted);
      text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem;
    }
    .cinfo-val { font-size: .84rem; font-weight: 600; line-height: 1.6; }
    .cinfo-val a { color: var(--ink); text-decoration: none; display: block; }
    .cinfo-val a:hover { color: var(--teal); }
    .contact-form-wrap {
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 2.5rem;
    }
    .form-label-custom {
      font-family: 'Fira Code', monospace;
      font-size: .65rem; color: var(--muted);
      text-transform: uppercase; letter-spacing: .08em;
      margin-bottom: .35rem; display: block;
    }
    .form-control-custom {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: .8rem 1rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: .88rem;
      color: var(--ink);
      width: 100%;
      outline: none;
      transition: border-color .2s;
      appearance: none;
    }
    .form-control-custom:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,124,102,.1); }
    textarea.form-control-custom { min-height: 90px; resize: vertical; }

    /* ─── FOOTER ──────────────────────────────────────── */
    footer { background: var(--ink); color: rgba(248,245,239,.85); }
    .footer-brand-name {
      font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em;
      display: flex; align-items: center; gap: .5rem;
      color: #fff; margin-bottom: 1rem;
      text-decoration: none;
    }
    .footer-mark {
      width: 30px; height: 30px;
      background: var(--teal);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; color: #fff;
    }
    .footer-tagline { font-size: .82rem; color: rgba(248,245,239,.4); line-height: 1.7; max-width: 280px; }
    .footer-heading { font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
    .footer-link { display: block; font-size: .82rem; color: rgba(248,245,239,.4); text-decoration: none; padding: .3rem 0; transition: color .2s; }
    .footer-link:hover { color: #fff; }
    .footer-divider { border-color: rgba(255,255,255,.07); margin: 1.5rem 0; }
    .footer-copy { font-family: 'Fira Code', monospace; font-size: .7rem; color: rgba(248,245,239,.25); }

    /* ─── REVEAL ANIMATION ────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .65s cubic-bezier(.23,1,.32,1), transform .65s cubic-bezier(.23,1,.32,1);
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ─── SCROLL-TOP BTN ──────────────────────────────── */
    #scrollTop {
      position: fixed;
      bottom: 1.5rem; right: 1.5rem;
      width: 44px; height: 44px;
      background: var(--teal);
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 4px 18px rgba(10,124,102,.35);
      opacity: 0; pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 400;
      cursor: pointer;
    }
    #scrollTop.show { opacity: 1; pointer-events: auto; }
    #scrollTop:hover { transform: translateY(-3px); }

    /* ─── MOBILE OVERRIDES ────────────────────────────── */
    @media (max-width: 768px) {
      #hero { padding-top: 90px; }
      .hero-title { letter-spacing: -.03em; }
      .live-weight-card { margin-top: 0; }
      .step-item { grid-template-columns: 50px 1fr; gap: 1rem; }
      .step-num  { width: 46px; height: 46px; font-size: .88rem; }
      .step-item::after { left: 23px; top: 47px; }
      .contact-form-wrap { padding: 1.6rem; }
    }

    @media (max-width: 576px) {
      section { padding-top: 4rem !important; padding-bottom: 4rem !important; }
      .navbar-brand span { display: none; }
    }