@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&family=Lato:ital,wght@1,300&family=Poppins:wght@200&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
      --navy-900: #0b1d3a;
      --navy-800: #122348;
      --navy-700: #1a3060;
      --navy-600: #1e3a70;
      --navy-400: #3a5fa0;
      --navy-300: #5b7db8;
      --navy-200: #9eb5d8;
      --navy-100: #d0dcef;
      --navy-50:  #edf1f8;
      --teal-900: #042c1e;
      --teal-700: #0a4a32;
      --teal-500: #0f6e4a;
      --teal-300: #3db389;
      --teal-100: #a8dece;
      --teal-50:  #e1f5ee;
      --amber:    #e8a020;
      --white:    #ffffff;
      --off-white: #f8f7f4;
      --text-dark: #0e1c33;
      --text-mid:  #3d5070;
      --text-light: #7a90b0;
      --border:    rgba(30,58,112,0.12);
      --border-mid: rgba(30,58,112,0.22);
      --mono: 'JetBrains Mono', monospace;
    }
 
    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--off-white);
      color: var(--text-dark);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
 
    /* ════════════════════════════════
       SECTION 1 — HERO
       Dark split, animated conic left,
       cream grid right
    ════════════════════════════════ */
    .s1 {
      display: grid;
      grid-template-columns: 55fr 45fr;
      min-height: 100vh;
    }
 
    .s1-left {
      background: var(--navy-900);
      padding: 7rem 5vw 7rem 8vw;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    /* Spinning conic bg */
    .s1-left::before {
      content: '';
      position: absolute;
      inset: -70%;
      background: conic-gradient(
        from 0deg at 30% 40%,
        #07111e 0deg, #0d2240 60deg,
        #0a3520 110deg, #071525 170deg,
        #0d2240 230deg, #07111e 360deg
      );
      animation: spin 40s linear infinite;
      z-index: 0;
    }
 
    /* Grid overlay */
    .s1-left::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
    }
 
    @keyframes spin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
 
    .s1-left-content { position: relative; z-index: 1; }
 
    .s1-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal-100);
      margin-bottom: 1.8rem;
    }
 
    .s1-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--teal-300);
    }
 
    .s1-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.4rem, 4.5vw, 5rem);
      line-height: 1.0;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
 
    .s1-title em {
      font-style: italic;
      color: var(--teal-100);
      display: block;
    }
 
    .s1-lead {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.9;
      color: rgba(255,255,255,0.45);
      max-width: 480px;
      margin: 1.8rem 0 2.8rem;
    }
 
    .s1-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 2.8rem;
    }
 
    .s1-tag {
      font-family: var(--mono);
      font-size: 0.62rem;
      font-weight: 400;
      color: var(--teal-100);
      border: 0.5px solid rgba(61,179,137,0.25);
      padding: 4px 10px;
      letter-spacing: 0.04em;
    }
 
    .s1-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
 
    .btn-teal {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--teal-900);
      background: var(--teal-300);
      padding: 0.85rem 1.8rem;
      text-decoration: none;
      border: none;
      transition: background 0.2s;
    }
 
    .btn-teal:hover { background: var(--teal-100); }
 
    .btn-ghost-light {
      font-size: 0.68rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      padding-bottom: 2px;
      transition: color 0.2s;
    }
 
    .btn-ghost-light:hover { color: var(--white); }
 
    /* Right: cream with stats */
    .s1-right {
      background: #0a3520;
      padding: 7rem 8vw 7rem 5vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-left: 0.5px solid var(--border-mid);
    }
 
    .s1-intro-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.6rem;
      font-weight: 300;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #C86E1A;
      margin-bottom: 2.5rem;
    }
 
    .s1-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 0.5px solid var(--border-mid);
      margin-bottom: 3rem;
    }
 
    .s1-stat {
      padding: 1.8rem 1.5rem;
      border-right: 0.5px solid var(--border-mid);
      border-bottom: 0.5px solid var(--border-mid);
    }
 
    .s1-stat:nth-child(2n) { border-right: none; }
    .s1-stat:nth-last-child(-n+2) { border-bottom: none; }
 
    .s1-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 2.8rem;
      line-height: 1;
      color: #C86E1A;
      margin-bottom: 0.4rem;
    }
 
    .s1-stat-num span { color: var(--navy-400); }
 
    .s1-stat-label {
      font-size: 0.72rem;
      font-weight: 300;
      line-height: 1.6;
      color: whitesmoke;
      letter-spacing: 1.2px;
    }
 
    .s1-desc {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.9;
      color: white;
      border-left: 2px solid var(--navy-400);
      padding-left: 1.2rem;
      letter-spacing: 1.2px;
    }
 
    /* ════════════════════════════════
       SECTION 2 — THE PROBLEM
       Pure cream background,
       editorial newspaper-column layout
    ════════════════════════════════ */
    .s2 {
      background: var(--white) !important;
      padding: 7rem 8vw;
      border-top: 0.5px solid var(--border-mid) !important;
      position: relative;
      overflow: hidden;
      height: 50vh;
    }
 
    /* Diagonal stripe accent */
    .s2::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      border: 40px solid var(--navy-50);
      transform: rotate(45deg);
      z-index: 0;
    }
 
    .s2-inner {
      display: grid;
      grid-template-columns: 1fr 2px 1fr 2px 1fr;
      gap: 0;
      position: relative;
      z-index: 1;
    }
 
    /* .s2-col-dividerr { background: var(--border-mid); } */
 
    .s2-header {
      grid-column: 1 / -1;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 4rem;
      padding-bottom: 1.5rem;
      border-bottom: 0.5px solid var(--border-mid);
    }
 
    .s2-section-tag {
      font-family: var(--mono);
      font-size: 0.6rem;
      font-weight: 300;
      color: var(--text-light);
      letter-spacing: 0.12em;
    }
 
    .s2-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 1.1;
      color: var(--navy-900);
    }
 
    .s2-title em { font-style: italic; color: var(--navy-400); }
 
    .s2-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 5rem;
      color: var(--border);
      line-height: 1;
    }
 
    .s2-col { padding: 0 2.5rem 0 0; }
    .s2-col:nth-child(3) { padding: 0 2.5rem; }
    .s2-col:nth-child(5) { padding: 0 0 0 2.5rem; }
 
    .s2-col-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 3.5rem;
      color: var(--border);
      line-height: 1;
      margin-bottom: 1rem;
      display: block;
    }
 
    .s2-col-title {
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--navy-900);
      margin-bottom: 0.8rem;
      line-height: 1.3;
       font-family: 'Cormorant Garamond', serif;
    }
 
    .s2-col-body {
      font-size: 0.8rem;
      font-weight: 300;
      line-height: 1.9;
      color:  var(--navy-400);
      letter-spacing: 1.2px;
    }
 
    .s2-col-accent {
      display: block;
      width: 32px;
      height: 2px;
      background: var(--navy-400) !important;
      margin-bottom: 1.5rem;
    }
 
    /* ════════════════════════════════
       SECTION 3 — HOW IT WORKS
       Deep teal/dark green background,
       pipeline visual layout
    ════════════════════════════════ */
    .s3 {
      background: var(--teal-900);
      padding: 7rem 8vw;
      position: relative;
      overflow: hidden;
    }
 
    .s3::before {
      content: '';
      position: absolute;
      inset: -60%;
      background: conic-gradient(
        from 0deg at 70% 30%,
        #042c1e 0deg, #0a4a32 80deg,
        #042c1e 160deg, #071a10 240deg,
        #042c1e 360deg
      );
      animation: spin 50s linear infinite reverse;
      z-index: 0;
      opacity: 0.7;
    }
 
    .s3::after {
      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: 80px 80px;
      z-index: 0;
    }
 
    .s3-inner { position: relative; z-index: 1; }
 
    .s3-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 5rem;
      padding-bottom: 1.5rem;
      border-bottom: 0.5px solid rgba(255,255,255,0.08);
    }
 
    .s3-eyebrow {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal-100);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
 
    .s3-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--teal-300);
    }
 
    .s3-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 3rem);
      line-height: 1.1;
      color: var(--white);
    }
 
    .s3-title em { font-style: italic; color: var(--teal-100); }
 
    .s3-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 5rem;
      color: rgba(255,255,255,0.05);
      line-height: 1;
    }
 
    /* Pipeline steps — horizontal connector */
    .s3-pipeline {
      position: relative;
      margin-bottom: 4rem;
    }
 
    .s3-connector {
      position: absolute;
      top: 32px;
      left: 32px;
      right: 32px;
      height: 1px;
      background: rgba(255,255,255,0.08);
      z-index: 0;
    }
 
    .s3-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      z-index: 1;
    }
 
    .s3-step { padding: 0 1.5rem 0 0; }
    .s3-step:last-child { padding-right: 0; }
 
    .s3-step-dot-wrap {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.8rem;
    }
 
    .s3-step-dot {
      width: 64px;
      height: 64px;
      border: 0.5px solid rgba(61,179,137,0.3);
      background: rgba(10,74,50,0.6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.25s, border-color 0.25s;
    }
 
    .s3-step:hover .s3-step-dot {
      background: rgba(61,179,137,0.15);
      border-color: var(--teal-300);
    }
 
    .s3-step-dot svg {
      width: 20px;
      height: 20px;
      stroke: var(--teal-300);
      fill: none;
      stroke-width: 1.5;
    }
 
    .s3-step-label {
      font-family: var(--mono);
      font-size: 0.58rem;
      font-weight: 300;
      color: var(--teal-100);
      letter-spacing: 0.1em;
      margin-bottom: 0.5rem;
      display: block;
    }
 
    .s3-step-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 0.6rem;
      line-height: 1.3;
       font-family: 'Cormorant Garamond', serif;
       letter-spacing: 1px;
    }
 
    .s3-step-body {
      font-size: 0.75rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.691);
      letter-spacing: 1.2px;
    }
 
    /* Tools row */
    .s3-tools-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
      background: rgba(255,255,255,0.05);
      border: 0.5px solid rgba(255,255,255,0.06);
    }
 
    .s3-tool {
      background: rgba(4,44,30,0.5);
      padding: 1.4rem 1.2rem;
      border-right: 0.5px solid rgba(255,255,255,0.05);
      transition: background 0.2s;
    }
 
    .s3-tool:last-child { border-right: none; }
    .s3-tool:hover { background: rgba(61,179,137,0.08); }
 
    .s3-tool-name {
      font-family: var(--mono);
      font-size: 0.72rem;
      font-weight: 400;
      color: var(--teal-300);
      margin-bottom: 0.4rem;
    }
 
    .s3-tool-desc {
      font-size: 0.72rem;
      font-weight: 300;
      color: white;
      line-height: 1.6;
      letter-spacing: 1px;
    }
 

   
 
    /* ════════════════════════════════
       SECTION 4 — DELIVERABLES
       Warm cream/off-white background,
       horizontal scrolling-style cards
    ════════════════════════════════ */
    .s5 {
      background: var(--white) !important;
      padding: 7rem 8vw;
      border-top: 0.5px solid rgba(30,58,112,0.1) !important;
    }
 
    .s5-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 4rem;
      padding-bottom: 1.5rem;
      border-bottom: 0.5px solid rgba(30,58,112,0.15) !important;
    }
 
    .s5-eyebrow {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy-400);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
 
    .s5-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--navy-400) !important;
    }
 
    .s5-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 1.1;
      color: var(--navy-900) !important;
    }
 
    .s5-title em { font-style: italic; color: var(--navy-400) !important; }
 
    .s5-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 5rem;
      color: rgba(30,58,112,0.08) !important;
      line-height: 1;
    }
 
    /* Large horizontal card row */
    .s5-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: rgba(30,58,112,0.1);
    }
 
    .s5-card {
      background: var(--teal-900);
      padding: 2.5rem 2rem;
      border-right: 0.5px solid rgba(30,58,112,0.12);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: background 0.3s;
    }
 
    .s5-card:last-child { border-right: none; }
    .s5-card:hover { background: var(--navy-900); color: white !important; }
 
    .s5-card-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 5rem;
      line-height: 1;
      color: #e8a020;
      position: absolute;
      top: 0.5rem;
      right: 1rem;
      pointer-events: none;
      user-select: none;
    }
 
    .s5-card-icon {
      width: 40px;
      height: 40px;
      border: 0.5px solid rgba(30,58,112,0.2);
      background: rgba(255,255,255,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.3s, border-color 0.3s;
    }
 
    .s5-card:hover .s5-card-icon {
      background: var(--navy-50);
      border-color: var(--navy-200);
    }
 
    .s5-card-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--navy-700);
      fill: none;
      stroke-width: 1.5;
    }
 
    .s5-card-title {
      font-size: 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      color: #C86E1A;
      margin-bottom: 0.8rem;
      line-height: 1.3;
      flex: 1;
      letter-spacing: 1px;
    }

     .s5-card:hover .s5-card-title {
      color: white;
     }

    .s5-card-body {
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.8;
      color: white;
      margin-bottom: 1.5rem;
      letter-spacing: 1.2px;
    }
 
    .s5-card-tag {
      display: inline-block;
      font-family: var(--mono);
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--navy-400);
      background: var(--navy-50);
      padding: 3px 8px;
      align-self: flex-start;
    }
 
    /* ════════════════════════════════
       SECTION 6 — WHO BENEFITS
       Navy background, large type,
       horizontal scrolling ticker items
    ════════════════════════════════ */
    .s6 {
      background: var(--navy-800);
      padding: 7rem 8vw;
      border-top: 0.5px solid rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
    }
 
    .s6::before {
      content: '';
      position: absolute;
      inset: -60%;
      background: conic-gradient(
        from 180deg at 50% 50%,
        #0b1d3a 0deg, #0e2850 90deg,
        #0b1d3a 180deg, #112248 270deg,
        #0b1d3a 360deg
      );
      animation: spin 60s linear infinite;
      z-index: 0;
      opacity: 0.6;
    }
 
    .s6-inner { position: relative; z-index: 1; }
 
    .s6-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4vw;
      margin-bottom: 5rem;
      padding-bottom: 2rem;
      border-bottom: 0.5px solid rgba(255,255,255,0.07);
    }
 
    .s6-eyebrow {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--navy-200);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
 
    .s6-eyebrow::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--navy-400);
    }
 
    .s6-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3.2vw, 3rem);
      line-height: 1.1;
      color: var(--white);
    }
 
    .s6-title em { font-style: italic; color: var(--navy-200); }
 
    .s6-right-body {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.9;
      color: var(--navy-200);
      display: flex;
      align-items: center;
      letter-spacing: 1.2px;
    }
 
    .s6-roles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(255,255,255,0.04);
    }
 
    .s6-role {
      background: rgba(11,29,58,0.7);
      padding: 2rem 1.8rem;
      border: 0.5px solid rgba(255,255,255,0.05);
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }
 
    .s6-role:hover { background: rgba(30,58,112,0.4); }
 
    .s6-role-icon {
      width: 36px;
      height: 36px;
      border: 0.5px solid rgba(158,181,216,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
    }
 
    .s6-role-icon svg {
      width: 15px;
      height: 15px;
      stroke: var(--navy-200);
      fill: none;
      stroke-width: 1.5;
    }
 
    .s6-role-title {
      font-size: 1rem;
      color:  #e8a020;
      margin-bottom: 0.5rem;
       font-family: 'Cormorant Garamond', serif;
       letter-spacing: 1.2px;
    }
 
    .s6-role-body {
      font-size: 0.75rem;
      line-height: 1.8;
      color: whitesmoke;
      letter-spacing: 1.2px;
      padding-top: 1rem;
    }
 
    .s6-role-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1.5px;
      background: linear-gradient(90deg, var(--navy-400), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
 
    .s6-role:hover .s6-role-accent { transform: scaleX(1); }
 
    
 
    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 1000px) {
      .s1, .s4, .s7 { grid-template-columns: 1fr; }
      .s1-right { border-left: none; border-top: 0.5px solid var(--border-mid); padding: 4rem 8vw; }
      .s1-left { min-height: 60vh; }
      .s2-inner { grid-template-columns: 1fr; }
      .s2-col-dividerr { display: none; }
      .s2-col { padding: 2rem 0 !important; border-bottom: 0.5px solid var(--border-mid); }
      .s2-col:last-child { border-bottom: none; }
      .s3-steps { grid-template-columns: 1fr 1fr; }
      .s3-connector { display: none; }
      .s3-tools-row { grid-template-columns: 1fr 1fr; }
      .s4-left { padding: 4rem 8vw; border-right: none; border-bottom: 0.5px solid var(--border-mid); }
      .s4-right { padding: 4rem 8vw; }
      .s5-cards { grid-template-columns: 1fr 1fr; }
      .s6-header { grid-template-columns: 1fr; gap: 1.5rem; }
      .s6-roles { grid-template-columns: 1fr 1fr; }
      .s7-left { padding: 4rem 8vw; }
      .s7-right { padding: 4rem 8vw; border-left: none; border-top: 0.5px solid var(--border-mid); }
    }
 
    @media (max-width: 600px) {
      .s1-stat-grid { grid-template-columns: 1fr 1fr; }
      .s3-steps { grid-template-columns: 1fr; }
      .s3-tools-row { grid-template-columns: 1fr; }
      .s4-grid { grid-template-columns: 1fr; }
      .s4-item:nth-child(n) { border-right: none; border-bottom: 0.5px solid var(--border-mid); }
      .s4-item:last-child { border-bottom: none; }
      .s5-cards { grid-template-columns: 1fr; }
      .s6-roles { grid-template-columns: 1fr; }
      .s7-row { grid-template-columns: 1fr; }
    }