:root {
      /* Calm Ops — light agency panel */
      --color-primary: #0f766e;
      --color-primary-hover: #0d9488;
      --color-primary-light: #14b8a6;
      --color-primary-dim: rgba(15, 118, 110, 0.1);
      --color-primary-glow: transparent;
      --color-accent: #0f766e;
      --color-accent-dim: rgba(15, 118, 110, 0.08);
      --color-bg: #f8fafc;
      --color-bg-elevated: #ffffff;
      --color-surface: #ffffff;
      --color-surface-hover: #f1f5f9;
      --color-sidebar: #ffffff;
      --color-text: #334155;
      --color-text-heading: #0f172a;
      --color-text-muted: #64748b;
      --color-border: #e2e8f0;
      --color-warning: #d97706;
      --color-danger: #dc2626;
      --color-success: #059669;
      --radius-md: 10px;
      --radius-lg: 14px;
      --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
      --shadow-glow: none;
      --font-sans: "Plus Jakarta Sans", "Source Sans 3", system-ui, sans-serif;
      --font-mono: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
      --font-display: "Plus Jakarta Sans", "Source Sans 3", system-ui, sans-serif;
    }

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

    body {
      font-family: var(--font-sans);
      background:
        linear-gradient(180deg, #f0fdfa 0%, transparent 28%),
        var(--color-bg);
      color: var(--color-text);
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      display: none;
    }

    .page { position: relative; z-index: 1; }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(20px);
      background: linear-gradient(to bottom, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.85));
      border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    }

    .shell {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4.25rem;
      gap: 1.5rem;
    }

    .logo-group {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #60a5fa 0, #2563eb 50%, #1d4ed8 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
    }

    .logo-mark svg {
      width: 22px;
      height: 22px;
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -0.03em;
      color: var(--color-text-heading);
    }

    .logo-text span {
      color: var(--color-primary);
    }

    .badge-beta {
      font-size: 0.7rem;
      font-weight: 500;
      padding: 0.1rem 0.45rem;
      border-radius: 999px;
      border: 1px solid rgba(37, 99, 235, 0.2);
      background: rgba(219, 234, 254, 0.7);
      color: #1d4ed8;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.1rem;
      font-size: 0.86rem;
      color: var(--color-text-muted);
    }

    .nav > a,
    .nav-parent {
      position: relative;
      padding-bottom: 2px;
      color: inherit;
      text-decoration: none;
    }

    .nav > a:hover,
    .nav-parent:hover {
      color: var(--color-text-heading);
    }

    .nav > a.is-active::after,
    .nav-parent.is-active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(to right, #2563eb, #10b981);
    }

    .nav-item.has-dropdown {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.15rem;
    }

    .nav-parent {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .nav-caret {
      display: inline-block;
      width: 0.35rem;
      height: 0.35rem;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      opacity: 0.7;
      transition: transform 0.15s ease;
    }

    .nav-dropdown-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 1.75rem;
      height: 1.75rem;
      margin: 0;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      cursor: pointer;
    }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 0.55rem);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 11.5rem;
      padding: 0.45rem;
      border-radius: 14px;
      border: 1px solid var(--color-border);
      background: #fff;
      box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.04);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
      z-index: 60;
    }

    .nav-dropdown--mega {
      left: 0;
      transform: translateX(0) translateY(6px);
      min-width: 19.5rem;
      max-width: min(22rem, calc(100vw - 2rem));
      padding: 0.55rem;
    }

    .nav-dropdown--mega-wide {
      min-width: 21rem;
      max-width: min(24rem, calc(100vw - 2rem));
    }

    .nav-item.has-dropdown:hover .nav-dropdown,
    .nav-item.has-dropdown:focus-within .nav-dropdown,
    .nav-item.has-dropdown.is-open .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-item.has-dropdown:hover .nav-dropdown--mega,
    .nav-item.has-dropdown:focus-within .nav-dropdown--mega,
    .nav-item.has-dropdown.is-open .nav-dropdown--mega {
      transform: translateX(0) translateY(0);
    }

    /* Invisible bridge so hover does not drop when moving into panel */
    .nav-item.has-dropdown::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 0.7rem;
    }

    .nav-mega {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .nav-mega-label {
      margin: 0.45rem 0.35rem 0.2rem;
      padding-top: 0.55rem;
      border-top: 1px solid var(--color-border);
      font-size: 0.68rem;
      font-weight: 650;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: #94a3b8;
    }

    .nav-mega-label:first-child {
      margin-top: 0;
      padding-top: 0.2rem;
      border-top: 0;
    }

    .nav-mega-item {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
      padding: 0.65rem 0.75rem;
      border-radius: 10px;
      text-decoration: none;
      color: inherit;
      transition: background 0.12s ease, color 0.12s ease;
    }

    .nav-mega-item:hover,
    .nav-mega-item.is-active {
      background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(37, 99, 235, 0.05));
    }

    .nav-mega-item--eyebrow {
      margin-bottom: 0.15rem;
      background: rgba(15, 23, 42, 0.02);
    }

    .nav-mega-item--eyebrow:hover {
      background: rgba(15, 23, 42, 0.045);
    }

    .nav-mega-title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-text-heading);
      letter-spacing: -0.01em;
    }

    .nav-mega-item:hover .nav-mega-title,
    .nav-mega-item.is-active .nav-mega-title {
      color: #0f766e;
    }

    .nav-mega-desc {
      font-size: 0.76rem;
      line-height: 1.4;
      color: var(--color-text-muted);
    }

    .nav-dropdown .nav-dropdown-label {
      display: none;
    }

    .nav-item.has-dropdown:hover .nav-parent .nav-caret,
    .nav-item.has-dropdown.is-open .nav-parent .nav-caret {
      transform: rotate(225deg) translateY(1px);
    }

    .nav-dropdown-label {
      display: block;
      padding: 0.45rem 0.65rem 0.2rem;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
    }

    .nav-dropdown a {
      display: block;
      padding: 0.45rem 0.65rem;
      border-radius: 8px;
      font-size: 0.86rem;
      color: var(--color-text-muted);
      text-decoration: none;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a.is-active {
      color: var(--color-text-heading);
      background: rgba(15, 118, 110, 0.06);
    }

    .nav-dropdown a.is-active::after {
      display: none;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn {
      border-radius: 999px;
      padding: 0.55rem 1.2rem;
      font-size: 0.86rem;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.08s ease, box-shadow 0.12s ease;
      text-decoration: none;
    }

    .btn-ghost {
      background: transparent;
      border-color: transparent;
      color: var(--color-text-muted);
    }

    .btn-ghost:hover {
      color: var(--color-text-heading);
      background: rgba(226, 232, 240, 0.6);
    }

    .btn-primary {
      background: radial-gradient(circle at 0% 0%, #60a5fa 0, #2563eb 40%, #1d4ed8 100%);
      color: #ffffff;
      box-shadow: 0 14px 35px rgba(37, 99, 235, 0.4);
    }

    .btn-primary:hover {
      background: radial-gradient(circle at 0% 0%, #60a5fa 0, #1d4ed8 40%, #1e40af 100%);
      transform: translateY(-1px);
      box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
    }

    .btn-pill-sm {
      padding: 0.35rem 0.85rem;
      font-size: 0.75rem;
      border-radius: 999px;
    }

    .pill-outline {
      background: rgba(219, 234, 254, 0.9);
      border-color: rgba(191, 219, 254, 0.9);
      color: #1d4ed8;
    }

    .pill-outline span {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .pill-outline strong {
      font-weight: 600;
    }

    /* Hero */
    .hero {
      padding: 3.5rem 0 3.75rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
      gap: 3.25rem;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.52rem 0.15rem 0.18rem;
      border-radius: 999px;
      background: rgba(219, 234, 254, 0.8);
      border: 1px solid rgba(191, 219, 254, 0.8);
      color: #1d4ed8;
      font-size: 0.75rem;
      margin-bottom: 0.9rem;
    }

    .hero-eyebrow span.tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.45rem;
      height: 1.45rem;
      border-radius: 999px;
      background: #1d4ed8;
      color: #eff6ff;
      font-size: 0.7rem;
      font-weight: 600;
    }

    .hero-eyebrow b {
      font-weight: 600;
    }

    .hero-title {
      font-size: clamp(2.4rem, 3.1vw, 3.05rem);
      line-height: 1.05;
      letter-spacing: -0.05em;
      color: var(--color-text-heading);
      margin-bottom: 1rem;
    }

    .hero-title span.highlight {
      background-image: linear-gradient(to right, #2563eb, #10b981);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--color-text-muted);
      max-width: 32rem;
      line-height: 1.6;
      margin-bottom: 1.6rem;
    }

    .hero-subtitle b {
      color: #0f172a;
      font-weight: 600;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.4rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
      align-items: center;
      font-size: 0.8rem;
      color: var(--color-text-muted);
    }

    .hero-meta strong {
      color: #0f172a;
      font-weight: 600;
    }

    .hero-meta-dot {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: #cbd5f5;
    }

    /* Hero mock card */
    .hero-card {
      background: radial-gradient(circle at 0% 0%, #dbeafe 0, #eff6ff 33%, #ffffff 100%);
      border-radius: 24px;
      padding: 1.5rem 1.6rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(191, 219, 254, 0.9);
      position: relative;
      overflow: hidden;
    }

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .hero-card-title {
      font-size: 0.9rem;
      color: #0f172a;
      font-weight: 600;
    }

    .hero-card-pill {
      font-size: 0.72rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.1);
      color: #15803d;
      border: 1px solid rgba(22, 163, 74, 0.3);
    }

    .hero-card-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
      margin-bottom: 1.3rem;
      font-size: 0.8rem;
    }

    .metric-label {
      color: var(--color-text-muted);
      font-size: 0.75rem;
      margin-bottom: 0.15rem;
    }

    .metric-value {
      font-weight: 600;
      color: #0f172a;
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
    }

    .metric-chip {
      font-size: 0.7rem;
      color: #16a34a;
      background: rgba(22, 163, 74, 0.08);
      padding: 0.05rem 0.35rem;
      border-radius: 999px;
    }

    .hero-card-body {
      background: rgba(15, 23, 42, 0.96);
      color: #e5e7eb;
      border-radius: 18px;
      padding: 0.95rem 1rem;
      font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 0.75rem;
      position: relative;
      overflow: hidden;
    }

    .hero-card-body::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.22), transparent 55%);
      pointer-events: none;
    }

    .hero-card-body-line {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.45rem;
      white-space: nowrap;
    }

    .hero-card-body-line span.prompt {
      color: #6b7280;
    }

    .hero-card-body-line span.cmd {
      color: #e5e7eb;
    }

    .hero-card-body-tag {
      font-size: 0.7rem;
      color: #9ca3af;
      margin-top: 0.4rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    .hero-floating-badge {
      position: absolute;
      right: 1.4rem;
      bottom: 1.4rem;
      padding: 0.5rem 0.7rem;
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.55);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #e5e7eb;
      font-size: 0.75rem;
      backdrop-filter: blur(18px);
    }

    .hero-floating-badge strong {
      color: #bbf7d0;
    }

    /* Social proof */
    .section {
      padding: 0.5rem 0 3.5rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-text-muted);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--color-text-heading);
    }

    .logos-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.8rem;
      margin-top: 1.25rem;
      font-size: 0.78rem;
      color: var(--color-text-muted);
    }

    .logos-pill {
      padding: 0.32rem 0.7rem;
      border-radius: 999px;
      border: 1px dashed rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.02);
    }

    /* Problem/Solution & How it works */
    .grid-3 {
      display: grid;
      gap: 1.4rem;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 1.9rem;
    }

    .card {
      background: var(--color-surface);
      border-radius: 16px;
      padding: 1.2rem 1.25rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.4rem;
    }

    .card-badge {
      width: 1.7rem;
      height: 1.7rem;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .card-badge.bad {
      background: rgba(248, 250, 252, 1);
      border: 1px solid rgba(248, 113, 113, 0.55);
      color: #b91c1c;
    }

    .card-badge.good {
      background: rgba(240, 253, 250, 1);
      border: 1px solid rgba(16, 185, 129, 0.55);
      color: #047857;
    }

    .card-title {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--color-text-heading);
      margin-bottom: 0.25rem;
    }

    .card-body {
      font-size: 0.87rem;
      color: var(--color-text-muted);
      line-height: 1.65;
    }

    .card-body ul {
      padding-left: 1.1rem;
      margin-top: 0.4rem;
    }

    .card-body li {
      margin-bottom: 0.18rem;
    }

    .how-steps .card-badge.good {
      background: rgba(219, 234, 254, 1);
      border-color: rgba(37, 99, 235, 0.55);
      color: #1d4ed8;
    }

    /* Feature highlights */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.2rem;
      margin-top: 1.8rem;
    }

    .feature-item {
      background: #0f172a;
      color: #e5e7eb;
      border-radius: 16px;
      padding: 1rem 1.1rem;
      border: 1px solid rgba(148, 163, 184, 0.4);
      position: relative;
      overflow: hidden;
    }

    .feature-item::before {
      content: "";
      position: absolute;
      inset: -20%;
      background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.55), transparent 60%);
      opacity: 0.8;
      mix-blend-mode: screen;
    }

    .feature-item-inner {
      position: relative;
      z-index: 2;
    }

    .feature-kicker {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #93c5fd;
      margin-bottom: 0.25rem;
    }

    .feature-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .feature-copy {
      font-size: 0.8rem;
      color: #cbd5f5;
      line-height: 1.6;
    }

    /* Pricing teaser */
    .pricing-teaser {
      margin-top: 2.4rem;
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 1.6rem;
      align-items: stretch;
    }

    .pricing-intro {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      max-width: 20rem;
    }

    .pricing-intro strong {
      color: var(--color-text-heading);
    }

    .plans-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .plan-card {
      border-radius: 16px;
      padding: 1rem 1rem 1.1rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      background: rgba(255, 255, 255, 0.96);
      font-size: 0.85rem;
    }

    .plan-card.pro {
      border-color: rgba(37, 99, 235, 0.7);
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.18);
      position: relative;
      overflow: hidden;
    }

    .plan-card.pro::before {
      content: "Most popular";
      position: absolute;
      top: 0.55rem;
      right: 0.7rem;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(219, 234, 254, 0.95);
      color: #1d4ed8;
    }

    .plan-name {
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 0.2rem;
    }

    .plan-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--color-text-heading);
      margin-bottom: 0.1rem;
    }

    .plan-price span {
      font-size: 0.72rem;
      font-weight: 500;
      color: var(--color-text-muted);
    }

    .plan-note {
      font-size: 0.78rem;
      color: var(--color-text-muted);
      margin-bottom: 0.6rem;
    }

    .plan-meta {
      font-size: 0.76rem;
      color: var(--color-text-muted);
    }

    /* Final CTA */
    .section-cta {
      padding: 0 0 3.4rem;
    }

    .cta-panel {
      background: radial-gradient(circle at 0 0, #2563eb 0, #1d4ed8 35%, #0f172a 100%);
      border-radius: 22px;
      padding: 1.9rem 2rem;
      color: #e5e7eb;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      box-shadow: 0 24px 65px rgba(15, 23, 42, 0.55);
    }

    .cta-heading {
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .cta-sub {
      font-size: 0.9rem;
      color: #d1d5db;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .btn-cta-primary {
      background: #ffffff;
      color: #1d4ed8;
      border-radius: 999px;
      padding: 0.6rem 1.4rem;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      box-shadow: 0 16px 45px rgba(15, 23, 42, 0.7);
      text-decoration: none;
      transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.15s ease;
    }

    .btn-cta-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 20px 58px rgba(15, 23, 42, 0.8);
      background: #f9fafb;
    }

    .btn-cta-secondary {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      padding: 0.55rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: #e5e7eb;
      background: rgba(15, 23, 42, 0.35);
      text-decoration: none;
    }

    .cta-note {
      font-size: 0.75rem;
      color: #9ca3af;
      margin-top: 0.25rem;
    }

    /* Footer — base; see Dome Ops overrides for full layout */
    .site-footer {
      border-top: 1px solid var(--color-border);
      background: var(--color-sidebar);
      padding: 1.6rem 0 2.2rem;
      margin-top: auto;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.8rem;
      color: var(--color-text-muted);
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 1.1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--color-text-muted);
    }

    .footer-links a:hover {
      color: var(--color-text-heading);
    }

    /* Responsive */
    .nav-menu-toggle {
      display: none;
    }

    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.3rem;
      }

      .hero {
        padding-top: 2.5rem;
      }

      .hero-card {
        order: -1;
      }

      .pricing-teaser {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        height: auto;
        padding: 0.7rem 0;
        gap: 0.8rem;
        align-items: flex-start;
      }

      .nav {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .nav-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.2rem;
        height: 2.2rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(248, 250, 252, 0.8);
      }

      .hero-title {
        font-size: 2.1rem;
      }

      .shell {
        padding-inline: 1.25rem;
      }

      .grid-3,
      .feature-grid,
      .plans-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .section,
      .section-cta {
        padding-bottom: 2.5rem;
      }

      .cta-panel {
        padding: 1.6rem 1.5rem;
      }

      .nav.is-open,
      .nav-cta.is-open {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 0.5rem;
        align-items: stretch;
        gap: 0.35rem;
      }

      .header-inner.is-open {
        flex-wrap: wrap;
      }

      .nav-item.has-dropdown {
        flex-wrap: wrap;
        width: 100%;
      }

      .nav-item.has-dropdown .nav-parent .nav-caret {
        display: none;
      }

      .nav-dropdown-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .nav-item.has-dropdown.is-open .nav-dropdown-toggle .nav-caret {
        transform: rotate(225deg) translateY(1px);
      }

      .nav-dropdown {
        position: static;
        transform: none;
        width: 100%;
        margin: 0.25rem 0 0.35rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        display: none;
      }

      .nav-item.has-dropdown.is-open .nav-dropdown {
        display: block;
        transform: none;
      }

      .nav-dropdown--mega,
      .nav-dropdown--mega-wide {
        left: auto;
        min-width: 0;
        max-width: none;
        width: 100%;
      }

      .nav-mega-item {
        padding: 0.7rem 0.8rem;
      }
    }

