  :root {
    --navy: #0F2B46;
    --navy-light: #1A3D5C;
    --navy-dark: #091E33;
    --teal: #0EA5A0;
    --teal-light: #14C4BE;
    --teal-subtle: #E8F7F6;
    --teal-glow: rgba(14, 165, 160, 0.15);
    --gold: #C9A84C;
    --gold-light: #E8D9A0;
    --bg: #FAFAF8;
    --bg-warm: #F5F3EF;
    --bg-cool: #F0F4F7;
    --text: #1A2A3A;
    --text-muted: #5A6B7A;
    --text-light: #8A9AAA;
    --border: #E2DED6;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* === NAV === */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
  }

  .logo span { color: var(--teal); }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a.active { color: var(--navy); font-weight: 600; }

  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.2s;
  }

  .nav-cta:hover { background: var(--navy-light); transform: translateY(-1px); }

  /* === HERO === */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--teal);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5.2vw, 60px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--teal);
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 44px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  .btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }

  .btn-primary:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(14, 165, 160, 0.25);
  }

  .btn-secondary {
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
  }

  .btn-secondary:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
  }

  /* === SECTION HELPERS === */
  .section-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section-divider hr {
    border: none;
    height: 1px;
    background: var(--border);
  }

  .section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--teal);
  }

  /* === PILLARS (now 5 with 2-row layout) === */
  .pillars {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .pillars-header {
    max-width: 620px;
    margin-bottom: 56px;
  }

  .pillars-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .pillars-header p {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .pillar-card {
    background: var(--white);
    padding: 44px 32px;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
  }

  .pillar-card:hover { background: var(--bg-warm); }

  .pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .pillar-card:hover::before { transform: scaleX(1); }

  .pillar-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .pillar-icon-wrap.i1 { background: linear-gradient(135deg, #E6F0FF, #D4E5FF); }
  .pillar-icon-wrap.i2 { background: linear-gradient(135deg, #FFE6E6, #FFD4D4); }
  .pillar-icon-wrap.i3 { background: linear-gradient(135deg, #E6FFE8, #D4FFD8); }
  .pillar-icon-wrap.i4 { background: linear-gradient(135deg, #F0E6FF, #E4D4FF); }
  .pillar-icon-wrap.i5 { background: linear-gradient(135deg, #FFF3E0, #FFE8CC); }

  .pillar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .pillar-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
  }

  .pillar-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid var(--teal-subtle);
    padding: 5px 12px;
    border-radius: 4px;
  }

  /* Bottom row: 2 cards spanning 3 columns */
  .pillars-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  /* === NEWSLETTER === */
  .newsletter-wrap {
    padding: 0 40px 100px;
  }

  .newsletter-section {
    max-width: 1120px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 16px;
    padding: 72px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Subtle grid pattern */
  .newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  .newsletter-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(14, 165, 160, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }

  .newsletter-content { position: relative; z-index: 1; }

  .newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .newsletter-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
  }

  .newsletter-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }

  .newsletter-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .newsletter-features li::before {
    content: '→';
    color: var(--teal-light);
    font-weight: 600;
    font-size: 12px;
  }

  .newsletter-form {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 36px;
  }

  .newsletter-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 6px;
  }

  .newsletter-form .subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
  }

  .form-group input, .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input::placeholder { color: rgba(255, 255, 255, 0.25); }
  .form-group input:focus, .form-group select:focus { border-color: var(--teal); }
  .form-group select option { background: var(--navy); }

  .newsletter-form .btn-primary {
    width: 100%;
    margin-top: 6px;
    text-align: center;
    display: block;
  }

  .form-privacy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 14px;
    text-align: center;
  }

  /* === RISK PREVIEW === */
  .risk-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .risk-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .risk-header-text { max-width: 500px; }

  .risk-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .risk-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .risk-browse-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
    white-space: nowrap;
    border: 1px solid var(--teal-subtle);
    padding: 10px 20px;
    border-radius: 6px;
  }

  .risk-browse-link:hover { gap: 14px; background: var(--teal-subtle); }

  .risk-table {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .risk-table-header {
    display: grid;
    grid-template-columns: 2.2fr 1fr 0.8fr 1fr;
    padding: 14px 28px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .risk-row {
    display: grid;
    grid-template-columns: 2.2fr 1fr 0.8fr 1fr;
    padding: 18px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.2s;
    cursor: default;
  }

  .risk-row:last-child { border-bottom: none; }
  .risk-row:hover { background: var(--teal-subtle); }

  .risk-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
  }

  .risk-tag {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
  }

  .risk-tag.gen-ai { background: #F0E6FF; color: #6B3FA0; }
  .risk-tag.classical { background: #E6F0FF; color: #2B5EA7; }
  .risk-tag.agentic { background: #FFE6E6; color: #A73B3B; }

  .risk-severity { font-size: 12px; font-weight: 600; }
  .risk-severity.high { color: #C44; }
  .risk-severity.medium { color: var(--gold); }
  .risk-severity.low { color: var(--teal); }

  .risk-category { font-size: 12px; color: var(--text-muted); }

  /* === LIFECYCLE === */
  .lifecycle {
    background: var(--navy);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }

  .lifecycle::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
  }

  .lifecycle-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .lifecycle-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }

  .lifecycle-header .section-eyebrow {
    justify-content: center;
    color: var(--teal-light);
  }

  .lifecycle-header .section-eyebrow::before { background: var(--teal-light); }

  .lifecycle-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
  }

  .lifecycle-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
  }

  .lifecycle-track {
    display: flex;
    gap: 12px;
  }

  .lc-step {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
  }

  .lc-step:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(14, 165, 160, 0.3);
    transform: translateY(-4px);
  }

  .lc-step-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  .lc-step-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }

  .lc-step h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .lc-step p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }

  .lc-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.15);
    font-size: 16px;
    z-index: 2;
  }

  /* === AUDIENCES === */
  .audiences {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .audiences-header {
    max-width: 560px;
    margin-bottom: 48px;
  }

  .audiences-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
  }

  .audiences-header p {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
  }

  .audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .audience-card {
    background: var(--white);
    padding: 44px 32px;
    transition: background 0.3s;
  }

  .audience-card:hover { background: var(--bg-warm); }

  .audience-altitude {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-subtle);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
  }

  .audience-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .audience-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* === REGULATORY PREVIEW === */
  .regulatory-preview {
    background: var(--bg-cool);
    padding: 100px 40px;
  }

  .regulatory-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .regulatory-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }

  .regulatory-header-text { max-width: 560px; }

  .regulatory-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .regulatory-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .reg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .reg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    transition: all 0.3s;
    cursor: default;
  }

  .reg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 43, 70, 0.06);
    border-color: var(--teal);
  }

  .reg-flag {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }

  .reg-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .reg-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .reg-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
  }

  .reg-status.active { background: #E6F9E8; color: #2B7A3A; }
  .reg-status.partial { background: #FFF3E0; color: #B8760A; }
  .reg-status.draft { background: #E6F0FF; color: #2B5EA7; }

  .reg-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  .reg-status.active::before { background: #2B7A3A; }
  .reg-status.partial::before { background: #B8760A; }
  .reg-status.draft::before { background: #2B5EA7; }

  /* Cross-jurisdiction CTA */
  .reg-cta {
    margin-top: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .reg-cta-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .reg-cta-text p {
    font-size: 13px;
    color: var(--text-muted);
  }

  .reg-cta-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: gap 0.2s;
  }

  .reg-cta-link:hover { gap: 14px; }

  /* === FOOTER === */
  footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo { font-size: 20px; }

  .footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 14px;
    max-width: 260px;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 18px;
  }

  .footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--teal); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 12px;
    color: var(--text-light);
  }

  /* === ANIMATIONS === */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* === RESPONSIVE === */
  @media (max-width: 1024px) {
  }

  @media (max-width: 900px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .pillars-grid-bottom { grid-template-columns: 1fr; }
    .newsletter-section { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
    .newsletter-features { grid-template-columns: 1fr; }
    .risk-table-header, .risk-row { grid-template-columns: 2fr 1fr 1fr; }
    .risk-category { display: none; }
    .lifecycle-track { flex-wrap: wrap; gap: 12px; }
    .lc-step { flex: 0 0 calc(33.33% - 8px); }
    .lc-step::after { display: none; }
    .audience-cards { grid-template-columns: 1fr; }
    .reg-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .risk-header, .regulatory-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .reg-cta { flex-direction: column; gap: 16px; text-align: center; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .hero { padding: 120px 24px 60px; }
    .hero h1 { font-size: 34px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .pillars { padding: 60px 24px; }
    .newsletter-wrap { padding: 0 16px 60px; }
    .newsletter-section { padding: 36px 24px; border-radius: 12px; }
    .risk-preview { padding: 60px 24px; }
    .lifecycle { padding: 60px 24px; }
    .lc-step { flex: 0 0 calc(50% - 6px); }
    .audiences { padding: 60px 24px; }
    .regulatory-preview { padding: 60px 24px; }
    .reg-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
  }
