:root {
      --bg: #0c1117;
      --surface: #141b24;
      --border: #243042;
      --text: #e8eef5;
      --muted: #8b9cb3;
      --accent: #3d9cf5;
      --accent-dim: #2563a8;
      --warm: #f59e0b;
      --good: #34d399;
      --max: 1120px;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 1.05rem;
    }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.65rem 1.2rem; border-radius: 8px; font-weight: 600;
      font-size: 0.95rem; border: none; cursor: pointer; transition: 0.15s;
    }
    .btn-primary { background: var(--accent); color: #06101c; }
    .btn-primary:hover { background: #5eb0ff; text-decoration: none; }
    .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
    .btn-ghost:hover { border-color: var(--muted); text-decoration: none; }
    .hero {
      padding: 4rem 0 3rem;
      background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(61, 156, 245, 0.18), transparent);
      border-bottom: 1px solid var(--border);
    }
    .eyebrow {
      display: inline-block; font-size: 0.8rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm);
      margin-bottom: 0.75rem;
    }
    h1 {
      font-family: Georgia, "Times New Roman", Times, serif;
      font-weight: 400; font-size: clamp(2.3rem, 5vw, 3.15rem);
      line-height: 1.12; margin: 0 0 1rem; letter-spacing: -0.02em;
      max-width: 16ch;
    }
    .lead { color: var(--muted); font-size: 1.1rem; max-width: 42rem; margin: 0; }
    .hero-cta {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-top: 1.4rem;
    }
    main section { padding: 3.5rem 0; }
    .pricing-section-title {
      margin: 0 0 0.65rem;
      color: var(--text);
      font-size: clamp(1.55rem, 2.6vw, 2.15rem);
      font-weight: 800;
      line-height: 1.16;
    }
    .section-intro { color: var(--muted); max-width: 42rem; margin: 0 0 2rem; }
    .pricing-badge {
      display: inline-flex;
      align-items: center;
      margin: 0 0 1.4rem;
      padding: 0.35rem 0.75rem;
      border: 1px solid rgba(245, 158, 11, 0.38);
      border-radius: 999px;
      background: rgba(245, 158, 11, 0.1);
      color: #f8c46b;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.02em;
    }
    .pricing-grid {
      display: grid; gap: 1.25rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) {
      .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
    }
    .tier {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem;
      height: 100%;
      position: relative;
    }
    .tier-featured {
      border-color: rgba(61, 156, 245, 0.5);
      box-shadow: 0 18px 48px rgba(0,0,0,0.24);
    }
    .badge {
      display: inline-block;
      margin-bottom: 0.9rem;
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      background: rgba(61,156,245,0.15);
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }
    .tier-kicker {
      margin: 0 0 0.55rem;
      color: var(--warm);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .tier h2 {
      margin: 0 0 0.35rem;
      font-size: 1.25rem;
      line-height: 1.2;
    }
    .tier-subtitle {
      margin: 0 0 1.25rem;
      color: var(--muted);
      font-size: 0.95rem;
    }
    .price {
      font-size: 2.5rem;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin: 0 0 0.35rem;
    }
    .price span {
      font-size: 1rem;
      color: var(--muted);
      font-weight: 500;
      letter-spacing: 0;
    }
    .plan-fit {
      margin: 0.65rem 0 1rem;
      color: #b8c6d8;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .feature-label {
      margin: 1rem 0 0.6rem;
      color: var(--text);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }
    .feature-list {
      list-style: none;
      padding: 0;
      margin: 1.25rem 0 0;
    }
    .feature-list li {
      position: relative;
      padding: 0.5rem 0 0.5rem 1.5rem;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.95rem;
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 1rem;
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 999px;
      background: var(--good);
    }
    .pricing-panel {
      margin-top: 2.5rem;
      padding: 1.75rem 1.5rem;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
    }
    .pricing-panel h2 {
      margin: 0 0 0.55rem;
      color: var(--text);
      font-size: clamp(1.35rem, 2.2vw, 1.75rem);
      line-height: 1.18;
    }
    .pricing-panel > p {
      margin: 0 0 1.25rem;
      color: var(--muted);
      max-width: 48rem;
      font-size: 0.96rem;
    }
    .pricing-panel > .comparison-note {
      margin-top: -0.45rem;
      font-size: 0.84rem;
    }
    .comparison-table-wrap {
      width: 100%;
      overflow: visible;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: rgba(12, 17, 23, 0.36);
    }
    .comparison-table {
      width: 100%;
      min-width: 48rem;
      border-collapse: collapse;
      font-size: 0.95rem;
    }
    .comparison-table th,
    .comparison-table td {
      padding: 0.85rem 0.75rem;
      border-bottom: 1px solid var(--border);
      text-align: left;
      vertical-align: middle;
    }
    .comparison-table tbody tr {
      transition: background-color 0.15s ease;
    }
    .comparison-table tbody tr:hover,
    .comparison-table tbody tr:focus-within {
      background: rgba(61, 156, 245, 0.08);
    }
    .comparison-table th {
      color: var(--text);
      font-weight: 800;
    }
    .comparison-table thead th {
      color: #b8c6d8;
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      background: rgba(20, 27, 36, 0.82);
    }
    .comparison-table thead th:first-child,
    .comparison-table tbody th {
      width: 34%;
      min-width: 15rem;
    }
    .comparison-table tr:last-child th,
    .comparison-table tr:last-child td {
      border-bottom: none;
    }
    .comparison-table td {
      min-width: 7rem;
    }
    .workflow-tooltip {
      position: relative;
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      color: var(--text);
      cursor: help;
      outline: none;
    }
    .workflow-tooltip::after {
      content: attr(data-tooltip);
      position: absolute;
      z-index: 4;
      left: 0;
      top: calc(100% + 0.55rem);
      width: min(18rem, 70vw);
      padding: 0.65rem 0.75rem;
      border: 1px solid #526579;
      border-radius: 8px;
      background: #101720;
      color: #f4f8fc;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.45;
      text-transform: none;
      letter-spacing: 0;
      opacity: 0;
      pointer-events: none;
      transform: translateY(0.25rem);
      transition: opacity 0.15s ease, transform 0.15s ease;
    }
    .workflow-tooltip:hover::after,
    .workflow-tooltip:focus::after,
    .workflow-tooltip:focus-visible::after {
      opacity: 1;
      transform: translateY(0);
    }
    .workflow-tooltip:focus,
    .workflow-tooltip:focus-visible {
      border-radius: 6px;
      box-shadow: 0 0 0 3px rgba(61, 156, 245, 0.36);
    }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .status {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      color: var(--text);
      font-weight: 800;
      white-space: nowrap;
    }
    .status::before {
      content: "";
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 999px;
      background: currentColor;
    }
    .status-yes { color: #5ee6ad; }
    .status-partial { color: #ffd37a; }
    .status-add-on { color: #9ee8ff; }
    .status-no { color: #ffb3bd; }
    @media (max-width: 640px) {
      .comparison-table-wrap {
        border-radius: 10px;
        overflow-x: auto;
        overflow-y: hidden;
      }
      .comparison-table {
        min-width: 42rem;
        font-size: 0.9rem;
      }
      .comparison-table th,
      .comparison-table td {
        padding: 0.75rem 0.65rem;
      }
      .comparison-table thead th:first-child,
      .comparison-table tbody th {
        min-width: 13rem;
      }
      .workflow-tooltip::after {
        width: min(16rem, 72vw);
      }
    }
    .plan-details {
      display: grid;
      gap: 0.85rem;
    }
    .plan-detail-card {
      border: 1px solid var(--border);
      border-radius: 12px;
      background: rgba(12, 17, 23, 0.58);
      overflow: hidden;
    }
    .plan-detail-card summary {
      cursor: pointer;
      padding: 1rem 1.1rem;
      color: var(--text);
      font-weight: 800;
      list-style-position: inside;
    }
    .plan-detail-card summary:hover {
      color: #f8c46b;
    }
    .detail-list {
      display: grid;
      border-top: 1px solid var(--border);
    }
    .detail-list > div {
      padding: 1rem 1.1rem;
      border-bottom: 1px solid var(--border);
    }
    .detail-list > div:last-child {
      border-bottom: none;
    }
    .detail-list h3 {
      margin: 0 0 0.3rem;
      color: var(--text);
      font-size: 1rem;
      line-height: 1.25;
    }
    .detail-list p {
      margin: 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }
    @media (min-width: 760px) {
      .detail-list {
        grid-template-columns: 1fr 1fr;
      }
      .detail-list > div:nth-child(odd) {
        border-right: 1px solid var(--border);
      }
    }
    .cta-band {
      text-align: center;
      padding: 3rem 1.5rem;
      background: var(--surface);
      border-radius: 16px;
      border: 1px solid var(--border);
    }
    .pricing-faq-section {
      padding-top: 0;
    }
    .pricing-faq-panel {
      margin-top: 0;
    }
    .pricing-faq-list {
      display: grid;
      gap: 0.8rem;
      margin-top: 1.35rem;
    }
    .pricing-faq-item {
      border: 1px solid var(--border);
      border-radius: 12px;
      background: rgba(12, 17, 23, 0.58);
      overflow: hidden;
    }
    .pricing-faq-item summary {
      cursor: pointer;
      padding: 1rem 1.1rem;
      color: var(--text);
      font-weight: 800;
      line-height: 1.3;
      list-style-position: inside;
    }
    .pricing-faq-item summary:hover,
    .pricing-faq-item summary:focus {
      color: #f8c46b;
    }
    .pricing-faq-item summary:focus-visible {
      outline: 3px solid rgba(61, 156, 245, 0.45);
      outline-offset: -3px;
    }
    .pricing-faq-item p {
      margin: 0;
      padding: 0 1.1rem 1rem 1.1rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.55;
    }
    footer {
      padding: 2.5rem 0; color: var(--muted); font-size: 0.9rem;
      border-top: 1px solid var(--border); margin-top: 2rem;
    }
    .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
    @media (max-width: 640px) {
      body { font-size: 1.15rem; line-height: 1.7; }
      .lead { font-size: 1.08rem; }
      .section-intro,
      .tier-subtitle,
      .feature-list li,
      .detail-list p,
      .pricing-faq-item p,
      footer { font-size: 1.05rem; }
    }

.cta-band-title { margin-top: 0; }
.cta-band-copy { color: var(--muted); max-width: 34rem; margin: 0 auto 1.35rem; }

