* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --navy: #1E3268;
    --navy-deep: #131f45;
    --navy-mid: #253880;
    --navy-light: #2a4098;
    --sage: #8BA888;
    --sage-light: #b5cdb3;
    --sage-pale: #e8f0e8;
    --orange: #E8621A;
    --orange-light: #f0843e;
    --coral: #C94B2A;
    --blue-accent: #4A90C4;
    --blue-light: #d6eaf7;
    --white: #ffffff;
    --off-white: #f5f6fa;
    --text-muted: #5a6a8a;
    --text-light: #8a9ab8;
    --border: #d0d8ec;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(19, 31, 69, 0.97);
    backdrop-filter: blur(10px);
    padding: 0 2rem
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem
}

.nav-logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 50%
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.nav-logo-text .re {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.02em;
    font-weight: 400
}

.nav-logo-text .organic {
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    color: var(--sage);
    text-transform: uppercase;
    margin-top: 1px
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.2s
}

.nav-links a:hover {
    color: var(--white)
}

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.4rem 1.1rem !important;
    border-radius: 100px !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    transition: background 0.2s !important
}

.nav-cta:hover {
    background: var(--orange-light) !important
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden
}

.hero-orb1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 196, 0.12) 0%, transparent 70%);
    pointer-events: none
}

.hero-orb2 {
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 168, 136, 0.1) 0%, transparent 70%);
    pointer-events: none
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 168, 136, 0.15);
    border: 1px solid rgba(139, 168, 136, 0.3);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 2rem
}

.hero-badge span {
    font-size: 0.72rem;
    color: var(--sage-light);
    letter-spacing: 0.1em;
    text-transform: uppercase
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage)
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    font-weight: 600
}

.hero h1 em {
    color: var(--sage-light);
    font-style: italic
}

.hero h1 strong {
    color: var(--orange);
    font-style: normal
}

.hero p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin-bottom: 2.5rem;
    font-weight: 300
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.75rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s;
    display: inline-block
}

.btn-primary:hover {
    background: var(--orange-light)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.75rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
    transition: border-color 0.2s;
    display: inline-block
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.55)
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.25rem;
    letter-spacing: 0.04em
}

.hero-logo-display {
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-logo-ring {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(139, 168, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.hero-logo-ring::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(74, 144, 196, 0.15)
}

.hero-logo-ring img {
    width: 160px;
    height: 160px;
    object-fit: cover; /* This makes it fill the whole circle! */
    border-radius: 50%
}

/* TAGLINE STRIP */
.tagline-strip {
    background: var(--navy);
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(139, 168, 136, 0.2);
    border-bottom: 1px solid rgba(139, 168, 136, 0.2)
}

.tagline-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

.tagline-inner span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35)
}

.tagline-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
    opacity: 0.5
}

/* SECTIONS */
section {
    padding: 5.5rem 2rem
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
    font-weight: 600
}

.section-sub {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 580px;
    font-weight: 300
}

/* PROBLEM */
.problem-section {
    background: var(--off-white)
}

.problems-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.25rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange)
}

.problem-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--sage-pale);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    opacity: 0.8
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--navy)
}

.problem-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300
}

/* SOLUTION */
.solution-section {
    background: var(--white)
}

.solution-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3.5rem
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pillar-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 1.5
}

.pillar h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--navy)
}

.pillar p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300
}

.solution-visual {
    background: var(--navy-deep);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden
}

.sol-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem
}

.sol-header img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%
}

.sol-header-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 400
}

.cycle-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.cycle-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06)
}

.step-num-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0
}

.cycle-step span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300
}

/* HOW IT WORKS */
.how-section {
    background: var(--navy)
}

.how-steps {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden
}

.how-step {
    background: var(--navy);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background 0.2s
}

.how-step:hover {
    background: var(--navy-mid)
}

.how-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--sage);
    font-weight: 600;
    line-height: 1
}

.how-step p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-top: 0.6rem;
    font-weight: 300
}

/* TECH */
.tech-section {
    background: var(--white)
}

.tech-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem
}

.tech-features {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1rem;
    margin-top: 2rem
}

.tech-feat {
    background: var(--off-white);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border)
}

.tech-feat h4 {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.3rem
}

.tech-feat p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300
}

.device-mock {
    background: var(--navy-deep);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    overflow: hidden
}

.device-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.d-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.device-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 0.5rem;
    letter-spacing: 0.05em
}

.metric-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.metric-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45)
}

.metric-val {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white)
}

.metric-bar {
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 0.4rem
}

.metric-fill {
    height: 100%;
    border-radius: 2px
}

.alert-row {
    background: rgba(232, 98, 26, 0.1);
    border: 1px solid rgba(232, 98, 26, 0.25);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    display: flex;
    gap: 0.6rem;
    align-items: center
}

.alert-row span {
    font-size: 0.78rem;
    color: var(--orange-light)
}

/* IMPACT */
.impact-section {
    background: var(--off-white)
}

.impact-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.impact-card {
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent
}

.impact-card.env {
    background: var(--navy);
    border-color: var(--navy-mid)
}

.impact-card.eco {
    background: rgba(232, 98, 26, 0.06);
    border-color: rgba(232, 98, 26, 0.2)
}

