    :root {
      --sr-bg: #ffffff;
      --sr-border-subtle: #e5e7eb;
      --sr-text: #0f172a;
      --sr-text-muted: #6b7280;
      --sr-orange: #f04b23;
      --sr-orange-soft: #fb6a3a;
      --sr-orange-tint: #fff7ed;
      --sr-green: #22c55e;
      --sr-radius-pill: 999px;
      --sr-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
                   "Segoe UI", Roboto, sans-serif;
      background: var(--sr-bg);
      color: var(--sr-text);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
    }

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 20px 20px 64px;
    }

    /* HEADER */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-wrap img { height: 44px; width: auto; }
    .logo-text {
      text-transform: lowercase;
      letter-spacing: 0.06em;
      font-weight: 700;
      font-size: 1rem;
      color: #111827;
      display: none; /* image logo only */
    }

    nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 0.9rem;
      color: var(--sr-text-muted);
    }
    nav a:hover { color: #111827; }
    .nav-cta {
      padding: 6px 14px;
      border-radius: var(--sr-radius-pill);
      border: 1px solid rgba(240,75,35,0.55);
      color: var(--sr-orange);
      font-weight: 500;
    }

    main { display: flex; flex-direction: column; gap: 0; }

    /* HERO – split, light (KEEPING THIS STYLE) */
    .hero-band {
      padding: 40px 0 44px;
      background: radial-gradient(circle at top, #eef2ff 0, #ffffff 55%);
      border-radius: 24px;
      border: 1px solid #e5e7eb;
      box-shadow: var(--sr-shadow-soft);
      margin-bottom: 40px;
    }

    .hero-inner {
      max-width: 1040px;
      margin: 0 auto;
      padding: 0 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

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

    .hero-kicker {
      display: inline-flex;
      padding: 4px 10px;
      border-radius: var(--sr-radius-pill);
      background: rgba(240,75,35,0.09);
      color: var(--sr-orange) !important;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero-copy h1 {
      font-size: clamp(2.1rem, 3.2vw, 2.7rem);
      line-height: 1.1;
      margin-bottom: 12px;
      color: #0f172a;
    }
    .hero-copy h1 span { color: var(--sr-orange); }

    .hero-subtitle {
      max-width: 520px;
      font-size: 0.98rem;
      color: var(--sr-text-muted);
      margin-bottom: 18px;
    }

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

    .btn-primary {
      background: linear-gradient(135deg, var(--sr-orange) 0%, var(--sr-orange-soft) 100%);
      color: #fff;
      padding: 11px 20px;
      border-radius: var(--sr-radius-pill);
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 14px 30px rgba(248, 113, 73, 0.35);
    }
    .btn-primary span.arrow { font-size: 1.1rem; }

    .hero-meta {
      font-size: 0.8rem;
      color: var(--sr-text-muted);
    }
    .hero-meta strong { color: #111827; }

    .hero-visual {
      display: flex;
      justify-content: center;
    }

    .hero-card {
      width: 100%;
      max-width: 360px;
      background: radial-gradient(circle at top, #020617 0, #020617 70%);
      border-radius: 22px;
      border: 1px solid rgba(15,23,42,0.85);
      padding: 16px 18px 16px;
      box-shadow: 0 20px 40px rgba(15,23,42,0.9);
      color: #e5e7eb;
      overflow: visible;
      font-size: 0.8rem;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      color: #9ca3af;
    }

    .hero-pill {
      padding: 4px 12px;
      border-radius: var(--sr-radius-pill);
      border: 1px solid rgba(148,163,184,0.7);
      font-size: 0.72rem;
    }

    .hero-radar-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 10px;
    }

    .hero-radar {
      position: relative;
      width: 88%;
      max-width: 260px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background: radial-gradient(circle at center, #071b11 0, #020407 72%);
      box-shadow: 0 0 24px rgba(0,0,0,0.9);
      overflow: visible;
    }

    .radar-grid {
      position: absolute;
      inset: 14%;
      border-radius: 50%;
      border: 1px solid rgba(34,197,94,0.4);
    }
    .radar-grid::before,
    .radar-grid::after {
      content: "";
      position: absolute;
      inset: 50% 0 auto;
      border-top: 1px solid rgba(34,197,94,0.4);
      transform: translateY(-50%);
    }
    .radar-grid::after {
      inset: 0 50%;
      border-top: none;
      border-left: 1px solid rgba(34,197,94,0.4);
      transform: translateX(-50%);
    }

    .radar-ring {
      position: absolute;
      inset: 26%;
      border-radius: 50%;
      border: 1px solid rgba(34,197,94,0.26);
    }
    .radar-ring:nth-child(2) { inset: 40%; }
    .radar-ring:nth-child(3) { inset: 54%; }

    @keyframes sweep {
      from { transform: rotate(-30deg); }
      to   { transform: rotate(330deg); }
    }

    .radar-beam {
      position: absolute;
      width: 45%;
      height: 2px;
      background: linear-gradient(90deg, rgba(34,197,94,0.05), rgba(34,197,94,0.9));
      top: 50%;
      left: 50%;
      transform-origin: 0% 50%;
      transform: rotate(-20deg);
      border-radius: 999px;
      animation: sweep 6s linear infinite;
    }

    .radar-center-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--sr-orange-soft);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 10px rgba(240,75,35,0.9);
    }

    .radar-blip {
      position: absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--sr-green);
      box-shadow: 0 0 9px rgba(34,197,94,0.9);
    }

    .radar-blip.brand {
      background: var(--sr-orange-soft);
      box-shadow: 0 0 12px rgba(240,75,35,0.95);
    }

    .radar-label {
      position: absolute;
      font-size: 0.72rem;
      background: rgba(15,23,42,0.96);
      border-radius: var(--sr-radius-pill);
      padding: 3px 8px;
      border: 1px solid rgba(148,163,184,0.7);
      white-space: nowrap;
    }
    .radar-label span { color: var(--sr-orange-soft); font-weight: 600; }

    .hero-card-footer {
      font-size: 0.8rem;
      color: #9ca3af;
    }
    .hero-card-footer strong { color: #4ade80; }

    /* GENERIC SECTION STYLE – NEW LAYOUT */
    .section {
      padding-top: 54px;
      border-top: 1px solid var(--sr-border-subtle);
      margin-top: 24px;
    }

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

    .section-heading {
      font-size: 1.45rem;
      margin-bottom: 10px;
    }

    .section-kicker {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--sr-text-muted);
      margin-bottom: 6px;
    }

    .section-lead {
      font-size: 0.98rem;
      color: var(--sr-text-muted);
      margin-bottom: 14px;
    }

    /* SPLIT SECTION (text + list) */
    .section-split {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 32px;
      align-items: flex-start;
      max-width: 960px;
      margin: 0 auto;
    }

    .muted {
      color: var(--sr-text-muted);
      font-size: 0.94rem;
    }

    .bullet-list {
      list-style: none;
      padding-left: 0;
      font-size: 0.9rem;
      color: var(--sr-text-muted);
    }
    .bullet-list li {
      display: flex;
      gap: 8px;
      margin-bottom: 8px;
    }
    .bullet-list li::before {
      content: "•";
      color: var(--sr-green);
      margin-top: 1px;
    }

    .pill-label {
      display: inline-flex;
      padding: 3px 10px;
      border-radius: var(--sr-radius-pill);
      /* border: 1px solid var(--sr-border-subtle); */
      font-size: 0.75rem;
      color: var(--sr-text-muted);
      margin-bottom: 8px;
    }

    /* PRICING TABLE – COMPLETELY DIFFERENT STYLE */
    .pricing-block {
      max-width: 960px;
      margin: 0 auto;
    }

    .pricing-table {
      margin-top: 22px;
      border-radius: 18px;
      border: 1px solid var(--sr-border-subtle);
      overflow: hidden;
      font-size: 0.9rem;
    }

    .pricing-row {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) 120px minmax(0, 1.6fr);
      gap: 12px;
      padding: 14px 18px;
      align-items: center;
    }

    .pricing-row + .pricing-row {
      border-top: 1px solid var(--sr-border-subtle);
    }

    .pricing-row:nth-child(even) {
      background: #f9fafb;
    }

    .pricing-row.highlight {
      background: var(--sr-orange-tint);
      border-top: 2px solid #fb923c;
      border-bottom: 2px solid #fb923c;
    }

    .pricing-plan-name {
      font-weight: 600;
      color: #111827;
      margin-bottom: 2px;
    }

    .pricing-plan-note {
      font-size: 0.8rem;
      color: var(--sr-text-muted);
    }

    .pricing-price {
      font-weight: 600;
      font-size: 1.1rem;
      text-align: center;
      color: #111827;
    }

    .pricing-price span {
      display: block;
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--sr-text-muted);
    }

    .pricing-details {
      font-size: 0.86rem;
      color: var(--sr-text-muted);
    }

    .pricing-details strong {
      color: #111827;
      font-weight: 500;
    }

    .pricing-footnote {
      font-size: 0.8rem;
      color: var(--sr-text-muted);
      margin-top: 10px;
    }
.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.conversation-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4b5563;
}