/* Inner page hero */
.page-hero {
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.page-hero .hero-title {
  font-size: clamp(1.9rem, 2.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.page-hero .hero-subtitle {
  max-width: 36rem;
  margin: 0 auto;
}

/* Pricing page */
.billing-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.8);
  border: 1px solid var(--color-border);
  margin: 1.25rem auto 2rem;
}

.billing-toggle button {
  border: none;
  background: transparent;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
}

.billing-toggle button.is-active {
  background: white;
  color: var(--color-text-heading);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.plan-card-full {
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.plan-card-full.pro {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.15);
}

.plan-card-full.coming-soon {
  opacity: 0.72;
}

.plan-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.95);
  color: #1d4ed8;
  align-self: flex-start;
}

.plan-badge.soon {
  background: rgba(254, 243, 199, 0.95);
  color: #b45309;
}

.plan-features {
  list-style: none;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.plan-features li::before {
  content: "✓";
  color: var(--color-accent);
  margin-right: 0.4rem;
  font-weight: 700;
}

.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.faq-item h3 {
  font-size: 0.92rem;
  color: var(--color-text-heading);
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Auth pages */
.auth-page {
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.auth-card {
  width: 100%;
  max-width: 26rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.auth-card h1 {
  font-size: 1.4rem;
  color: var(--color-text-heading);
  margin-bottom: 0.35rem;
}

.auth-card .auth-sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 0.35rem;
}

.form-group input {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.auth-divider {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 1.25rem 0;
}

.auth-footer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
}

.auth-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0;
  color: var(--color-text-muted, #64748b);
  font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border, #e2e8f0);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 1rem 0;
}

.checkbox-row input {
  margin-top: 0.15rem;
}

/* Features page */
.feature-category {
  margin-bottom: 2.5rem;
}

.feature-category h3 {
  font-size: 1.1rem;
  color: var(--color-text-heading);
  margin-bottom: 1rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list .card {
  height: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .feature-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Compare tables & vs pages */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare-table th,
.compare-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.compare-table thead th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--color-text-heading);
  font-size: 0.8rem;
}

.compare-table tbody tr:hover {
  background: #fafbfc;
}

.compare-highlight td,
.compare-highlight-col {
  background: linear-gradient(90deg, #eff6ff, #f0fdf4) !important;
  font-weight: 500;
}

.compare-table-wide {
  font-size: 0.78rem;
}

.compare-table-wide th,
.compare-table-wide td {
  padding: 0.55rem 0.65rem;
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.compare-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}

.compare-card:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.compare-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2563eb;
}

.vs-verdict {
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.vs-verdict p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 0.65rem;
}

.vs-verdict p:last-child {
  margin-bottom: 0;
}

.vs-list {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}

.vs-list li {
  margin-bottom: 0.5rem;
}

.feature-vs {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 0.25rem;
}

.feature-category-intro {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: -0.5rem 0 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .compare-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .compare-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ═══ Calm Ops theme ═══ */
.site-header {
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
}

.logo-mark {
  background: var(--color-primary);
  box-shadow: none;
}

.badge-beta {
  border-color: rgba(15, 118, 110, 0.25);
  background: var(--color-primary-dim);
  color: var(--color-primary);
}

.nav > a.is-active::after,
.nav-parent.is-active::after {
  background: var(--color-primary);
}

.btn-ghost:hover {
  color: var(--color-text-heading);
  background: var(--color-surface-hover);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: none;
}

.hero-eyebrow {
  background: var(--color-primary-dim);
  border-color: rgba(15, 118, 110, 0.2);
  color: var(--color-primary);
}

.hero-eyebrow span.tag {
  background: var(--color-primary);
  color: #fff;
}

.hero-title span.highlight {
  background-image: none;
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
}

.hero-subtitle b,
.hero-meta strong {
  color: var(--color-text-heading);
}

.hero-meta-dot {
  background: var(--color-primary);
  box-shadow: none;
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-card-header,
.hero-card-metrics,
.hero-card-body {
  color: var(--color-text);
}

.hero-card-title {
  color: var(--color-text-heading);
}

.hero-card-pill {
  background: var(--color-primary-dim);
  color: var(--color-primary);
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.hero-card-body-line .cmd {
  font-family: var(--font-mono);
  color: var(--color-primary);
  font-size: 0.72rem;
}

.hero-card-body-line .prompt {
  color: var(--color-primary);
}

.hero-floating-badge {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.logos-pill {
  border-color: rgba(20, 184, 166, 0.25);
  background: rgba(20, 184, 166, 0.06);
  color: var(--color-primary-light);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(20, 184, 166, 0.2);
}

.card-badge.bad {
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

.card-badge.good {
  background: var(--color-primary-dim);
  border-color: rgba(20, 184, 166, 0.35);
  color: var(--color-primary-light);
}

.how-steps .card-badge.good {
  background: var(--color-accent-dim);
  border-color: rgba(167, 139, 250, 0.35);
  color: var(--color-accent);
}

.feature-item {
  background: linear-gradient(160deg, #1a1a1f 0%, #141418 100%);
  border: 1px solid var(--color-border);
}

.feature-item::before {
  background: radial-gradient(circle at 0 0, rgba(20, 184, 166, 0.18), transparent 55%);
}

.feature-kicker {
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.plan-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.plan-card.pro {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 0 32px rgba(20, 184, 166, 0.1);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #12121a 0%, #0f1418 35%, #09090b 100%);
  border: 1px solid rgba(20, 184, 166, 0.22);
  box-shadow: var(--shadow-glow), 0 24px 60px rgba(0, 0, 0, 0.5);
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 0% 0%, rgba(167, 139, 250, 0.08), transparent 50%);
  pointer-events: none;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #fff;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #5eead4, #2dd4bf);
  box-shadow: 0 6px 26px rgba(20, 184, 166, 0.45);
}

.btn-cta-secondary {
  border-color: rgba(167, 139, 250, 0.35);
  color: var(--color-accent);
  background: var(--color-accent-dim);
}

.btn-cta-secondary:hover {
  background: rgba(167, 139, 250, 0.18);
}

.site-footer {
  background: linear-gradient(180deg, var(--color-bg-elevated) 0%, var(--color-sidebar) 100%);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 3rem 0 1.75rem;
  margin-top: auto;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.35), rgba(167, 139, 250, 0.25), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-grid--wide {
  grid-template-columns: 1.15fr repeat(5, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}

.footer-grid--compact {
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

@media (max-width: 1100px) {
  .footer-grid--wide {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-grid--wide .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid--compact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid--compact .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Add-on question cards (hub + teaser) */
.addon-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.addon-questions--compact .addon-question-copy {
  font-size: 0.85rem;
}

.addon-question {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface, #fff);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.addon-question:hover {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.addon-question-kicker {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.addon-question-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--color-text-heading);
  letter-spacing: -0.02em;
}

.addon-question-copy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  flex: 1;
}

.addon-question-link {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f766e;
}

@media (max-width: 900px) {
  .addon-questions {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.2), rgba(167, 139, 250, 0.12));
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text-heading);
  letter-spacing: -0.02em;
}

.footer-logo-text span {
  color: var(--color-primary-light);
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-heading);
  margin: 0 0 0.85rem;
}

.footer-col-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col-links li {
  margin-bottom: 0.45rem;
}

.footer-col-label {
  margin: 0.95rem 0 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  list-style: none;
}

.footer-col-links > .footer-col-label:first-child {
  margin-top: 0.35rem;
  padding-top: 0;
  border-top: 0;
}

.footer-col-links a {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col-links a:hover {
  color: var(--color-primary-light);
}

.footer-payments {
  margin-top: 2rem;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(20, 184, 166, 0.06) 0%, transparent 42%),
    var(--color-surface, rgba(15, 23, 42, 0.35));
}

.footer-payments-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-payments-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-heading);
  margin: 0;
}

.footer-payments-hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-payment-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-payment-methods li {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-heading);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.footer-payments-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  opacity: 0.9;
  max-width: 52rem;
}

@media (max-width: 720px) {
  .footer-payments {
    padding: 1.15rem 1rem 1.05rem;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.78rem;
}

.footer-copy {
  margin: 0;
  color: var(--color-text-muted);
}

.footer-note {
  margin: 0;
  color: var(--color-text-muted);
  opacity: 0.75;
}

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

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

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

  .payment-logo {
    height: 14px;
  }
}

.compare-table th,
.compare-table td {
  border-color: var(--color-border);
}

.compare-table thead th {
  background: var(--color-bg-elevated);
  color: var(--color-text-heading);
}

.compare-table tbody tr:hover td {
  background: var(--color-primary-dim);
}

.compare-highlight,
.compare-highlight-col,
.compare-table tr.compare-highlight td {
  background: rgba(20, 184, 166, 0.07) !important;
}

.compare-highlight td,
.compare-highlight-col {
  color: var(--color-primary-light) !important;
}

.compare-callout {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(167, 139, 250, 0.06)) !important;
  border-color: rgba(20, 184, 166, 0.22) !important;
}

.compare-callout h3,
.compare-callout p {
  color: var(--color-text) !important;
}

.compare-card:hover {
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.25);
}

.compare-card-link {
  color: var(--color-primary-light);
}

.vs-verdict {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.page-hero {
  border-bottom: 1px solid var(--color-border);
}

.plan-card-full {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.plan-card-full.pro {
  border-color: rgba(20, 184, 166, 0.4);
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.08);
}

.plan-badge {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
}

.faq-item {
  border-color: var(--color-border);
  background: var(--color-surface);
}

.auth-card,
.billing-toggle button.is-active {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
}

.billing-toggle button.is-active {
  background: var(--color-primary-dim);
  color: var(--color-primary-light);
  border-color: rgba(20, 184, 166, 0.35);
}

input, textarea, select {
  background: var(--color-bg-elevated);
  border-color: var(--color-border);
  color: var(--color-text-heading);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

code, .cmd, pre {
  font-family: var(--font-mono);
  color: var(--color-primary-light);
}

.section[style*="background:linear-gradient"] {
  background: var(--color-bg-elevated) !important;
}

.feature-vs {
  color: var(--color-accent);
}

.pill-outline {
  background: var(--color-primary-dim);
  border-color: rgba(20, 184, 166, 0.28);
  color: var(--color-primary-light);
}

.metric-chip {
  background: var(--color-primary-dim);
  color: var(--color-primary-light);
}

.status-dot {
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

/* Trust strip + onboarding (early-stage professional proof) */
.trust-strip {
  padding: 0 0 1.75rem;
  margin-top: -0.5rem;
}

.trust-strip-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface, #fff);
}

.trust-strip-list li {
  min-width: 0;
}

.trust-strip-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-heading, #0f172a);
  margin-bottom: 0.2rem;
}

.trust-strip-detail {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.trust-strip-footnote {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}

.trust-strip-footnote a {
  color: var(--color-primary);
  text-decoration: none;
}

.trust-strip-footnote a:hover {
  text-decoration: underline;
}

.onboarding-checklist {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.onboarding-checklist li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface, #fff);
}

.onboarding-step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--color-primary-dim, rgba(20, 184, 166, 0.12));
  color: var(--color-primary, #0f766e);
}

.onboarding-checklist strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-heading, #0f172a);
  margin-bottom: 0.25rem;
}

.onboarding-checklist p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .trust-strip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .trust-strip-list {
    grid-template-columns: 1fr;
  }
}

/* /services catalog — compact rows */
.page-hero--compact .hero-subtitle {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.services-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  margin-top: 1.35rem;
}

.services-jump a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.7);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.services-jump a:hover {
  color: var(--color-text-heading);
  border-color: rgba(20, 184, 166, 0.45);
  background: #fff;
}

.shell--services {
  max-width: 52rem;
}

.services-group {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.services-group--first {
  padding-top: 0;
}

.services-group-head {
  margin-bottom: 1rem;
}

.services-group-head .section-title {
  margin-bottom: 0.35rem;
}

.services-group-sub {
  margin: 0;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--color-border);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row.is-featured {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.06), transparent 55%);
}

.service-row-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-heading);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.service-row-name a {
  color: inherit;
  text-decoration: none;
}

.service-row-name a:hover {
  color: var(--color-primary, #0f766e);
}

.service-row-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.12);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.service-row-summary {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.service-row-meta {
  text-align: right;
  white-space: nowrap;
}

.service-row-price {
  font-size: 1rem;
  font-weight: 650;
  color: var(--color-text-heading);
}

.service-row-alt {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.service-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.service-row-actions .btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
}

@media (max-width: 720px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .service-row-meta {
    text-align: left;
  }

  .service-row-actions {
    justify-content: flex-start;
  }
}


