/* ─── RESET & BASE ─── */
  *, *::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;
  }

  /* ─── TOKENS ─── */
  :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;
  }

  /* ─── ANNOTATION BANNER (design doc only) ─── */
  .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 {
    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);
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--teal); }
  .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;
  }
  .nav-cta:hover { background: var(--teal-mid) !important; color: white !important; }
  .nav-links a.active { color: var(--teal); font-weight: 600; }
  .nav-sub { font-size: 11px; color: var(--muted); text-align: center; padding: 7px; background: var(--teal-light); letter-spacing: 0.5px; }

  /* ─── HERO ─── */
  .hero {
    background: var(--teal);
    padding: 100px 64px 80px;
    position: relative;
    overflow: hidden;
    min-height: 86vh;
    display: flex;
    align-items: center;
  }
  .hero-bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .hero-bg-ring:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
  .hero-bg-ring:nth-child(2) { width: 400px; height: 400px; top: -100px; right: 0px; border-color: rgba(201,146,43,0.12); }
  .hero-bg-ring:nth-child(3) { width: 200px; height: 200px; bottom: 40px; left: 40%; border-color: rgba(255,255,255,0.04); }
  .hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.04;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -1px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 44px;
    font-weight: 300;
  }
  .hero-sub strong { color: rgba(255,255,255,0.95); font-weight: 500; }
  .hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    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-primary:hover { background: #b8831f; transform: translateY(-1px); }
  .btn-ghost {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: white; }
  .btn-ghost::after { content: '→'; font-size: 14px; }

  /* HERO CARD */
  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 32px;
    backdrop-filter: blur(4px);
  }
  .hero-card-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .audience-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .audience-chip {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .audience-chip:hover, .audience-chip.active {
    background: rgba(201,146,43,0.2);
    border-color: rgba(201,146,43,0.4);
  }
  .chip-icon { font-size: 20px; }
  .chip-label { color: white; font-size: 13.5px; font-weight: 500; }
  .chip-sub { color: rgba(255,255,255,0.55); font-size: 11.5px; margin-top: 1px; }
  .hero-card-note {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--ink);
    padding: 18px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
  }
  .trust-item strong { color: white; font-size: 15px; }
  .trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); }

  /* ─── SECTION WRAPPER ─── */
  .section {
    padding: 96px 64px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .section-full {
    padding: 96px 64px;
  }
  .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-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.5px;
  }
  .section-title em { font-style: italic; color: var(--teal); }

  /* ─── AUDIENCE SECTION ─── */
  .audience-section { background: var(--white); }
  .audience-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .audience-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .audience-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 32px rgba(13,91,82,0.08);
  }
  .audience-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--teal);
  }
  .audience-card.gold::before { background: var(--gold); }
  .card-type {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .audience-card.gold .card-type { color: var(--gold); }
  .card-icon { font-size: 28px; margin-bottom: 16px; display: block; }
  .audience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .audience-card p {
    font-size: 14.5px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }
  .audience-list li {
    font-size: 13.5px;
    color: var(--mid);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .audience-list li::before {
    content: '→';
    color: var(--teal);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .audience-card.gold .audience-list li::before { color: var(--gold); }
  .card-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .audience-card.gold .card-cta { color: var(--gold); }
  .card-cta:hover { text-decoration: underline; }

  /* ─── PROBLEM SECTION ─── */
  .problem-section {
    background: #0A0A0A;
  }
  .problem-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .problem-left .section-title { color: white; }
  .problem-left .section-title em { color: var(--gold); font-style: italic; }
  .problem-statement {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 28px;
    font-weight: 300;
  }
  .problem-statement strong { color: rgba(255,255,255,0.9); font-weight: 500; }
  .problem-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .problem-item {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
  }
  .problem-item:hover { background: rgba(255,255,255,0.03); }
  .pi-wrong {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .pi-x {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(220,80,80,0.15);
    border: 1px solid rgba(220,80,80,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 10px;
    color: #dc5050;
  }
  .pi-right {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .pi-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(13,91,82,0.3);
    border: 1px solid rgba(13,91,82,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 10px;
    color: #4ECDC4;
  }
  .pi-text-wrong { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.4; }
  .pi-text-right { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.4; }

  /* ─── DIFFERENCE SECTION ─── */
  .diff-section { background: var(--off-white); }
  .diff-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 64px;
  }
  .diff-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
    align-items: end;
  }
  .diff-header p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.7;
    padding-bottom: 4px;
  }
  .diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .diff-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    position: relative;
  }
  .diff-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--teal);
    opacity: 0.08;
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
  }
  .diff-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    margin-top: 8px;
    line-height: 1.3;
  }
  .diff-card p {
    font-size: 13.5px;
    color: var(--mid);
    line-height: 1.6;
  }
  .diff-icon { font-size: 24px; margin-bottom: 8px; display: block; }

  /* ─── SYSTEM SECTION ─── */
  .system-section { background: var(--teal); }
  .system-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 64px;
  }
  .system-inner .section-title { color: white; }
  .system-inner .section-title em { color: var(--gold); }
  .system-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    margin-bottom: 56px;
    max-width: 500px;
    font-weight: 300;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    z-index: 0;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
    position: relative;
  }
  .step-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: background 0.2s;
  }
  .step:hover .step-circle { background: rgba(201,146,43,0.25); border-color: var(--gold); }
  .step-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
  }
  .step p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  /* ─── OFFERINGS ─── */
  .offerings-section { background: var(--white); }
  .offerings-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 64px;
  }
  .offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 52px;
  }
  .offering-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    position: relative;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .offering-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 32px rgba(13,91,82,0.08);
  }
  .offering-card.featured {
    background: var(--teal);
    border-color: var(--teal);
  }
  .offering-badge {
    position: absolute;
    top: -12px; left: 24px;
    background: var(--gold);
    color: white;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 500;
  }
  .offering-icon { font-size: 28px; margin-bottom: 16px; }
  .offering-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    line-height: 1.2;
  }
  .offering-card.featured h3 { color: white; }
  .offering-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
  }
  .offering-card.featured .offering-tagline { color: rgba(255,255,255,0.7); }
  .offering-desc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 24px;
    flex: 1;
  }
  .offering-card.featured .offering-desc { color: rgba(255,255,255,0.7); }
  .offering-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
  }
  .offering-meta-item {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .offering-card.featured .offering-meta-item { color: rgba(255,255,255,0.5); }
  .offering-meta-item::before { content: '·'; }
  .btn-offering {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-offering-outline {
    border: 1.5px solid var(--border);
    color: var(--teal);
    background: transparent;
  }
  .btn-offering-outline:hover { border-color: var(--teal); background: var(--teal-light); }
  .btn-offering-solid {
    background: var(--gold);
    color: white;
    border: none;
  }
  .btn-offering-solid:hover { background: #b8831f; }
  .btn-offering-white {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
  }
  .btn-offering-white:hover { background: rgba(255,255,255,0.2); }

  /* ─── PARENT SECTION ─── */
  .parent-section { background: var(--gold-light); border-top: 1px solid #EDD89A; border-bottom: 1px solid #EDD89A; }
  .parent-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .parent-inner .section-title { color: var(--ink); }
  .parent-inner .section-title em { font-style: italic; color: var(--gold); }
  .parent-body { font-size: 16px; color: var(--mid); line-height: 1.7; margin-top: 20px; }
  .parent-body p + p { margin-top: 14px; }
  .parent-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .parent-stat {
    background: white;
    border: 1px solid #EDD89A;
    border-radius: 8px;
    padding: 24px;
  }
  .parent-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
  }
  .parent-stat-label {
    font-size: 12.5px;
    color: var(--mid);
    line-height: 1.4;
  }

  /* ─── FINAL CTA ─── */
  .cta-section { background: var(--ink); }
  .cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 64px;
    text-align: center;
  }
  .cta-inner .section-label { justify-content: center; }
  .cta-inner .section-label::before { display: none; }
  .cta-inner .section-title { color: white; margin-bottom: 20px; }
  .cta-inner .section-title em { color: var(--gold); }
  .cta-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 52px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.65;
  }
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-cta-primary {
    background: var(--gold);
    color: white;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-cta-primary:hover { background: #b8831f; transform: translateY(-2px); }
  .btn-cta-outline {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.75);
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-cta-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }
  .cta-footnote {
    margin-top: 28px;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
  }

  /* ─── 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 PANEL ─── */
  .seo-panel {
    background: #F0F7F6;
    border: 1px solid #B8D9D5;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 0 64px 48px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .seo-panel-title {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
  }
  .seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .seo-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 3px;
    font-family: 'DM Mono', monospace;
  }
  .seo-tag.t1 { background: rgba(13,91,82,0.12); color: var(--teal); }
  .seo-tag.t2 { background: rgba(201,146,43,0.12); color: #9A6F1A; }
  .seo-tag.t3 { background: rgba(120,120,120,0.1); color: #666; }

/* ─── RESPONSIVE ADJUSTMENTS ─── */
img, video, svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  nav {
    padding: 0 32px;
  }

  .hero,
  .trust-bar,
  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  footer,
  .seo-panel {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr 320px;
    gap: 48px;
  }

  .trust-bar {
    gap: 32px;
    flex-wrap: wrap;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .steps::before {
    display: none;
  }

  .step {
    align-items: flex-start;
    text-align: left;
  }

  .parent-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  nav {
    height: auto;
    padding: 16px 24px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 12px 16px;
    flex-wrap: wrap;
  }

  .nav-cta {
    padding: 8px 16px;
  }

  .hero {
    padding: 72px 24px 56px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card {
    max-width: 520px;
  }

  .trust-bar {
    padding: 16px 24px;
    gap: 16px 24px;
  }

  .trust-divider {
    display: none;
  }

  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  .seo-panel,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .audience-grid,
  .problem-inner,
  .diff-header,
  .system-inner,
  .parent-inner,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  .seo-panel {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section,
  .section-full {
    padding-left: 24px;
    padding-right: 24px;
  }

  .diff-header,
  .system-inner,
  .parent-inner,
  .cta-inner {
    gap: 32px;
  }

  .diff-grid,
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .steps::before {
    display: none;
  }

  .step {
    align-items: flex-start;
    text-align: left;
  }

  .parent-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    text-align: left;
  }

  .cta-inner .section-label {
    justify-content: flex-start;
  }

  .cta-buttons {
    justify-content: flex-start;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .nav-sub {
    padding: 8px 16px;
    line-height: 1.4;
  }

  nav {
    padding: 14px 20px;
    gap: 10px;
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-links {
    gap: 10px 14px;
  }

  .nav-links a {
    font-size: 12.5px;
  }

  .hero {
    padding: 60px 20px 48px;
  }

  .hero-bg-ring:nth-child(1) {
    width: 360px;
    height: 360px;
    top: -120px;
    right: -160px;
  }

  .hero-bg-ring:nth-child(2) {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -90px;
  }

  .hero-bg-ring:nth-child(3) {
    width: 140px;
    height: 140px;
    left: auto;
    right: 10%;
    bottom: 20px;
  }

  .hero-eyebrow {
    margin-bottom: 20px;
    gap: 10px;
    letter-spacing: 2px;
  }

  .hero-eyebrow::before {
    width: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    margin-bottom: 22px;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-card {
    padding: 22px;
  }

  .chip-label {
    font-size: 13px;
  }

  .trust-bar {
    padding: 14px 20px;
    gap: 12px;
    justify-content: flex-start;
  }

  .trust-item {
    width: 100%;
    justify-content: flex-start;
    font-size: 12.5px;
  }

  .trust-item strong {
    font-size: 13px;
  }

  .section,
  .section-full,
  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  .seo-panel {
    padding-left: 20px;
    padding-right: 20px;
  }

  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  .seo-panel {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .audience-card,
  .offering-card,
  .diff-card,
  .parent-stat,
  .faq-item {
    padding: 24px 20px;
  }

  .audience-grid,
  .for-grid,
  .diff-grid,
  .offerings-grid,
  .parent-inner,
  .cta-inner,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .problem-statement {
    font-size: 16px;
  }

  .problem-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 18px;
  }

  .diff-header,
  .components-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }

  .system-sub,
  .components-header p,
  .diff-header p {
    font-size: 15px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step {
    padding: 0;
  }

  .step h4 {
    font-size: 13px;
  }

  .step p {
    font-size: 11.5px;
  }

  .offerings-grid {
    gap: 18px;
  }

  .parent-stats {
    grid-template-columns: 1fr;
  }

  .parent-inner {
    gap: 28px;
  }

  .cta-inner {
    gap: 28px;
  }

  .cta-inner p,
  .cta-sub {
    font-size: 15px;
  }

  .cta-buttons {
    min-width: 0;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-outline {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .seo-panel {
    margin-left: 20px;
    margin-right: 20px;
  }

  footer {
    padding: 28px 20px;
  }

  .footer-links {
    gap: 12px 16px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 12px 16px;
  }

  .hero {
    padding: 52px 16px 40px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-card,
  .audience-card,
  .offering-card,
  .diff-card,
  .faq-item {
    border-radius: 10px;
  }

  .hero-card-label,
  .section-label,
  .card-type,
  .offering-tagline,
  .session-when,
  .pricing-card-label,
  .seo-panel-title {
    letter-spacing: 2px;
  }

  .trust-bar {
    padding: 12px 16px;
  }

  .section,
  .section-full,
  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  .seo-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .audience-grid,
  .problem-inner,
  .diff-inner,
  .system-inner,
  .offerings-inner,
  .parent-inner,
  .cta-inner,
  .seo-panel {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(32px, 12vw, 42px);
  }

  .section-title {
    font-size: clamp(26px, 9vw, 34px);
  }

  .hero-sub,
  .problem-statement,
  .parent-body,
  .cta-sub,
  .offering-desc,
  .audience-card p,
  .card-cta,
  .pi-text-right,
  .pi-text-wrong {
    line-height: 1.6;
  }

  .hero-ctas {
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-cta-primary,
  .btn-cta-outline,
  .btn-offering {
    font-size: 12px;
  }

  .audience-card h3,
  .offering-card h3 {
    font-size: 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

#offerings {
  scroll-margin-top: 80px;
}