
    :root {
      --ink: #102033;
      --muted: #64748b;
      --line: #dbeafe;
      --blue: #0ea5e9;
      --deep: #075985;
      --soft: #eff6ff;
      --ice: #f8fbff;
      --cyan: #67e8f9;
      --white: #ffffff;
      --green: #10b981;
      --orange: #f59e0b;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(14,165,233,0.16), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f3f9ff 42%, #ffffff 100%);
      line-height: 1.7;
    }

    a {
      color: var(--deep);
      font-weight: 700;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .emma-article {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 34px 0 70px;
    }

    .seo-note {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 22px;
      margin-bottom: 34px;
      align-items: stretch;
    }

    .seo-note-main {
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(14,165,233,0.18);
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .seo-badge {
      display: inline-flex;
      gap: 9px;
      align-items: center;
      padding: 8px 14px;
      border-radius: 999px;
      background: #e0f2fe;
      color: var(--deep);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .02em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .seo-note h1 {
      font-size: clamp(34px, 5vw, 68px);
      line-height: .98;
      margin: 0 0 20px;
      letter-spacing: -0.055em;
    }

    .seo-note p {
      font-size: 18px;
      color: #334155;
      margin: 0;
    }

    .answer-card {
      background: linear-gradient(145deg, #082f49, #0369a1);
      color: white;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .answer-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: rgba(103,232,249,0.22);
      right: -70px;
      bottom: -70px;
    }

    .answer-card span {
      display: block;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .08em;
      opacity: .82;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .answer-card strong {
      display: block;
      font-size: 28px;
      line-height: 1.15;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .answer-card p {
      color: #e0f2fe;
      font-size: 16px;
      position: relative;
      z-index: 2;
    }

    .split-visual {
      margin: 36px 0;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: center;
    }

    .image-frame {
      background: white;
      padding: 12px;
      border-radius: 30px;
      border: 1px solid rgba(14,165,233,0.16);
      box-shadow: var(--shadow);
    }

    .image-frame img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 22px;
      background: #eaf6ff;
    }

    .visual-copy {
      background: var(--white);
      border-radius: 30px;
      padding: 30px;
      border: 1px solid rgba(14,165,233,0.16);
    }

    .visual-copy h2 {
      margin: 0 0 14px;
      font-size: clamp(26px, 3vw, 42px);
      line-height: 1.05;
      letter-spacing: -0.04em;
    }

    .visual-copy p {
      color: #475569;
      margin: 0;
    }

    .toc-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 30px 0 44px;
    }

    .toc-strip a {
      background: #ffffff;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 10px 16px;
      color: #0f172a;
      font-size: 14px;
      box-shadow: 0 8px 24px rgba(15,23,42,0.04);
    }

    .section {
      margin: 54px 0;
    }

    .section-label {
      color: var(--blue);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .section h2 {
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.05;
      margin: 0 0 18px;
      letter-spacing: -0.045em;
    }

    .section p {
      color: #475569;
      font-size: 17px;
    }

    .definition-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      margin-top: 24px;
    }

    .definition-card {
      background: white;
      border: 1px solid rgba(14,165,233,0.18);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 18px 45px rgba(15,23,42,0.06);
      position: relative;
      overflow: hidden;
    }

    .definition-card::before {
      content: "";
      display: block;
      width: 48px;
      height: 5px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      border-radius: 999px;
      margin-bottom: 18px;
    }

    .definition-card h3 {
      margin: 0 0 10px;
      font-size: 24px;
      letter-spacing: -0.03em;
    }

    .definition-card p {
      margin: 0;
      color: #475569;
    }

    .matrix {
      margin-top: 26px;
      border-radius: 30px;
      overflow: hidden;
      background: white;
      border: 1px solid rgba(14,165,233,0.18);
      box-shadow: var(--shadow);
    }

    .matrix-row {
      display: grid;
      grid-template-columns: 0.8fr 1.1fr 1.1fr;
      border-bottom: 1px solid #e2e8f0;
    }

    .matrix-row:last-child {
      border-bottom: none;
    }

    .matrix-head {
      background: linear-gradient(90deg, #075985, #0284c7);
      color: white;
      font-weight: 900;
    }

    .matrix-cell {
      padding: 18px;
      font-size: 15px;
    }

    .matrix-cell:first-child {
      font-weight: 900;
      color: #0f172a;
      background: #f8fbff;
    }

    .matrix-head .matrix-cell:first-child {
      color: white;
      background: transparent;
    }

    .pathway {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 26px;
    }

    .pathway-item {
      background: white;
      border-radius: 26px;
      padding: 24px;
      border: 1px solid rgba(14,165,233,0.18);
      box-shadow: 0 14px 35px rgba(15,23,42,0.05);
    }

    .pathway-num {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #e0f2fe;
      color: var(--deep);
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .pathway-item h3 {
      font-size: 19px;
      margin: 0 0 8px;
      letter-spacing: -0.02em;
    }

    .pathway-item p {
      font-size: 15px;
      margin: 0;
    }

    .clinic-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 28px;
    }

    .clinic-box {
      border-radius: 30px;
      padding: 28px;
      background: #ffffff;
      border: 1px solid rgba(14,165,233,0.18);
    }

    .clinic-box.dark {
      background: #0f172a;
      color: white;
      border-color: transparent;
    }

    .clinic-box.dark p,
    .clinic-box.dark li {
      color: #cbd5e1;
    }

    .clinic-box h3 {
      font-size: 25px;
      line-height: 1.15;
      margin: 0 0 14px;
      letter-spacing: -0.03em;
    }

    .clinic-box ul {
      margin: 14px 0 0;
      padding-left: 20px;
      color: #475569;
    }

    .clinic-box li {
      margin-bottom: 8px;
    }

    .decision-band {
      background:
        linear-gradient(135deg, rgba(14,165,233,0.12), rgba(255,255,255,0.94)),
        #ffffff;
      border: 1px solid rgba(14,165,233,0.18);
      border-radius: 34px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .decision-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .decision-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid #dbeafe;
      border-radius: 26px;
      padding: 22px;
    }

    .decision-card strong {
      display: block;
      font-size: 18px;
      margin-bottom: 8px;
    }

    .decision-card p {
      font-size: 15px;
      margin: 0;
    }

    .cta-section {
      margin-top: 60px;
      background: linear-gradient(135deg, #075985, #0ea5e9);
      color: white;
      border-radius: 38px;
      padding: 44px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -100px;
      top: -100px;
      background: rgba(255,255,255,0.14);
      border-radius: 999px;
    }

    .cta-section h2 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 50px);
      line-height: 1;
      letter-spacing: -0.045em;
    }

    .cta-section p {
      color: #e0f2fe;
      margin: 0 0 22px;
      font-size: 17px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: white;
      color: #075985;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 900;
      box-shadow: 0 12px 30px rgba(15,23,42,0.16);
    }

    .cta-mini {
      background: rgba(255,255,255,0.13);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 28px;
      padding: 24px;
      position: relative;
      z-index: 2;
    }

    .cta-mini ul {
      margin: 0;
      padding-left: 18px;
      color: #f0f9ff;
    }

    .faq {
      display: grid;
      gap: 14px;
      margin-top: 26px;
    }

    details {
      background: white;
      border: 1px solid rgba(14,165,233,0.18);
      border-radius: 22px;
      padding: 18px 20px;
      box-shadow: 0 10px 26px rgba(15,23,42,0.04);
    }

    summary {
      cursor: pointer;
      font-weight: 900;
      color: #0f172a;
    }

    details p {
      margin-bottom: 0;
      color: #475569;
    }

    .disclaimer {
      font-size: 13px;
      color: #64748b;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 16px;
      margin-top: 36px;
    }

    @media (max-width: 900px) {
      .seo-note,
      .split-visual,
      .definition-grid,
      .clinic-panel,
      .cta-section {
        grid-template-columns: 1fr;
      }

      .pathway,
      .decision-grid {
        grid-template-columns: 1fr 1fr;
      }

      .matrix-row {
        grid-template-columns: 1fr;
      }

      .matrix-head {
        display: none;
      }

      .matrix-cell:first-child {
        background: #e0f2fe;
      }
    }

    @media (max-width: 620px) {
      .emma-article {
        width: min(100% - 22px, 1180px);
        padding-top: 18px;
      }

      .seo-note-main,
      .answer-card,
      .visual-copy,
      .decision-band,
      .cta-section {
        padding: 24px;
        border-radius: 24px;
      }

      .pathway,
      .decision-grid {
        grid-template-columns: 1fr;
      }

      .toc-strip a {
        width: 100%;
      }
    }
  