.impact-card.soc {
    background: rgba(139, 168, 136, 0.1);
    border-color: rgba(139, 168, 136, 0.3)
}

.impact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.impact-card.env .impact-icon-wrap {
    background: rgba(139, 168, 136, 0.2)
}

.impact-card.eco .impact-icon-wrap {
    background: rgba(232, 98, 26, 0.12)
}

.impact-card.soc .impact-icon-wrap {
    background: rgba(139, 168, 136, 0.2)
}

.impact-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem
}

.impact-card.env h3 {
    color: var(--white)
}

.impact-card.eco h3, .impact-card.soc h3 {
    color: var(--navy)
}

.impact-card p {
    font-size: 0.84rem;
    line-height: 1.75;
    font-weight: 300
}

.impact-card.env p {
    color: rgba(255, 255, 255, 0.6)
}

.impact-card.eco p, .impact-card.soc p {
    color: var(--text-muted)
}

/* PILOT */
.pilot-section {
    background: var(--navy-deep)
}

.pilot-section .section-tag {
    color: var(--sage)
}

.pilot-section .section-title {
    color: var(--white)
}

.pilot-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start
}

.pilot-checks {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07)
}

.check-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(139, 168, 136, 0.2);
    border: 1px solid rgba(139, 168, 136, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.check-mark svg {
    width: 10px;
    height: 10px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 2.5
}

.check-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    font-weight: 300
}

.pilot-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.quote-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(139, 168, 136, 0.15)
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--sage);
    line-height: 0.8;
    margin-bottom: 0.75rem;
    opacity: 0.5
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 1.25rem;
    font-style: italic
}

.quote-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--white);
    font-weight: 500;
    font-style: normal
}

.quote-author span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4)
}

.pilot-nums {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 1rem
}

.pilot-num-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center
}

.pilot-num-card .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--orange);
    font-weight: 600;
    line-height: 1
}

.pilot-num-card .small {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.3rem
}

/* ROADMAP */
.roadmap-section {
    background: var(--white)
}

.roadmap-row {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden
}

.phase {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border)
}

.phase:last-child {
    border-right: none
}

.phase.active {
    background: var(--navy)
}

.phase-tag {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem
}

.phase.active .phase-tag {
    color: rgba(255, 255, 255, 0.35)
}

.phase-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.4rem
}

.phase.active .phase-name {
    color: var(--white)
}

.phase-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300
}

.phase.active .phase-detail {
    color: rgba(255, 255, 255, 0.45)
}

.phase-pill {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.68rem;
    padding: 0.22rem 0.65rem;
    border-radius: 100px;
    background: rgba(139, 168, 136, 0.12);
    color: var(--sage);
    border: 1px solid rgba(139, 168, 136, 0.25)
}

.phase.active .phase-pill {
    background: rgba(232, 98, 26, 0.15);
    color: var(--orange-light);
    border-color: rgba(232, 98, 26, 0.3)
}

/* PARTNERS */
.partners-section {
    background: var(--off-white)
}

.partner-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem
}

.partner-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid var(--border)
}

.partner-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.partner-card-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--sage-light);
    fill: none;
    stroke-width: 1.5
}

.partner-card h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem
}

.partner-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300
}

.partners-cta {
    text-align: center;
    margin-top: 3rem
}

/* TEAM */
.team-section {
    background: var(--navy-deep)
}

.team-section .section-tag {
    color: var(--sage)
}

.team-section .section-title {
    color: var(--white)
}

.team-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
    transition: background 0.2s
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.07)
}

.team-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--sage-light);
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(139, 168, 136, 0.25);
    font-weight: 600
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem
}

.team-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300
}

/* FINAL CTA */
.final-cta {
    background: var(--navy);
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden
}

.cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 196, 0.08) 0%, transparent 65%);
    pointer-events: none
}

.final-cta-inner {
    position: relative;
    z-index: 1
}

.final-cta img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: block;
    border: 1px solid rgba(139, 168, 136, 0.2)
}

.final-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--white);
    max-width: 620px;
    margin: 0 auto 1rem;
    line-height: 1.2;
    font-weight: 600
}

.final-cta p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 460px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

/* FOOTER */
footer {
    background: #0c1328;
    padding: 3.5rem 2rem 2rem
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap: 3rem
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem
}

.footer-brand-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%
}

.footer-brand-name .re {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--white);
    font-weight: 400
}

.footer-brand-name .org {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    color: var(--sage);
    text-transform: uppercase;
    display: block;
    margin-top: 1px
}

.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.7;
    font-weight: 300;
    max-width: 230px
}

.footer-col h5 {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 1rem
}

.footer-col a {
    display: block;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    font-weight: 300
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.85)
}

.footer-bottom {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300
}

@media (max-width: 800px) {
    .hero-inner {
        grid-template-columns:1fr
    }

    .hero-logo-display {
        display: none
    }

    .solution-grid, .tech-grid, .pilot-grid {
        grid-template-columns:1fr
    }

    .impact-grid {
        grid-template-columns:1fr
    }

    .roadmap-row {
        grid-template-columns:1fr
    }

    .phase {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .footer-inner {
        grid-template-columns:1fr
    }

    .nav-links {
        display: none
    }
}