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

  /* Hero */
  .hero-wrap {
    background: linear-gradient(180deg, #FFF4EC 0%, #FFEAE0 100%);
    padding: 80px 0 120px;
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .hero-wrap::before {
    content: ""; position: absolute; width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,158,149,0.12), transparent 70%);
    top: -450px; left: -300px; pointer-events: none;
  }
  .hero-wrap::after {
    content: ""; position: absolute; width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,122,58,0.14), transparent 70%);
    bottom: -350px; right: -250px; pointer-events: none;
  }
  .hero {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 80px; align-items: center;
  }
  .hero-kicker {
    font-family: "JetBrains Mono", monospace; font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--teal-600); display: inline-flex; align-items: center;
    margin-bottom: 28px;
  }
  /* The dot is a pseudo-element so the block holds nothing but editable text.
     The margin replaces the flex `gap` the markup version relied on; 20px is
     what reproduces the original spacing pixel for pixel. */
  .hero-kicker::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
    margin-right: 20px;
    background: var(--teal-600); box-shadow: 0 0 0 4px rgba(31,158,149,0.18);
  }
  .hero-logo-row { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
  .hero-logo-row .wordmark {
    font-family: "Inter Tight", sans-serif; font-weight: 800;
    font-size: 48px; letter-spacing: -0.05em; color: var(--ink);
  }
  .hero-title {
    font-family: "Inter Tight", sans-serif; font-size: 72px; font-weight: 800;
    letter-spacing: -0.045em; line-height: 0.98; margin-bottom: 24px;
    text-wrap: balance;
  }
  .hero-title em { font-style: normal; color: var(--orange-500); }
  .hero-sub {
    font-family: "Inter Tight", sans-serif; font-size: 20px; font-weight: 400;
    color: var(--ink-2); line-height: 1.45; max-width: 520px; margin-bottom: 40px;
    letter-spacing: -0.005em;
  }
  .hero-sub b, .hero-sub strong { color: var(--ink); font-weight: 600; }
  .cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
  .hero-how-link {
    display: inline-block; margin-top: 16px;
    font-family: "Inter Tight", sans-serif; font-size: 14px; font-weight: 500;
    color: var(--ink-3); text-decoration: none; letter-spacing: -0.005em;
    transition: color 0.15s ease;
  }
  .hero-how-link:hover { color: var(--ink); }

  /* Buttons are core/button blocks. The variant class (.btn-primary, …) can
     only be set on the .wp-block-button wrapper, so every rule targets the
     inner link through it — that also clears the block library's own
     :root :where(.wp-block-button__link) defaults on specificity. */
  .cta-buttons .wp-block-button__link {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 10px;
    font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: -0.005em; border: 1px solid transparent;
    cursor: pointer; transition: all 0.15s ease; white-space: nowrap;
    text-decoration: none; background: none; color: inherit;
  }
  .cta-buttons .btn-primary .wp-block-button__link {
    background: var(--ink); color: #fff;
    box-shadow: 0 1px 2px rgba(28,35,48,0.08), 0 8px 20px -6px rgba(28,35,48,0.2);
  }
  .cta-buttons .btn-primary .wp-block-button__link:hover { background: #000; transform: translateY(-1px); }
  .cta-buttons .btn-secondary .wp-block-button__link { background: #fff; color: var(--ink); border-color: var(--line); }
  .cta-buttons .btn-secondary .wp-block-button__link:hover { border-color: var(--ink-3); transform: translateY(-1px); }

  .hero-diagram {
    position: relative; display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: nowrap; min-width: 0;
  }
  .env-card {
    background: #fff; border-radius: 18px; padding: 24px 22px;
    box-shadow: 0 1px 2px rgba(28,35,48,0.04), 0 16px 40px -8px rgba(240,122,58,0.18);
    flex: 1 1 0; min-width: 0; text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
  }
  .env-card-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .env-card-icon.teal { background: rgba(31,158,149,0.12); }
  .env-card-icon.orange { background: rgba(240,122,58,0.14); }
  .env-card-label {
    font-family: "JetBrains Mono", monospace; font-size: 10px;
    letter-spacing: 0.14em; color: var(--ink-3); text-transform: uppercase; margin-bottom: 6px;
  }
  .env-card-name { font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 4px; }
  .env-card-sub { font-family: "Inter", sans-serif; font-size: 12px; color: var(--ink-3); }
  .env-flow { display: flex; flex-direction: column; gap: 8px; align-items: center; flex: 0 0 auto; }
  .flow-pill {
    font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.14em;
    padding: 6px 12px; border-radius: 99px;
    display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase;
  }
  .flow-pill.push { background: var(--ink); color: #fff; }
  .flow-pill.pull { background: #fff; border: 1px solid var(--line); color: var(--ink-2); }

  /* Features */
  .section { padding: 120px 0; }
  .section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
  .section-eyebrow {
    font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--teal-600); margin-bottom: 16px;
  }
  .section-eyebrow.is-orange { color: var(--orange-500); }
  .section-title {
    font-family: "Inter Tight", sans-serif; font-size: 52px; font-weight: 700;
    letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 16px; text-wrap: balance;
  }
  .section-sub {
    font-family: "Inter Tight", sans-serif; font-size: 20px; font-weight: 400;
    color: var(--ink-2); line-height: 1.45; text-wrap: balance;
  }
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 32px; transition: all 0.2s ease;
  }
  .feature-card:hover {
    border-color: rgba(31,158,149,0.4); transform: translateY(-2px);
    box-shadow: 0 12px 30px -12px rgba(28,35,48,0.12);
  }
  .feature-icon-box {
    width: 52px; height: 52px; border-radius: 13px;
    background: rgba(31,158,149,0.1);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .feature-icon-box.orange { background: rgba(240,122,58,0.12); }
  .feature-card h3 {
    font-family: "Inter Tight", sans-serif; font-weight: 700; font-size: 22px;
    letter-spacing: -0.02em; margin-bottom: 10px;
  }
  .feature-card p { font-family: "Inter", sans-serif; font-size: 15px; line-height: 1.55; color: var(--ink-3); }

  /* Comparison */
  .comparison-wrap { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .comparison-table {
    max-width: 960px; margin: 0 auto; background: #fff;
    border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  }
  .table-row { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: stretch; border-bottom: 1px solid var(--line-2); }
  .table-row:last-child { border-bottom: none; }
  .table-cell { padding: 14px 24px; font-family: "Inter", sans-serif; font-size: 15px; color: var(--ink-2); }
  .table-cell:nth-child(2), .table-cell:nth-child(3) { text-align: center; }
  .table-cell:nth-child(2) { background: rgba(31,158,149,0.07); }
  /* Body icon cells stretch and center their content */
  .table-row:not(.table-header):not(.table-category) .table-cell:nth-child(2),
  .table-row:not(.table-header):not(.table-category) .table-cell:nth-child(3) {
    display: flex; align-items: center; justify-content: center;
  }
  .table-header { background: var(--ink); }
  .table-header .table-cell {
    padding: 20px 24px; font-family: "Inter Tight", sans-serif;
    font-weight: 600; font-size: 14px; letter-spacing: 0.02em; color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .table-header .table-cell:nth-child(1) { display: block; }
  .table-header .table-cell:nth-child(2) {
    color: #fff; background: rgba(31,158,149,0.12);
    border-top: 3px solid var(--teal-600);
  }
  .table-header .table-cell:nth-child(3) { color: rgba(255,255,255,0.55); }
  .table-header .col-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 4px; color: rgba(255,255,255,0.7); }
  .table-header .col-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
  .table-header .col-sub { font-size: 11px; font-weight: 400; margin-top: 2px; color: rgba(255,255,255,0.65); letter-spacing: 0; }
  .check { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 14px; font-weight: 700; background: rgba(31,158,149,0.14); color: var(--ink); }
  .cross { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 14px; font-weight: 700; background: rgba(28,35,48,0.05); color: var(--ink-3); }
  .pro-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 99px; font-family: "Inter Tight", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.02em; background: rgba(240,122,58,0.12); color: var(--orange-500); border: 1px solid rgba(240,122,58,0.25); }
  .table-row:hover { background: var(--peach-soft); }
  .table-row:hover .table-cell:nth-child(2) { background: rgba(31,158,149,0.11); }
  .table-header:hover { background: var(--ink); }
  .table-category { background: var(--off-white); border-bottom: 1px solid var(--line-2); }
  .table-category .table-cell {
    padding: 8px 24px; font-family: "JetBrains Mono", monospace;
    font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-3); font-weight: 500;
  }
  .table-category .table-cell:nth-child(2) { background: rgba(31,158,149,0.07); }
  .table-row .row-sub { display: block; font-size: 12px; color: var(--ink-4); margin-top: 2px; }
  .comparison-cta { margin-top: 28px; }

  /* FAQ */
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    transition: border-color 0.2s ease;
  }
  .faq-item:hover, .faq-item[open] { border-color: rgba(31,158,149,0.4); }
  .faq-item summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 20px 24px;
    font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: 17px;
    letter-spacing: -0.01em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-chevron { flex: 0 0 auto; color: var(--ink-3); transition: transform 0.2s ease; display: inline-flex; }
  .faq-item[open] .faq-chevron { transform: rotate(180deg); }
  .faq-answer {
    padding: 0 24px 20px;
    font-family: "Inter", sans-serif; font-size: 15px; line-height: 1.6; color: var(--ink-3);
    max-width: 640px;
  }
  .faq-answer a { color: var(--teal-600); text-decoration: underline; }

  /* CTA band */
  .cta-band {
    background: var(--charcoal); color: #fff; padding: 96px 0;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,122,58,0.18), transparent 70%);
    top: -300px; right: -200px;
  }
  .cta-band::after {
    content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(31,158,149,0.16), transparent 70%);
    bottom: -250px; left: -150px;
  }
  .cta-band-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
  .cta-band h2 {
    font-family: "Inter Tight", sans-serif; font-size: 56px; font-weight: 700;
    letter-spacing: -0.035em; line-height: 1.05; color: #fff;
    margin-bottom: 20px; text-wrap: balance;
  }
  .cta-band p { font-family: "Inter Tight", sans-serif; font-size: 20px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
  .cta-buttons .btn-orange .wp-block-button__link { background: var(--orange-500); color: #fff; }
  .cta-buttons .btn-orange .wp-block-button__link:hover { background: #E56A2B; transform: translateY(-1px); }
  .cta-buttons .btn-on-dark .wp-block-button__link { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.12); }
  .cta-buttons .btn-on-dark .wp-block-button__link:hover { background: rgba(255,255,255,0.12); }

  @media (max-width: 920px) {
    .hero { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-logo-row { justify-content: center; }
    .cta-buttons { justify-content: center; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 40px; }
    .cta-band h2 { font-size: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .section { padding: 80px 0; }
    .hero-wrap { padding: 56px 0 80px; }
    .table-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .table-cell { padding: 14px 16px; font-size: 14px; }
    .faq-item summary { font-size: 16px; padding: 16px 18px; }
    .faq-answer { padding: 0 18px 16px; }
    .row-sub { display: none; }
    .hero-diagram { max-width: 480px; margin: 0 auto; }
    .env-card { padding: 20px 16px; }
    .env-card-name { font-size: 18px; }
  }
  @media (max-width: 1100px) and (min-width: 921px) {
    .hero { gap: 48px; }
    .hero-title { font-size: 60px; }
    .env-card { padding: 22px 18px; }
    .env-card-name { font-size: 18px; }
  }