.bubble {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  font-size: 0.86rem;
  color: #374151;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.bubble p {
  margin: 0 0 4px;
}

.bubble-meta {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}
/* signup toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: #18191d;
  border: 1px solid #2c2f36;
  margin-top: 12px;
}

.billing-btn {
  border: none;
  outline: none;
  background: transparent;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}

.billing-btn:hover {
  transform: translateY(-1px);
}

.billing-btn.active {
  background: #f97316;       /* your accent */
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.5);
}

    /* SAMPLE ALERT – EMAIL-ISH BLOCK */
    .sample-alert {
      max-width: 760px;
      margin: 0 auto;
      border-radius: 16px;
      border: 1px solid var(--sr-border-subtle);
      padding: 14px 14px 10px;
      font-size: 0.86rem;
      background: #f9fafb;
    }

    .sample-alert-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e5e7eb;
      padding-bottom: 8px;
      margin-bottom: 8px;
    }

    .sample-alert-meta {
      font-size: 0.78rem;
      color: var(--sr-text-muted);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      padding: 3px 8px;
      border-radius: var(--sr-radius-pill);
      background: #ecfdf3;
      color: #15803d;
    }

    .sample-alert-title {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .sample-alert-body {
      color: var(--sr-text-muted);
    }
    /* sign-up */
    .signup-steps {
      margin-top: 18px;
      text-align: left;
    }

    .step-indicator {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 18px;
    }

    .step-dot {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      font-size: 0.8rem;
      color: #9ca3af;
    }

    .step-dot span {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid #d1d5db;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
    }

    .step-dot.active span {
      background: #111827;
      color: #ffffff;
      border-color: #111827;
    }

    .step-dot.active .step-label {
      color: #111827;
      font-weight: 600;
    }

    .step-label {
      font-size: 0.75rem;
    }

    .signup-form {
      max-width: 560px;
      margin: 0 auto;
      text-align: left;
    }

    .step-panel {
      display: none;
      border-radius: 18px;
      border: 1px solid #e5e7eb;
      padding: 18px 18px 16px;
      background: #ffffff;
      box-shadow: 0 12px 26px rgba(15,23,42,0.04);
    }

    .step-panel.active {
      display: block;
    }

    .form-row {
      margin-bottom: 12px;
    }

    .form-row--split {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .field-label {
      font-size: 0.8rem;
      color: #6b7280;
    }

    .text-input {
      border-radius: 10px;
      border: 1px solid #d1d5db;
      padding: 8px 10px;
      font-size: 0.9rem;
      outline: none;
    }

    .text-input:focus {
      border-color: #fb6a3a;
      box-shadow: 0 0 0 1px rgba(248, 113, 73, 0.2);
    }

    .form-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 8px;
    }

    .btn-secondary {
      background: #f9fafb;
      color: #374151;
      padding: 9px 16px;
      border-radius: var(--sr-radius-pill);
      border: 1px solid #d1d5db;
      cursor: pointer;
      font-size: 0.88rem;
    }

    .btn-secondary:hover {
      background: #f3f4f6;
    }

    .step-intro {
      font-size: 0.9rem;
      color: var(--sr-text-muted);
    }

    .plan-options {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .plan-card {
      display: block;
      cursor: pointer;
    }

    .plan-card input {
      display: none;
    }

    .plan-card-inner {
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      padding: 10px 12px;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .plan-card--highlight .plan-card-inner {
      border-color: #fb6a3a;
      background: #fff7ed;
    }

    .plan-card input:checked + .plan-card-inner {
      border-color: #111827;
      box-shadow: 0 0 0 1px #111827;
    }

    .plan-card-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    .plan-name {
      font-weight: 600;
      color: #111827;
    }

    .plan-price {
      font-size: 0.92rem;
      color: #111827;
    }

    .plan-card-body p {
      font-size: 0.82rem;
      color: var(--sr-text-muted);
    }

    .plan-tag {
      display: inline-flex;
      padding: 2px 8px;
      border-radius: 999px;
      background: #f3f4f6;
      font-size: 0.72rem;
      color: #4b5563;
      margin-bottom: 2px;
    }

    .plan-tag--primary {
      background: #fee2e2;
      color: #b91c1c;
    }

    .payment-summary {
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      padding: 8px 10px;
      margin-bottom: 12px;
      background: #f9fafb;
      font-size: 0.85rem;
    }

    .payment-plan-label {
      display: block;
      font-size: 0.75rem;
      color: #6b7280;
    }

    .payment-plan-line {
      display: flex;
      justify-content: space-between;
      margin-top: 4px;
      font-weight: 600;
      color: #111827;
    }

    .card-mock {
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      padding: 10px 10px 8px;
      background: #fefefe;
    }

    .fake-stripe-input {
      border-radius: 10px;
      border: 1px solid #d1d5db;
      padding: 8px 10px;
      font-size: 0.88rem;
      color: #9ca3af;
      background: #f9fafb;
    }

    @media (max-width: 600px) {
      .form-row--split {
        grid-template-columns: minmax(0, 1fr);
      }
      .form-actions {
        flex-direction: column-reverse;
        align-items: stretch;
      }
      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
      }
    }

    /* FAQ – PLAIN DL */
    .faq-block {
      max-width: 760px;
      margin: 0 auto;
      font-size: 0.9rem;
    }

    .faq-list {
      margin-top: 18px;
    }

    .faq-list dt {
      font-weight: 600;
      margin-top: 14px;
      margin-bottom: 3px;
      color: #111827;
    }

    .faq-list dd {
      margin-left: 0;
      color: var(--sr-text-muted);
    }
.kicker {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* margin-top: -1px; */
}
.akicker {
  padding-right: 2px;
}
.aakicker {
  font-size: 75%;
}
.tbub {
  display: inline-block;
  width: 10px;
  background-image: url('/images/tbub.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: 5px;
  margin-right: 3px;
}
    /* FINAL CTA */
    .final-cta {
      max-width: 760px;
      margin: 36px auto 0;
      text-align: center;
    }
    .final-cta h2 {
      font-size: 1.45rem;
      margin-bottom: 6px;
    }
    .final-cta p {
      font-size: 0.94rem;
      color: var(--sr-text-muted);
      margin-bottom: 14px;
      justify-self: flex-end
    }

    /* FOOTER */
    footer {
      margin-top: 32px;
      font-size: 0.8rem;
      color: var(--sr-text-muted);
      display: flex;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
      border-top: 1px solid var(--sr-border-subtle);
      padding-top: 16px;
      padding-left: 10px;
      padding-right: 10px;
    }
    footer a:hover { color: #111827; }
    .legal-disclaimer {
      text-align: center;
      margin-top: 14px;
      font-size: 0.75rem;
      color: #9ca3af;
      margin-bottom: 15px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
      }
      .hero-visual { order: -1; }
      .hero-band { border-radius: 18px; }
      .section-split {
        grid-template-columns: minmax(0, 1fr);
      }
      .pricing-row {
        grid-template-columns: minmax(0, 1.4fr) 1fr;
        grid-template-areas:
          "plan price"
          "details details";
        row-gap: 6px;
      }
      .pricing-row > :nth-child(1) { grid-area: plan; }
      .pricing-row > :nth-child(2) { grid-area: price; }
      .pricing-row > :nth-child(3) { grid-area: details; }
    }

    @media (max-width: 520px) {
      nav { display: none; } /* can swap for burger later */
      .page { padding-inline: 16px; }
    }