<style>
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: #111; background: #FAFAF8; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
  :root {
    --teal: #0D5B52; --teal-mid: #0F6B60; --teal-light: #E6F2F0;
    --gold: #C9922B; --gold-light: #FBF4E8;
    --ink: #111111; --mid: #444444; --muted: #7A7A7A;
    --border: #E2E2DC; --off-white: #FAFAF8; --white: #FFFFFF; --dark: #0A0A0A;
  }

  /* ─── ANNOTATION ─── */
  .annotation { background: #1A1A1A; color: #FFF; padding: 10px 48px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; }
  .annotation span { color: var(--gold); }

  /* ─── NAV ─── */
  .nav-sub { font-size: 11px; color: var(--muted); text-align: center; padding: 7px; background: var(--teal-light); letter-spacing: 0.5px; }
  nav { position: sticky; top: 0; z-index: 100; background: rgba(250,250,248,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 64px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--teal); }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a { font-size: 13.5px; font-weight: 500; color: var(--mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a.active { color: var(--teal); font-weight: 600; }
  .nav-cta { background: var(--teal); color: white !important; padding: 9px 22px; border-radius: 4px; font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── SHARED ─── */
  .section-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
  .section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }
  .section-label.on-dark { color: rgba(201,146,43,0.85); }
  .section-label.on-dark::before { opacity: 0.4; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.2vw, 44px); font-weight: 900; line-height: 1.08; letter-spacing: -0.5px; color: var(--ink); }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-title.on-dark { color: white; }
  .section-title.on-dark em { color: var(--gold); }

  /* ═══════════════════════════════════
     SECTION 1 — HERO
  ═══════════════════════════════════ */
  .hero { background: var(--dark); padding: 88px 64px 0; overflow: hidden; position: relative; min-height: 88vh; display: flex; align-items: center; }
  /* Animated gradient orb */
  .hero-orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(13,91,82,0.18) 0%, transparent 70%); top: -100px; right: -80px; pointer-events: none; }
  .hero-orb-2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(201,146,43,0.1) 0%, transparent 70%); bottom: 40px; left: 30%; pointer-events: none; }
  .hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: end; position: relative; }
  .hero-left { padding-bottom: 80px; }
  .hero-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
  .hero-breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; }
  .hero-breadcrumb .sep { color: rgba(255,255,255,0.15); }
  .hero-breadcrumb .current { color: var(--gold); }
  .hero-availability {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
  }
  .avail-pill {
    background: rgba(13,91,82,0.3); border: 1px solid rgba(13,91,82,0.4);
    border-radius: 4px; padding: 5px 12px;
    font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
    color: #4ECDC4;
  }
  .avail-pill.gold-pill { background: rgba(201,146,43,0.15); border-color: rgba(201,146,43,0.3); color: var(--gold); }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4.8vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -1px; color: white; margin-bottom: 28px; }
  .hero h1 em { font-style: italic; color: var(--gold); }
  .hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 520px; margin-bottom: 44px; font-weight: 300; }
  .hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 500; }
  .hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .btn-gold { background: var(--gold); color: white; padding: 14px 28px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: background 0.2s, transform 0.15s; }
  .btn-gold:hover { background: #b8831f; transform: translateY(-1px); }
  .btn-outline-white { border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.65); padding: 13px 24px; border-radius: 4px; font-size: 13px; font-weight: 500; text-decoration: none; transition: all 0.2s; }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: white; }

  /* HERO RIGHT — stat card */
  .hero-stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-bottom: none; border-radius: 12px 12px 0 0; padding: 32px 28px 0; }
  .hsc-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 24px; }
  .hsc-contrast { display: flex; flex-direction: column; gap: 3px; margin-bottom: 28px; }
  .hsc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
  .hsc-cell { padding: 16px 18px; border-radius: 5px; }
  .hsc-cell.most { background: rgba(220,80,80,0.08); border: 1px solid rgba(220,80,80,0.12); }
  .hsc-cell.grad { background: rgba(13,91,82,0.2); border: 1px solid rgba(13,91,82,0.25); }
  .hsc-cell-tag { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
  .hsc-cell.most .hsc-cell-tag { color: rgba(220,80,80,0.6); }
  .hsc-cell.grad .hsc-cell-tag { color: rgba(78,205,196,0.8); }
  .hsc-cell-text { font-size: 12.5px; line-height: 1.45; }
  .hsc-cell.most .hsc-cell-text { color: rgba(255,255,255,0.4); }
  .hsc-cell.grad .hsc-cell-text { color: rgba(255,255,255,0.85); font-weight: 500; }
  .hsc-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0 22px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.28); font-style: italic; }

  /* ═══════════════════════════════════
     SECTION 2 — THE PROBLEM
  ═══════════════════════════════════ */
  .problem-section { background: var(--teal); padding: 96px 64px; }
  .problem-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .problem-left .section-title { margin-bottom: 28px; }
  .problem-body { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; font-weight: 300; }
  .problem-body + .problem-body { margin-top: 16px; }
  .problem-body strong { color: rgba(255,255,255,0.95); font-weight: 500; }
  .problem-right { display: flex; flex-direction: column; gap: 4px; }
  .problem-stat-row { display: flex; gap: 4px; }
  .pstat { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 24px 20px; text-align: center; transition: background 0.2s; }
  .pstat:hover { background: rgba(255,255,255,0.09); }
  .pstat-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
  .pstat-num em { font-style: normal; color: var(--gold); font-size: 28px; }
  .pstat-label { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.45; }
  .problem-divider { height: 4px; }
  .problem-contrast { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 24px; }
  .pc-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
  .pc-items { display: flex; flex-direction: column; gap: 10px; }
  .pc-item { display: flex; align-items: flex-start; gap: 10px; }
  .pc-mark { font-size: 12px; flex-shrink: 0; margin-top: 2px; }
  .pc-text { font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.45; }
  .pc-text.dim { color: rgba(255,255,255,0.35); }

  /* ═══════════════════════════════════
     SECTION 3 — WHO THIS IS FOR
  ═══════════════════════════════════ */
  .for-section { background: var(--white); padding: 96px 64px; }
  .for-inner { max-width: 1280px; margin: 0 auto; }
  .for-header { margin-bottom: 48px; }
  .for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .for-card { border: 1.5px solid var(--border); border-radius: 10px; padding: 36px 32px; position: relative; background: var(--off-white); transition: border-color 0.2s, box-shadow 0.2s; }
  .for-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(13,91,82,0.07); }
  .for-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--teal); border-radius: 10px 10px 0 0; }
  .for-card.gold-top::before { background: var(--gold); }
  .for-type { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
  .for-card.gold-top .for-type { color: var(--gold); }
  .for-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
  .for-card p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
  .for-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .for-list li { font-size: 13.5px; color: var(--mid); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
  .for-list li::before { content: '→'; color: var(--teal); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
  .for-card.gold-top .for-list li::before { color: var(--gold); }

  /* ═══════════════════════════════════
     SECTION 4 — 6 COMPONENTS
  ═══════════════════════════════════ */
  .components-section { background: var(--off-white); padding: 96px 64px; }
  .components-inner { max-width: 1280px; margin: 0 auto; }
  .components-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 60px; align-items: end; }
  .components-header p { font-size: 16px; color: var(--mid); line-height: 1.7; font-weight: 300; }
  .components-header p strong { color: var(--ink); font-weight: 600; }
  .components-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .component-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
  .component-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
  .cc-top { padding: 28px 28px 22px; border-bottom: 1px solid var(--border); }
  .cc-step-num { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .cc-icon { font-size: 28px; margin-bottom: 12px; display: block; }
  .cc-top h4 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 6px; line-height: 1.2; }
  .cc-seo-tag { font-size: 11px; color: var(--muted); font-style: italic; margin-bottom: 12px; }
  .cc-bottom { padding: 22px 28px; background: #F9F9F7; }
  .mistake-row { display: flex; gap: 10px; margin-bottom: 14px; }
  .mistake-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0; width: 56px; padding-top: 1px; }
  .mistake-label.m { color: rgba(220,80,80,0.6); }
  .mistake-label.r { color: var(--teal); }
  .mistake-text { font-size: 13px; line-height: 1.5; }
  .mistake-row.mistake-item .mistake-text { color: var(--muted); }
  .mistake-row.reality-item .mistake-text { color: var(--mid); font-weight: 500; }
  .cc-divider { height: 1px; background: var(--border); margin: 14px 0; }
  .cc-outcome { font-size: 12.5px; color: var(--teal); font-weight: 600; display: flex; align-items: flex-start; gap: 6px; line-height: 1.45; }
  .cc-outcome::before { content: '→'; flex-shrink: 0; }

  /* ═══════════════════════════════════
     SECTION 5 — WHAT YOU ACTUALLY BUILD
  ═══════════════════════════════════ */
  .build-section { background: var(--ink); padding: 96px 64px; }
  .build-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .build-left .section-title { margin-bottom: 28px; }
  .build-left p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; font-weight: 300; }
  .build-left p + p { margin-top: 16px; }
  .build-left p strong { color: rgba(255,255,255,0.9); font-weight: 500; }
  .build-right { display: flex; flex-direction: column; gap: 16px; }
  .build-outcome-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; transition: background 0.2s; }
  .build-outcome-item:hover { background: rgba(255,255,255,0.07); }
  .boi-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
  .boi-body {}
  .boi-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: white; margin-bottom: 6px; }
  .boi-desc { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.55; }

  /* ═══════════════════════════════════
     SECTION 6 — INTENT PATH CONNECTION
  ═══════════════════════════════════ */
  .path-section { background: var(--off-white); padding: 80px 64px; }
  .path-inner { max-width: 1280px; margin: 0 auto; }
  .path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
  .path-card { border-radius: 12px; padding: 40px 36px; position: relative; }
  .path-card.standalone { background: var(--white); border: 1.5px solid var(--border); }
  .path-card.included { background: var(--teal); border: 1.5px solid var(--teal); }
  .path-card-tag { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
  .path-card.standalone .path-card-tag { color: var(--gold); }
  .path-card.included .path-card-tag { color: rgba(255,255,255,0.5); }
  .path-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
  .path-card.standalone h3 { color: var(--ink); }
  .path-card.included h3 { color: white; }
  .path-card p { font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; }
  .path-card.standalone p { color: var(--mid); }
  .path-card.included p { color: rgba(255,255,255,0.7); }
  .path-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
  .path-list li { font-size: 13.5px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
  .path-card.standalone .path-list li { color: var(--mid); }
  .path-card.included .path-list li { color: rgba(255,255,255,0.75); }
  .path-li-mark { flex-shrink: 0; margin-top: 1px; }
  .path-card.standalone .path-li-mark { color: var(--teal); }
  .path-card.included .path-li-mark { color: var(--gold); }
  .path-cta { display: block; text-align: center; padding: 14px 24px; border-radius: 5px; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; text-decoration: none; transition: all 0.2s; }
  .path-cta.outline { border: 1.5px solid var(--border); color: var(--teal); }
  .path-cta.outline:hover { border-color: var(--teal); background: var(--teal-light); }
  .path-cta.solid { background: var(--gold); color: white; border: none; }
  .path-cta.solid:hover { background: #b8831f; }

  /* ═══════════════════════════════════
     SECTION 7 — MENTOR CREDIBILITY
  ═══════════════════════════════════ */
  .mentor-section { background: var(--white); padding: 80px 64px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .mentor-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .mentor-left .section-title { margin-bottom: 24px; }
  .mentor-left p { font-size: 16px; color: var(--mid); line-height: 1.7; }
  .mentor-left p + p { margin-top: 14px; }
  .mentor-left p strong { color: var(--ink); font-weight: 600; }
  .mentor-right { display: flex; flex-direction: column; gap: 20px; }
  .mentor-credential { display: flex; gap: 20px; align-items: flex-start; padding: 24px; border: 1px solid var(--border); border-radius: 10px; background: var(--off-white); transition: box-shadow 0.2s; }
  .mentor-credential:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
  .mc-initial { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; flex-shrink: 0; }
  .mc-body {}
  .mc-name { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .mc-schools { font-size: 12.5px; color: var(--teal); font-weight: 500; margin-bottom: 6px; }
  .mc-exp { font-size: 13px; color: var(--mid); line-height: 1.5; }

  /* ═══════════════════════════════════
     SECTION 8 — FAQ
  ═══════════════════════════════════ */
  .faq-section { background: var(--off-white); padding: 96px 64px; }
  .faq-inner { max-width: 1280px; margin: 0 auto; }
  .faq-header { margin-bottom: 52px; }
  .faq-header p { font-size: 16px; color: var(--mid); line-height: 1.65; max-width: 480px; margin-top: 14px; }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px; transition: box-shadow 0.2s; }
  .faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
  .faq-q { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.35; display: flex; align-items: flex-start; gap: 12px; }
  .faq-q-mark { width: 24px; height: 24px; border-radius: 50%; background: var(--teal-light); border: 1px solid rgba(13,91,82,0.15); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--teal); font-family: 'DM Mono', monospace; flex-shrink: 0; margin-top: 1px; }
  .faq-a { font-size: 14px; color: var(--mid); line-height: 1.7; padding-left: 36px; }
  .faq-a strong { color: var(--ink); }

  /* ═══════════════════════════════════
     SECTION 9 — CTA
  ═══════════════════════════════════ */
  .cta-section { background: var(--ink); padding: 96px 64px; }
  .cta-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
  .cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
  .cta-inner h2 em { font-style: italic; color: var(--gold); }
  .cta-inner p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 300; max-width: 480px; }
  .cta-buttons { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }
  .btn-cta-primary { background: var(--gold); color: white; padding: 16px 32px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; text-align: center; transition: background 0.2s, transform 0.15s; }
  .btn-cta-primary:hover { background: #b8831f; transform: translateY(-1px); }
  .btn-cta-secondary { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65); padding: 14px 32px; border-radius: 4px; font-size: 13px; font-weight: 500; text-decoration: none; text-align: center; transition: all 0.2s; }
  .btn-cta-secondary:hover { border-color: rgba(255,255,255,0.4); color: white; }
  .cta-note { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; }
  .cta-sub-nudge { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 16px 20px; }
  .cta-sub-nudge-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
  .cta-sub-nudge p { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.5; }
  .cta-sub-nudge a { color: var(--gold); text-decoration: none; font-weight: 500; }

  /* FOOTER */
  footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 64px; display: flex; align-items: center; justify-content: space-between; }
  .footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; color: white; font-weight: 700; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); text-align: right; }

  /* SEO ANNOTATION */
  .seo-annotation { background: #F0F7F6; border-top: 2px solid #B8D9D5; padding: 36px 64px; }
  .seo-annotation-inner { max-width: 1280px; margin: 0 auto; }
  .seo-title { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
  .seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .seo-col-label { font-size: 11px; font-weight: 600; color: #444; margin-bottom: 10px; font-family: 'DM Mono', monospace; }
  .seo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .seo-tag { font-size: 10.5px; padding: 3px 9px; border-radius: 3px; font-family: 'DM Mono', monospace; }
  .t1 { background: rgba(13,91,82,0.1); color: #0D5B52; }
  .t2 { background: rgba(201,146,43,0.1); color: #9A6F1A; }
  .t3 { background: rgba(120,120,120,0.1); color: #666; }
</style>
