:root {
    --navy:    #0A2E4A;
    --teal:    #0D6E8A;
    --teal2:   #d76831;
    --green:   #0D6B3C;
    --ltgreen: #A8D8B4;
    --ice:     #C8EAF0;
    --white:   #F4F8FA;
    --offwhite:#E8F2F5;
    --mid:     #6B8A99;
    --dark:    #061C2C;
    --gold:    #C8960A;
    --warn:    #E05C2A;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
  }

/* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #000000 0%, #264a38 45%, #0D3D55 70%, #264a38 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(13,110,138,0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13,110,138,0.07) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-glow {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(13,155,170,0.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-glow2 {
    position: absolute; bottom: -100px; left: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(13,110,60,0.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px; letter-spacing: 4px;
    color: var(--teal2); text-transform: uppercase;
    margin-bottom: 24px; position: relative;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 40px; height: 1px; background: var(--teal2);
  }
  .hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 10vw, 140px);
    font-weight: 900; line-height: 0.9;
    letter-spacing: -2px;
    color: var(--white);
    position: relative;
  }
  .hero-heading .accent { color: var(--teal2); display: block; }
  .hero-sub {
    font-size: 18px; font-weight: 300;
    color: var(--ice); max-width: 560px;
    margin-top: 32px; line-height: 1.6;
    border-left: 3px solid var(--teal);
    padding-left: 24px;
  }
  .hero-tags {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 40px;
  }
  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 2px;
    color: var(--mid); text-transform: uppercase;
    border: 1px solid rgba(107,138,153,0.3);
    padding: 8px 16px; border-radius: 1px;
  }
  .hero-scroll {
    position: absolute; bottom: 40px; right: 48px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 3px;
    color: var(--mid); text-transform: uppercase;
    writing-mode: vertical-rl;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-scroll::after {
    content: ''; display: block;
    width: 1px; height: 60px; background: var(--teal);
  }
  .hero-stats {
    display: flex; gap: 60px; margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(13,110,138,0.25);
  }
  .stat-item {}
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px; font-weight: 700;
    color: var(--teal2); line-height: 1;
  }
  .stat-label {
    font-size: 11px; font-weight: 500;
    color: var(--mid); letter-spacing: 2px;
    text-transform: uppercase; margin-top: 6px;
  }

  /* ── SECTIONS SHARED ── */
  section { position: relative; }

  .section-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 120px 48px;
  }

  .section-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 4px;
    color: var(--teal2); text-transform: uppercase;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 14px;
  }
  .section-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--teal);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700; line-height: 1.1;
    color: var(--white); margin-bottom: 24px;
  }
  .section-title .hl { color: var(--teal2); }
  .section-title .hl-green { color: #da6932; }

  .section-lead {
    font-size: 18px; font-weight: 300;
    color: var(--ice); max-width: 680px;
    line-height: 1.7; margin-bottom: 64px;
  }

  .body-text {
    font-size: 15px; color: var(--ice);
    line-height: 1.8; margin-bottom: 20px;
    max-width: 700px;
  }

  /* ── WHAT MARISEAX DOES ── */
  .intro-section { background: #033e22; }
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
    margin-top: 60px;
  }
  .intro-card {
    border: 1px solid rgba(13,110,138,0.2);
    padding: 48px;
    position: relative;
    transition: border-color 0.3s;
  }
  .intro-card:hover { border-color: var(--teal2); }
  .intro-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 72px; font-weight: 900;
    color: rgba(13,110,138,0.12);
    position: absolute; top: 24px; right: 32px;
    line-height: 1;
  }
  .intro-card-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--teal);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
  }
  .intro-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
  }
  .intro-card p {
    font-size: 14px; color: var(--ice);
    line-height: 1.75;
  }

  /* ── SUPPLY CHAIN FLOW ── */
  .flow-section {
/*     background: linear-gradient(180deg, var(--dark) 0%, #0A2030 100%); */
	  background: #fff;
  }
  .flow-chain {
    display: flex; align-items: stretch;
    gap: 0; margin-top: 60px;
    overflow-x: auto; padding-bottom: 20px;
  }
  .flow-step {
    flex: 1; min-width: 160px;
    background: rgba(13,110,138,0.06);
    border: 1px solid rgba(13,110,138,0.2);
    border-right: none;
    padding: 40px 24px;
    position: relative;
    transition: background 0.3s;
  }
  .flow-step:last-child { border-right: 1px solid rgba(13,110,138,0.2); }
  .flow-step:hover { background: rgba(13,110,138,0.14); }
  .flow-step::after {
    content: '→';
    position: absolute; right: -18px; top: 50%;
    transform: translateY(-50%);
    color: var(--teal2); font-size: 20px;
    z-index: 2;
  }
  .flow-step:last-child::after { display: none; }
  .flow-num {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 2px;
    color: var(--teal2); margin-bottom: 16px;
  }
  .flow-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }
  .flow-desc {
    font-size: 12px; color: var(--mid);
    line-height: 1.6;
  }

  /* ── IOT / TECH ── */
  .tech-section { background: #002d16; }
  .tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px; margin-top: 60px;
  }
  .tech-card {
    background: rgba(10,46,74,0.5);
    padding: 48px 36px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    cursor: default;
  }
  .tech-card:hover {
    background: rgba(13,110,138,0.15);
    border-bottom-color: var(--teal2);
  }
  .tech-card-icon {
    font-size: 32px; margin-bottom: 20px;
    display: block;
  }
  .tech-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
  }
  .tech-card p {
    font-size: 13px; color: var(--mid);
    line-height: 1.75;
  }
  .tech-badge {
    display: inline-block; margin-top: 16px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 2px;
    color: var(--teal2); text-transform: uppercase;
    border: 1px solid rgba(13,155,170,0.3);
    padding: 4px 10px;
  }

  /* ── PRODUCT SOURCE ── */
  .product-section { background: #002d16; }
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; margin-top: 60px;
  }
  .product-species {
    border: 1px solid rgba(13,110,138,0.25);
    padding: 56px 48px;
    position: relative; overflow: hidden;
  }
  .product-species::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
  }
  .vannamei::before { background: linear-gradient(90deg, var(--teal), var(--teal2)); }
  .blacktiger::before { background: linear-gradient(90deg, var(--green), var(--ltgreen)); }
  .species-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 16px;
  }
  .vannamei .species-label { color: var(--teal2); }
  .blacktiger .species-label { color: var(--ltgreen); }
  .species-name {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 900;
    color: var(--white); margin-bottom: 8px;
  }
  .species-latin {
    font-size: 13px; font-style: italic;
    color: var(--mid); margin-bottom: 28px;
  }
  .species-body {
    font-size: 14px; color: var(--ice);
    line-height: 1.8; margin-bottom: 28px;
  }
  .species-attrs {
    display: flex; flex-direction: column; gap: 10px;
  }
  .attr-row {
    display: flex; justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(13,110,138,0.15);
    padding-top: 10px;
    font-size: 12px;
  }
  .attr-key { color: var(--mid); letter-spacing: 1px; text-transform: uppercase; font-family: 'Space Mono', monospace; font-size: 10px; }
  .attr-val { color: var(--white); font-weight: 500; }

  /* ── MONITORING STAGES ── */
  .monitor-section { background: #000; }
  .monitor-timeline {
    position: relative; margin-top: 60px;
    padding-left: 40px;
  }
  .monitor-timeline::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--teal2), var(--green), var(--teal));
  }
  .monitor-stage {
    position: relative; margin-bottom: 56px;
    padding-left: 40px;
  }
  .monitor-stage::before {
    content: '';
    position: absolute; left: -46px; top: 8px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--teal2);
    border: 2px solid var(--dark);
    box-shadow: 0 0 0 3px rgba(13,155,170,0.3);
  }
  .stage-num {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 3px;
    color: var(--teal2); text-transform: uppercase;
    margin-bottom: 8px;
  }
  .stage-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }
  .stage-body {
    font-size: 14px; color: var(--ice);
    line-height: 1.8; max-width: 700px;
  }
  .stage-metrics {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 16px;
  }
  .metric-pill {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 1px;
    color: var(--teal2);
    border: 1px solid rgba(13,155,170,0.3);
    padding: 5px 12px; border-radius: 20px;
  }

  /* ── SMART CONTRACTS ── */
  .contracts-section {
    background: linear-gradient(135deg, #000000 20%, #061C2C 70%, #040E18 100%);
  }
  .contract-flow {
    display: flex; flex-direction: column;
    gap: 2px; margin-top: 60px; max-width: 900px;
  }
  .contract-row {
    display: grid;
    grid-template-columns: 200px 1fr 140px;
    gap: 2px; align-items: stretch;
  }
  .contract-trigger {
    background: rgba(13,110,138,0.12);
    border: 1px solid rgba(13,110,138,0.25);
    padding: 28px 24px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .trigger-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 2px;
    color: var(--teal2); text-transform: uppercase;
    margin-bottom: 6px;
  }
  .trigger-text {
    font-size: 13px; color: var(--white);
    font-weight: 500; line-height: 1.4;
  }
  .contract-action {
    background: rgba(6,28,44,0.8);
    border: 1px solid rgba(13,110,138,0.15);
    padding: 28px 32px;
    display: flex; align-items: center;
    font-size: 13px; color: var(--ice);
    line-height: 1.6;
  }
  .contract-release {
    background: rgba(13,110,60,0.15);
    border: 1px solid rgba(13,107,60,0.3);
    padding: 28px 20px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
  }
  .release-pct {
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--ltgreen); line-height: 1;
  }
  .release-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 1px;
    color: var(--mid); text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── SUSTAINABILITY ── */
  .sustain-section { background: #000000; }
  .sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 60px;
    align-items: start;
  }
  .emission-table {
    border: 1px solid rgba(13,110,138,0.2);
    overflow: hidden; margin-top: 40px;
  }
  .emission-header {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    background: rgba(13,110,138,0.15);
    padding: 16px 24px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 2px;
    color: var(--teal2); text-transform: uppercase;
  }
  .emission-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    padding: 16px 24px;
    border-top: 1px solid rgba(13,110,138,0.1);
    font-size: 13px; align-items: center;
    transition: background 0.2s;
  }
  .emission-row:hover { background: rgba(13,110,138,0.07); }
  .emission-route { color: var(--white); font-weight: 500; }
  .emission-val { color: var(--teal2); font-family: 'Space Mono', monospace; font-size: 12px; }
  .emission-save { color: var(--ltgreen); font-size: 12px; }
  .carbon-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
  .carbon-action {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; border: 1px solid rgba(13,107,60,0.2);
    transition: border-color 0.3s;
  }
  .carbon-action:hover { border-color: var(--ltgreen); }
  .ca-icon {
    width: 40px; height: 40px; min-width: 40px;
    border: 1px solid var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .ca-title {
    font-size: 14px; font-weight: 600;
    color: var(--white); margin-bottom: 4px;
  }
  .ca-body { font-size: 12px; color: var(--mid); line-height: 1.6; }
  .ca-saving {
    font-family: 'Space Mono', monospace;
    font-size: 10px; color: var(--ltgreen);
    margin-top: 6px; letter-spacing: 1px;
  }

  /* ── CLIMATE RESILIENCE ── */
  .climate-section { background: #002714; }
  .climate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 60px;
  }
  .climate-card {
    background: rgba(10,46,74,0.4);
    border: 1px solid rgba(13,110,138,0.15);
    padding: 40px 32px;
    border-top: 2px solid transparent;
    transition: all 0.3s;
  }
  .climate-card:hover {
    border-top-color: var(--teal2);
    background: rgba(13,110,138,0.1);
  }
  .climate-card-icon { font-size: 28px; margin-bottom: 20px; display: block; }
  .climate-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
  }
  .climate-card p { font-size: 13px; color: var(--mid); line-height: 1.7; }

  /* ── FUTURE / DECENTRALISED ── */
  .future-section {
    background: linear-gradient(153deg, #002714, #002721, #002714);
    overflow: hidden; position: relative;
  }
  .future-section::before {
    content: 'FUTURE';
    position: absolute; right: -80px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Playfair Display', serif;
    font-size: 200px; font-weight: 900;
    color: rgba(13,110,138,0.04);
    white-space: nowrap; pointer-events: none;
    letter-spacing: -10px;
  }
  .future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px; margin-top: 60px;
  }
  .future-card {
    padding: 56px 48px;
    position: relative; overflow: hidden;
    transition: all 0.3s;
    cursor: default;
  }
  .future-card:nth-child(1) { background: rgba(13,110,138,0.1); border: 1px solid rgba(13,110,138,0.2); }
  .future-card:nth-child(2) { background: rgba(13,107,60,0.1); border: 1px solid rgba(13,107,60,0.2); }
  .future-card:nth-child(3) { background: rgba(200,150,10,0.08); border: 1px solid rgba(200,150,10,0.2); }
  .future-card:nth-child(4) { background: rgba(224,92,42,0.08); border: 1px solid rgba(224,92,42,0.2); }
  .future-card:hover { transform: translateY(-4px); }
  .future-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 80px; font-weight: 900; line-height: 1;
    opacity: 0.08; position: absolute;
    top: 16px; right: 24px; color: var(--white);
  }
  .future-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 16px;
  }
  .future-card:nth-child(1) .future-tag { color: var(--teal2); }
  .future-card:nth-child(2) .future-tag { color: var(--ltgreen); }
  .future-card:nth-child(3) .future-tag { color: var(--gold); }
  .future-card:nth-child(4) .future-tag { color: var(--warn); }
  .future-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
    color: var(--white); margin-bottom: 16px; line-height: 1.2;
  }
  .future-card p { font-size: 13px; color: var(--mid); line-height: 1.75; }

  /* ── PARTNERS ── */
  .partners-section { background: #000000; }
  .partner-types {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px; margin-top: 60px;
  }
  .partner-type {
    padding: 40px 28px; text-align: center;
    background: rgba(13,110,138,0.06);
    border: 1px solid rgba(13,110,138,0.15);
    transition: all 0.3s;
  }
  .partner-type:hover {
    background: rgba(13,110,138,0.15);
    border-color: var(--teal2);
  }
  .pt-icon { font-size: 32px; margin-bottom: 16px; display: block; }
  .pt-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--white); margin-bottom: 8px;
  }
  .pt-body { font-size: 12px; color: var(--mid); line-height: 1.6; }

  /* ── RESOURCES ── */
  .resources-section { background: #000000; }
  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }
  .resource-card {
    background: rgba(10,46,74,0.4);
    border: 1px solid rgba(13,110,138,0.2);
    padding: 40px 32px;
    transition: all 0.3s; cursor: pointer;
    display: flex; flex-direction: column;
  }
  .resource-card:hover {
    border-color: var(--teal2);
    background: rgba(13,110,138,0.12);
    transform: translateY(-4px);
  }
  .resource-type {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 16px;
  }
  .resource-card:nth-child(1) .resource-type,
  .resource-card:nth-child(4) .resource-type { color: var(--teal2); }
  .resource-card:nth-child(2) .resource-type,
  .resource-card:nth-child(5) .resource-type { color: var(--ltgreen); }
  .resource-card:nth-child(3) .resource-type,
  .resource-card:nth-child(6) .resource-type { color: var(--gold); }
  .resource-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 12px; line-height: 1.3;
  }
  .resource-card p { font-size: 13px; color: var(--mid); line-height: 1.7; flex: 1; }
  .resource-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 2px;
    color: var(--teal2); text-transform: uppercase;
    text-decoration: none; border-bottom: 1px solid transparent;
    transition: border-color 0.2s; width: fit-content;
  }
  .resource-link:hover { border-color: var(--teal2); }

  /* ── PAGES / VIEWS ── */
  .pages-section { background: #002714; }
  .pages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px; margin-top: 60px;
  }
  .page-card {
    background: rgba(10,46,74,0.35);
    border: 1px solid rgba(13,110,138,0.15);
    padding: 48px 32px;
    text-decoration: none; display: block;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .page-card:hover {
    background: rgba(13,110,138,0.18);
    border-color: rgba(13,155,170,0.5);
  }
  .page-card::after {
    content: '→';
    position: absolute; bottom: 28px; right: 28px;
    font-size: 20px; color: var(--teal2);
    transition: transform 0.2s;
  }
  .page-card:hover::after { transform: translateX(4px); }
  .page-card-icon { font-size: 28px; margin-bottom: 20px; display: block; }
  .page-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }
  .page-card p { font-size: 12px; color: var(--mid); line-height: 1.6; }

  /* ── COMMUNITY ── */
  .community-section {
    background: #000000;
  }
  .community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; margin-top: 60px; align-items: start;
  }
  .community-card {
    border: 1px solid rgba(13,110,138,0.2);
    padding: 48px 40px; margin-bottom: 24px;
    transition: border-color 0.3s;
  }
  .community-card:hover { border-color: var(--teal2); }
  .community-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
  }
  .community-card p { font-size: 13px; color: var(--mid); line-height: 1.7; }
  .community-tag {
    display: inline-block; margin-top: 14px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 2px;
    color: var(--teal2); text-transform: uppercase;
    border: 1px solid rgba(13,155,170,0.3);
    padding: 5px 12px;
  }
  .community-values {
    display: flex; flex-direction: column; gap: 2px;
  }
  .value-row {
    display: flex; gap: 20px; align-items: center;
    padding: 24px 28px;
    background: rgba(13,110,138,0.06);
    border: 1px solid rgba(13,110,138,0.12);
    transition: background 0.2s;
  }
  .value-row:hover { background: rgba(13,110,138,0.12); }
  .value-icon { font-size: 20px; min-width: 28px; }
  .value-text { font-size: 14px; color: var(--ice); line-height: 1.5; }
  .value-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 2px; }

  /* ── CTA BANNER ── */
  .cta-section {
    background: linear-gradient(135deg, #264a38 0%, var(--navy) 60%, #040D14 100%)
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    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;
	background:#000;
  }
  .cta-inner {
    max-width: 900px; margin: 0 auto;
    padding: 120px 48px; text-align: center;
    position: relative;
  }
  .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900; color: var(--white);
    line-height: 1.1; margin-bottom: 24px;
  }
  .cta-inner p {
    font-size: 18px; font-weight: 300;
    color: rgba(244,248,250,0.8);
    max-width: 560px; margin: 0 auto 48px;
    line-height: 1.6;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--white); color: var(--navy);
    padding: 18px 40px; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; letter-spacing: 1px;
    text-transform: uppercase; border: none;
    cursor: pointer; transition: all 0.2s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--ice); transform: translateY(-2px); }
  .btn-secondary {
    background: transparent; color: var(--white);
    padding: 18px 40px; font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(244,248,250,0.5);
    cursor: pointer; transition: all 0.2s;
    text-decoration: none; display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--white); }



  /* ── DIVIDER ── */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(13,110,138,0.3), transparent);
  }

  /* ── QUOTE BLOCK ── */
  .quote-block {
    border-left: 3px solid var(--teal2);
    padding: 24px 32px; margin: 40px 0;
    background: rgba(13,110,138,0.06);
  }
  .quote-block p {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-style: italic;
    color: var(--ice); line-height: 1.5;
  }
  .quote-block cite {
    display: block; margin-top: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 2px;
    color: var(--mid); font-style: normal;
    text-transform: uppercase;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow  { animation: fadeUp 0.6s ease 0.2s both; }
  .hero-heading  { animation: fadeUp 0.6s ease 0.35s both; }
  .hero-sub      { animation: fadeUp 0.6s ease 0.5s both; }
  .hero-tags     { animation: fadeUp 0.6s ease 0.65s both; }
  .hero-stats    { animation: fadeUp 0.6s ease 0.8s both; }

  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .section-inner { padding: 80px 24px; }
    .intro-grid, .product-grid, .sustain-grid,
    .community-grid, .future-grid { grid-template-columns: 1fr; gap: 32px; }
    .tech-grid, .climate-grid { grid-template-columns: 1fr; }
    .partner-types, .pages-grid { grid-template-columns: 1fr 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .hero { padding: 120px 24px 60px; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contract-row { grid-template-columns: 1fr; }
  }















/* Section Background */
section.tech-section,
section.product-section {
  background-color: #fff !important;
}

/* All text → Black */
section.tech-section *,
section.product-section * {
  color: #000 !important;
}

/* Titles → Orange */
section.tech-section .section-title,
section.tech-section .section-title .hl,
section.product-section .section-title,
section.product-section .section-title .hl {
  color: #ff712c !important;
}