  :root {
    --ink:          #0A0A0A;
    --paper:        #FFFFFF;
    --surface:      #F4F4F4;
    --accent:       #FF7A59;
    --accent-light: #FFF1EE;
    --accent-dark:  #E8603A;
    --navy:         #0A0A0A;
    --mid:          #555555;
    --soft:         #888888;
    --border:       #E0E0E0;
    --border-dark:  #CCCCCC;
    --green:        #00BDA5;
    --green-light:  #E5F8F6;
    --white:        #FFFFFF;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Lexend Deca', sans-serif; background: var(--paper); color: var(--ink); font-size: 17px; line-height: 1.6; overflow-x: hidden; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 56px;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav-brand { display: flex; flex-direction: column; gap: 1px; }
  .nav-brand-top { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--soft); }
  .nav-brand-name { font-family: 'Lexend', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); }
  .nav-brand-name span { color: var(--accent); }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { text-decoration: none; color: var(--mid); font-size: 15px; transition: color 0.2s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { background: var(--accent) !important; color: white !important; padding: 10px 22px !important; border-radius: 6px; font-weight: 500 !important; font-size: 14px !important; }
  .nav-cta:hover { opacity: 0.88 !important; }

  .hero {
    padding: 148px 56px 100px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    background: var(--paper);
  }

  .hero-text { max-width: 720px; width: 100%; margin-bottom: 56px; }

  .hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; font-family: 'Lexend Deca', sans-serif; font-size: 15px; font-weight: 600; color: var(--accent); background: var(--accent-light); border: 1.5px solid #FFBDAB; padding: 9px 20px; border-radius: 100px; }
  .eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
  @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
  .eyebrow-line { display: none; }

  h1 { font-family: 'Lexend Deca', sans-serif; font-size: clamp(44px, 6vw, 80px); font-weight: 700; line-height: 1.05; letter-spacing: -2px; margin-bottom: 28px; color: var(--ink); }
  h1 em { font-style: normal; color: var(--accent); }

  .hero-sub { font-size: 19px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
  .hero-sub strong { font-weight: 600; color: var(--ink); }

  .hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
  .btn-primary { background: var(--accent); color: white; padding: 15px 30px; border-radius: 6px; font-size: 16px; font-weight: 500; text-decoration: none; transition: opacity 0.2s; font-family: 'Lexend Deca', sans-serif; }
  .btn-primary:hover { opacity: 0.88; }
  .btn-ghost { color: var(--mid); font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
  .btn-ghost:hover { color: var(--ink); }

  .hero-proof { display: flex; align-items: center; justify-content: center; gap: 16px; padding-top: 32px; border-top: 1px solid var(--border); }
  .proof-pips { display: flex; }
  .proof-pip { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -7px; font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; color: white; font-family: 'DM Mono', monospace; }
  .proof-pip:first-child { margin-left: 0; }
  .pp1 { background: #FF7A59; } .pp2 { background: #00BDA5; } .pp3 { background: #F5C26B; color: #0A0A0A; } .pp4 { background: #333333; }
  .proof-text { font-size: 13px; color: var(--mid); line-height: 1.5; }
  .proof-text strong { color: var(--ink); font-weight: 600; }

  .hero-mock-wrap { width: 100%; max-width: 860px; }
  .mock-app { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  .mock-topbar { background: #1A1A1A; padding: 14px 20px; display: flex; align-items: center; gap: 8px; }
  .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
  .md1 { background: #FF5F57; } .md2 { background: #FEBC2E; } .md3 { background: #28C840; }
  .mock-title { font-family: 'DM Mono', monospace; font-size: 10px; color: #888; margin-left: 8px; letter-spacing: 0.5px; }
  .mock-body { padding: 24px; }
  .mock-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .mock-step:last-child { border-bottom: none; }
  .mock-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: white; font-family: 'DM Mono', monospace; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .mock-step-content { flex: 1; min-width: 0; text-align: left; }
  .mock-step-label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
  .mock-step-sub { font-size: 12px; color: var(--mid); }
  .mock-progress { margin-top: 20px; background: var(--surface); border-radius: 8px; padding: 14px 16px; }
  .mock-progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--mid); margin-bottom: 8px; font-family: 'DM Mono', monospace; }
  .mock-bar-track { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
  .mock-bar-fill { height: 100%; width: 75%; background: var(--accent); border-radius: 3px; }
  .mock-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 600; font-family: 'DM Mono', monospace; padding: 4px 10px; border-radius: 4px; margin-top: 16px; letter-spacing: 0.5px; }

  .compat-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 56px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
  .compat-label { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--soft); white-space: nowrap; flex-shrink: 0; }
  .compat-items { display: flex; align-items: center; gap: 32px; flex-wrap: nowrap; overflow-x: auto; }
  .compat-item { font-size: 14px; font-weight: 500; color: var(--mid); white-space: nowrap; }

  .problem-section { padding: 120px 56px; background: var(--surface); color: var(--ink); }
  .problem-inner { max-width: 1100px; margin: 0 auto; }
  .mono-label { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .mono-label-dark { color: var(--accent); }
  .fraunces-h2 { font-family: 'Lexend', sans-serif; font-size: clamp(34px, 4vw, 52px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; color: var(--ink); }
  .problem-sub { font-size: 19px; font-weight: 300; color: var(--mid); max-width: 580px; line-height: 1.7; margin-bottom: 64px; }

  .pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .pain-card { background: var(--paper); padding: 36px 30px; transition: background 0.2s; }
  .pain-card:hover { background: var(--surface); }
  .pain-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
  .pain-title { font-family: 'Lexend', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
  .pain-desc { font-size: 15px; color: var(--mid); line-height: 1.65; font-weight: 300; }

  .section-padded { padding: 120px 56px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 64px; }
  .how-card { padding: 48px 40px; background: var(--surface); position: relative; overflow: hidden; transition: background 0.2s; }
  .how-card:hover { background: #EBEBEB; }
  .how-card:nth-child(1) { border-radius: 12px 0 0 0; }
  .how-card:nth-child(2) { border-radius: 0 12px 0 0; }
  .how-card:nth-child(3) { border-radius: 0 0 0 12px; }
  .how-card:nth-child(4) { border-radius: 0 0 12px 0; background: var(--accent); }
  .how-card:nth-child(4):hover { background: var(--accent-dark); }
  .how-num { font-family: 'Lexend', sans-serif; font-size: 80px; font-weight: 900; color: var(--border); position: absolute; top: 12px; right: 20px; line-height: 1; letter-spacing: -4px; }
  .how-card:nth-child(4) .how-num { color: rgba(255,255,255,0.12); }
  .how-chip { display: inline-block; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 3px 10px; margin-bottom: 18px; }
  .how-card:nth-child(4) .how-chip { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
  .how-title { font-family: 'Lexend', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.5px; color: var(--ink); }
  .how-card:nth-child(4) .how-title { color: white; }
  .how-desc { font-size: 15px; color: var(--mid); line-height: 1.7; font-weight: 300; }
  .how-card:nth-child(4) .how-desc { color: rgba(255,255,255,0.75); }

  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
  .feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; transition: transform 0.2s, box-shadow 0.2s; }
  .feat-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
  .feat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 18px; }
  .fi-blue { background: var(--accent-light); } .fi-green { background: var(--green-light); } .fi-amber { background: #FFF8EE; } .fi-purple { background: #F5F3FF; } .fi-slate { background: var(--surface); } .fi-ink { background: var(--surface); }
  .feat-title { font-family: 'Lexend', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
  .feat-desc { font-size: 14px; color: var(--mid); line-height: 1.65; font-weight: 300; }

  .use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 64px; }
  .use-card { border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; display: flex; gap: 20px; background: var(--white); }
  .use-icon-wrap { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; background: var(--surface); }
  .use-title { font-family: 'Lexend', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
  .use-desc { font-size: 15px; color: var(--mid); line-height: 1.65; font-weight: 300; }

  .pricing-section { padding: 120px 56px; background: var(--surface); color: var(--ink); }
  .pricing-inner { max-width: 1100px; margin: 0 auto; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
  .plan-card { border: 1px solid var(--border); border-radius: 14px; padding: 40px 32px; background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; position: relative; display: flex; flex-direction: column; }
  .plan-card:hover { border-color: var(--accent); box-shadow: 0 6px 24px rgba(255,122,89,0.1); }
  .plan-card.featured { border: 2px solid var(--accent); background: var(--white); }
  .plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
  .plan-tier { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--soft); margin-bottom: 14px; }
  .plan-card.featured .plan-tier { color: var(--accent); }
  .plan-price { font-family: 'Lexend', sans-serif; font-size: 54px; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; color: var(--ink); }
  .plan-period { font-size: 16px; font-weight: 300; color: var(--mid); letter-spacing: 0; font-family: 'Lexend Deca', sans-serif; }
  .plan-who { font-size: 14px; color: var(--mid); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); font-weight: 300; }
  .plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; flex: 1; }
  .plan-feats li { font-size: 14px; color: var(--ink); display: flex; align-items: flex-start; gap: 10px; font-weight: 300; }
  .plan-feats li::before { content: '✓'; color: var(--green); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
  .plan-btn { display: block; text-align: center; padding: 13px 24px; border-radius: 7px; font-size: 15px; font-weight: 500; text-decoration: none; transition: all 0.2s; font-family: 'Lexend Deca', sans-serif; border: 1px solid var(--border-dark); color: var(--mid); }
  .plan-btn:hover { border-color: var(--accent); color: var(--accent); }
  .plan-btn.feat-btn { background: var(--accent); border-color: var(--accent); color: white; }
  .plan-btn.feat-btn:hover { background: var(--accent-dark); }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
  .testi-card { border: 1px solid var(--border); border-radius: 12px; padding: 32px 28px; background: var(--white); }
  .testi-stars { color: #D97706; font-size: 13px; letter-spacing: 3px; margin-bottom: 16px; }
  .testi-quote { font-family: 'Lexend', sans-serif; font-size: 16px; line-height: 1.75; color: var(--mid); margin-bottom: 24px; font-style: italic; font-weight: 300; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-av { width: 36px; height: 36px; border-radius: 50%; font-family: 'DM Mono', monospace; font-size: 11px; display: flex; align-items: center; justify-content: center; color: white; }
  .testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
  .testi-role { font-size: 12px; color: var(--mid); font-weight: 300; }

  .cta-section { padding: 120px 56px; background: var(--ink); color: white; text-align: center; }
  .cta-eyebrow { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  .cta-h2 { font-family: 'Lexend', sans-serif; font-size: clamp(38px, 5vw, 64px); font-weight: 900; letter-spacing: -2px; line-height: 1.0; margin-bottom: 20px; color: white; }
  .cta-sub { font-size: 20px; font-weight: 300; opacity: 0.7; max-width: 500px; margin: 0 auto 48px; line-height: 1.6; }
  .btn-white { background: var(--accent); color: white; padding: 18px 40px; border-radius: 8px; font-size: 17px; font-weight: 600; text-decoration: none; display: inline-block; font-family: 'Lexend', sans-serif; transition: all 0.2s; }
  .btn-white:hover { background: var(--accent-dark); transform: translateY(-2px); }

  footer { background: #111111; color: #888888; padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; border-top: 1px solid #222222; }
  .footer-brand { font-family: 'Lexend', sans-serif; font-size: 16px; font-weight: 700; color: #CCCCCC; }
  .footer-brand span { color: var(--accent); }
  footer a { color: #888888; text-decoration: none; }
  footer a:hover { color: #CCCCCC; }

  /* ── SHARED NAV ACTIVE STATE ── */
  .nav-links a.active { color: var(--accent); font-weight: 500; }

  /* ── INTERIOR PAGE HERO ── */
  .page-hero { padding: 140px 56px 80px; background: var(--surface); border-bottom: 1px solid var(--border); }
  .page-hero-inner { max-width: 800px; margin: 0 auto; }
  .page-hero .mono-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .page-hero h1 { font-family: 'Lexend', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px; color: var(--ink); }
  .page-hero p { font-size: 19px; font-weight: 300; color: var(--mid); line-height: 1.7; max-width: 600px; }

  /* ── BLOG CARD ── */
  .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
  .blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; }
  .blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
  .blog-cat { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
  .blog-title { font-family: 'Lexend', sans-serif; font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 12px; letter-spacing: -0.3px; }
  .blog-excerpt { font-size: 14px; color: var(--mid); font-weight: 300; line-height: 1.65; flex: 1; }
  .blog-meta { margin-top: 20px; font-size: 12px; color: var(--soft); font-family: 'DM Mono', monospace; letter-spacing: 0.5px; }

  /* ── LEGAL PAGES ── */
  .legal-body { max-width: 800px; margin: 0 auto; padding: 80px 56px; }
  .legal-body h2 { font-family: 'Lexend', sans-serif; font-size: 22px; font-weight: 600; color: var(--ink); margin: 40px 0 12px; letter-spacing: -0.3px; }
  .legal-body h3 { font-family: 'Lexend', sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); margin: 24px 0 8px; }
  .legal-body p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
  .legal-body ul { margin: 0 0 16px 20px; }
  .legal-body li { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 6px; font-weight: 300; }
  .legal-body a { color: var(--accent); text-decoration: none; }
  .legal-body a:hover { text-decoration: underline; }
  .legal-updated { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--soft); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 40px; }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .fu { animation: fadeUp 0.6s ease forwards; }
  .d1 { animation-delay: 0.1s; opacity: 0; } .d2 { animation-delay: 0.22s; opacity: 0; } .d3 { animation-delay: 0.36s; opacity: 0; } .d4 { animation-delay: 0.5s; opacity: 0; }

  /* ── MOBILE RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-links a:not(.nav-cta) { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-text { max-width: 100%; }
    .hero-mock-wrap { max-width: 100%; }
    .compat-bar { padding: 16px 24px; gap: 16px; }
    .compat-items { gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .problem-section { padding: 72px 24px; }
    .problem-inner { max-width: 100%; }
    .pain-grid { grid-template-columns: 1fr; }
    .section-padded { padding: 72px 24px; }
    .section-inner { max-width: 100%; }
    .how-grid { grid-template-columns: 1fr; gap: 3px; }
    .how-card:nth-child(1) { border-radius: 12px 12px 0 0; }
    .how-card:nth-child(2) { border-radius: 0; }
    .how-card:nth-child(3) { border-radius: 0; }
    .how-card:nth-child(4) { border-radius: 0 0 12px 12px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .use-grid { grid-template-columns: 1fr; gap: 16px; }
    .testi-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-section { padding: 72px 24px; }
    .pricing-inner { max-width: 100%; }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .cta-section { padding: 72px 24px; }
    .cta-h2 { font-size: clamp(32px, 8vw, 52px); }
    footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
    .page-hero { padding: 100px 24px 60px; }
    .blog-grid { grid-template-columns: 1fr; }
    .legal-body { padding: 60px 24px; }
  }

  @media (max-width: 600px) {
    nav { padding: 12px 20px; }
    .nav-brand-name { font-size: 14px; }
    h1 { font-size: clamp(36px, 9vw, 56px); letter-spacing: -1.5px; }
    .hero-sub { font-size: 16px; }
    .hero { padding: 90px 20px 48px; }
    .mock-body { padding: 16px; }
    .mock-step-sub { font-size: 11px; }
    .compat-items { gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compat-item { font-size: 13px; }
    .fraunces-h2 { font-size: clamp(28px, 7vw, 40px); letter-spacing: -1px; }
    .how-card { padding: 32px 24px; }
    .how-num { font-size: 56px; }
    .section-padded { padding: 56px 20px; }
    .problem-section { padding: 56px 20px; }
    .pricing-section { padding: 56px 20px; }
    .cta-section { padding: 56px 20px; }
    .feat-card { padding: 24px 20px; }
    .use-card { flex-direction: column; gap: 12px; padding: 24px 20px; }
    .plan-card { padding: 28px 20px; }
    .testi-card { padding: 24px 20px; }
    .btn-primary { padding: 14px 24px; font-size: 15px; width: 100%; text-align: center; display: block; }
    .btn-ghost { display: none; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    footer { padding: 28px 20px; font-size: 12px; }
    .page-hero { padding: 90px 20px 48px; }
    .legal-body { padding: 48px 20px; }
  }
