/* ============================================================
    TOKENS
============================================================ */
:root {
    --teal-900: #071e1d;
    --teal-800: #0e2e2c;
    --teal-700: #1F5C59;
    --teal-600: #2a7370;
    --teal-500: #3d9490;
    --teal-300: #7ecfcc;
    --teal-100: #d4f0ee;
    --teal-50: #f0fafa;

    --purple: #C333F3;
    --purple-soft: rgba(195, 51, 243, .15);
    --cyan: #33C3F3;
    --cyan-soft: rgba(51, 195, 243, .12);
    --mint: #33F3C3;
    --mint-soft: rgba(51, 243, 195, .12);

    --surface: #ffffff;
    --bg: #f5f7f7;
    --dark: #061615;
    --dark-2: #0c2220;
    --border: rgba(31, 92, 89, .12);
    --border-light: rgba(255, 255, 255, .1);
    --text: #0d1f1e;
    --muted: #4a6a68;
    --subtle: #8aacaa;

    --font-display: 'Montserrat', 'Helvetica Neue', Helvetica, 'Roboto', Arial, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 600ms;

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 9999px;

    --shadow-card: 0 2px 24px rgba(7, 30, 29, .08), 0 1px 4px rgba(7, 30, 29, .04);
    --shadow-float: 0 20px 60px rgba(7, 30, 29, .14), 0 6px 20px rgba(7, 30, 29, .08);
    --shadow-glow-teal: 0 0 60px rgba(61, 148, 144, .25);
    --shadow-glow-purple: 0 0 60px rgba(195, 51, 243, .2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font: inherit;
    border: none;
    background: none;
}

/* ============================================================
    LAYOUT
============================================================ */
.wrap {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 28px;
}

/* ============================================================
    NAV
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 64px;
    display: flex;
    align-items: center;
    transition: background 400ms var(--ease-smooth), backdrop-filter 400ms;
}

.nav.scrolled {
    background: rgba(6, 22, 21, .82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav__inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 28px;
    gap: 32px;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.nav__logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-300);
    box-shadow: 0 0 12px var(--teal-300);
}

.nav__logo-img {
    width: 64px;
    height: auto;
    display: block;
    margin-right: 10px;
    align-self: center;
}

.nav__links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav__links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 0.02em;
    transition: color 200ms;
}

.nav__links a:hover {
    color: #fff;
}

.nav__cta {
    margin-left: 24px;
    padding: 8px 20px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--teal-700);
    color: #fff;
    border: 1px solid var(--teal-600);
    transition: background 200ms, transform 150ms;
    white-space: nowrap;
}

.nav__cta:hover {
    background: var(--teal-600);
    transform: translateY(-1px);
}

/* ============================================================
    HERO
============================================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

/* Noise texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Gradient mesh background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 40%, rgba(31, 92, 89, .55) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 90% 20%, rgba(195, 51, 243, .18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 60% 80%, rgba(51, 195, 243, .12) 0%, transparent 55%),
        linear-gradient(160deg, #061615 0%, #0c2220 40%, #071219 100%);
}

/* Grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(61, 148, 144, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 148, 144, .06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Animated orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orb-float 8s ease-in-out infinite;
    will-change: transform;
}

.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(31, 92, 89, .6) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-duration: 12s;
}

.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 51, 243, .25) 0%, transparent 70%);
    top: 10%;
    right: -80px;
    animation-duration: 10s;
    animation-delay: -3s;
}

.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(51, 195, 243, .2) 0%, transparent 70%);
    bottom: 10%;
    left: 30%;
    animation-duration: 14s;
    animation-delay: -6s;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.03);
    }

    66% {
        transform: translate(-15px, 15px) scale(0.97);
    }
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 28px 80px;
    max-width: 900px;
    margin-inline: auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--r-full);
    border: 1px solid rgba(61, 148, 144, .3);
    background: rgba(61, 148, 144, .1);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal-300);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    animation: fade-up 0.8s var(--ease-spring) both;
    user-select: none;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-300);
    box-shadow: 0 0 8px var(--teal-300);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 5rem);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 28px;
    animation: fade-up 0.9s var(--ease-spring) 0.1s both;
    line-height: 1.18;
    padding: 0 0.12em 0.14em 0;
    margin: 0 -0.06em -0.08em 0;
    overflow: visible;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.hero__headline em {
    display: inline-block;
    font-style: italic;
    background: linear-gradient(135deg, var(--teal-300) 0%, var(--cyan) 50%, var(--mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.1em;
}

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: 48px;
    animation: fade-up 1s var(--ease-spring) 0.2s both;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 1s var(--ease-spring) 0.3s both;
}

.btn-primary {
    padding: 14px 32px;
    border-radius: var(--r-full);
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(31, 92, 89, .4), inset 0 1px 0 rgba(255, 255, 255, .1);
    transition: transform 200ms var(--ease-spring), box-shadow 200ms;
    border: 1px solid rgba(61, 148, 144, .3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(31, 92, 89, .5), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.btn-ghost {
    padding: 14px 32px;
    border-radius: var(--r-full);
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .75);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    transition: background 200ms, color 200ms, transform 200ms;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fade-up 1s var(--ease-spring) 0.6s both;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* Floating pods visual */
.hero__pods {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.float-pod {
    position: absolute;
    border-radius: var(--r-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: var(--shadow-float);
    animation: pod-float linear infinite;
    will-change: transform;
}

.float-pod__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.float-pod--1 {
    background: rgba(31, 92, 89, .6);
    color: var(--teal-100);
    top: 18%;
    left: 5%;
    animation-duration: 7s;
    animation-delay: 0s;
}

.float-pod--2 {
    background: rgba(195, 51, 243, .25);
    color: rgba(255, 255, 255, .9);
    top: 28%;
    right: 4%;
    animation-duration: 9s;
    animation-delay: -2s;
}

.float-pod--3 {
    background: rgba(51, 195, 243, .2);
    color: rgba(255, 255, 255, .9);
    bottom: 28%;
    left: 4%;
    animation-duration: 8s;
    animation-delay: -4s;
}

.float-pod--4 {
    background: rgba(51, 243, 195, .18);
    color: rgba(255, 255, 255, .9);
    bottom: 22%;
    right: 6%;
    animation-duration: 10s;
    animation-delay: -1s;
}

@keyframes pod-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================================
    WHAT IS / PILLARS
============================================================ */
.pillars-section {
    padding: 140px 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}


.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-eyebrow__line {
    width: 32px;
    height: 1px;
    background: var(--teal-500);
}

.section-eyebrow__text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    user-select: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.section-title-dark {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}

.pillars-header {
    max-width: 600px;
    margin-bottom: 80px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pillar-card {
    padding: 40px 36px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    background: var(--bg);
    position: relative;
    overflow: hidden;
    transition: transform 400ms var(--ease-spring), box-shadow 400ms;
    cursor: default;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    opacity: 0;
    transition: opacity 400ms;
}

.pillar-card--teal::after {
    background: linear-gradient(90deg, var(--teal-700), var(--teal-300));
}

.pillar-card--purple::after {
    background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.pillar-card--mint::after {
    background: linear-gradient(90deg, var(--mint), var(--cyan));
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.pillar-card--teal .pillar-card__number {
    color: var(--teal-700);
    opacity: 0.3;
    user-select: none;
}

.pillar-card--purple .pillar-card__number {
    color: var(--purple);
    opacity: 0.25;
    user-select: none;
}

.pillar-card--mint .pillar-card__number {
    color: #0d7a5a;
    opacity: 0.3;
    user-select: none;
}

.pillar-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;

}

.pillar-card--teal .pillar-card__icon {
    background: var(--teal-100);
}

.pillar-card--purple .pillar-card__icon {
    background: rgba(195, 51, 243, .1);
}

.pillar-card--mint .pillar-card__icon {
    background: rgba(51, 243, 195, .15);
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text);
}

.pillar-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
}

/* ============================================================
    PROBLEM / SOLUTION
============================================================ */
.ps-section {
    padding: 140px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.ps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(31, 92, 89, .35) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 50%, rgba(195, 51, 243, .12) 0%, transparent 60%);
    pointer-events: none;
}

.ps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, rgba(31, 92, 89, .3) 0%, rgba(61, 148, 144, .15) 100%);
    ;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: background 200ms;
    user-select: none;
}

.problem-item:hover {
    background: rgba(255, 255, 255, .07);
}

.problem-item__x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(248, 113, 113, .15);
    border: 1px solid rgba(248, 113, 113, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: #f87171;
    font-weight: 700;
    margin-top: 1px;
}

.problem-item span {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.ps-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ps-solution-card {
    padding: 36px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, rgba(31, 92, 89, .3) 0%, rgba(61, 148, 144, .15) 100%);
    border: 1px solid rgba(61, 148, 144, .25);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.ps-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
    opacity: 0.6;
}

.ps-solution-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.ps-solution-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

.ps-badge {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: var(--r-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(51, 243, 195, .15);
    color: var(--mint);
    border: 1px solid rgba(51, 243, 195, .2);
    margin-bottom: 20px;
    user-select: none;
}

/* ============================================================
    FEATURED PODS
============================================================ */
.pods-section {
    padding: 140px 0;
    background: var(--bg);
    position: relative;
}

.pods-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pods-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 32px;
    flex-wrap: wrap;
}

.pods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pod-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 400ms var(--ease-spring), box-shadow 400ms;
    cursor: pointer;
}

.pod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pod-card--purple::before {
    background: linear-gradient(90deg, var(--purple), rgba(195, 51, 243, .3));
}

.pod-card--teal::before {
    background: linear-gradient(90deg, var(--teal-700), var(--teal-300));
}

.pod-card--cyan::before {
    background: linear-gradient(90deg, var(--cyan), rgba(51, 195, 243, .3));
}

.pod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
}

/* Glow on hover */
.pod-card--purple:hover {
    box-shadow: 0 24px 60px rgba(195, 51, 243, .12), 0 8px 20px rgba(0, 0, 0, .08);
}

.pod-card--teal:hover {
    box-shadow: 0 24px 60px rgba(31, 92, 89, .16), 0 8px 20px rgba(0, 0, 0, .08);
}

.pod-card--cyan:hover {
    box-shadow: 0 24px 60px rgba(51, 195, 243, .12), 0 8px 20px rgba(0, 0, 0, .08);
}

.pod-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pod-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pod-card--purple .pod-card__icon {
    background: rgba(195, 51, 243, .1);
}

.pod-card--teal .pod-card__icon {
    background: var(--teal-100);
}

.pod-card--cyan .pod-card__icon {
    background: rgba(51, 195, 243, .1);
}

.pod-status {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-full);
    letter-spacing: 0.04em;
}

.pod-status--active {
    background: rgba(51, 243, 195, .12);
    color: #0d7a5a;
    border: 1px solid rgba(51, 243, 195, .2);
}

.pod-status--soon {
    background: rgba(251, 191, 36, .1);
    color: #92400e;
    border: 1px solid rgba(251, 191, 36, .2);
}

.pod-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.pod-card p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
}

.pod-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pod-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--muted);
}

.pod-card__features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal-100);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%231F5C59' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
}

.pods-footer {
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--teal-700);
    border: 1.5px solid var(--teal-700);
    background: transparent;
    transition: background 200ms, transform 200ms, box-shadow 200ms;
}

.btn-outline:hover {
    background: var(--teal-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(31, 92, 89, .15);
}

.btn-outline svg {
    transition: transform 200ms;
}

.btn-outline:hover svg {
    transform: translateX(3px);
}

/* ============================================================
    INLINE STYLE REPLACEMENTS
============================================================ */
#nav .nav__cta {
    margin-right: 8px;
}

.float-pod--1 .float-pod__icon {
    background: rgba(61, 148, 144, .3);
}

.float-pod--2 .float-pod__icon {
    background: rgba(195, 51, 243, .3);
}

.float-pod--3 .float-pod__icon {
    background: rgba(51, 195, 243, .3);
}

.float-pod--4 .float-pod__icon {
    background: rgba(51, 243, 195, .3);
}

.header-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#problema .section-eyebrow__line {
    background: rgba(61, 148, 144, .5);
}

#problema .section-eyebrow__text {
    color: var(--teal-300);
}

.ps-right > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ps-right > div:last-child > div {
    padding: 24px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(31, 92, 89, .3) 0%, rgba(61, 148, 144, .15) 100%);
    border: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
}

.ps-right > div:last-child > div > div:first-child {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 6px;
    user-select: none;
}

.ps-right > div:last-child > div:first-child > div:first-child {
    color: var(--teal-300);
}

.ps-right > div:last-child > div:last-child > div:first-child {
    color: var(--purple);
}

.ps-right > div:last-child > div > div:last-child {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

#pods .section-title-dark {
    margin-bottom: 0;
}

#pods .pods-header > .btn-outline {
    flex-shrink: 0;
}

#pods .pod-card .btn-outline {
    margin-top: auto;
    font-size: 0.8rem;
    padding: 8px 16px;
}

#sobre {
    padding-top: 80px;
    padding-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

#sobre .pillars-header--wide {
    max-width: 720px;
}

#sobre .pillars-header--faq {
    max-width: 600px;
    margin-bottom: 40px;
}

#sobre .section-title--sm {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.about-card {
    padding: 36px;
    background: var(--teal-800);
}

.about-card > div:first-child {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.about-card > div:first-child > div {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-card > div:first-child h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #fff;
}

.about-card p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin: 0 0 14px;
}

.about-card span {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin: 0 0 14px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.about-card a {
    text-decoration: none;
    font-weight: 600;
}

.about-card--teal > div:first-child > div {
    background: rgba(61, 148, 144, .2);
}

.about-card--purple > div:first-child > div {
    background: rgba(195, 51, 243, .15);
}

.about-card--mint > div:first-child > div {
    background: rgba(51, 243, 195, .12);
}

.about-card--intro strong,
.about-card--intro a {
    color: var(--teal-300);
}

.about-card--purple strong {
    color: var(--purple);
}

.about-card--mint ul {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-card--mint li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.about-card--mint li:last-child {
    margin-bottom: 0;
}

.about-card--mint li > span:first-child {
    color: #33F3C3;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-card--trust strong,
.about-card--mint strong {
    color: #fff;
}

.faq-section {
    margin-top: 64px;
    margin-bottom: 80px;
}

#faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--teal-800);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
}

.faq-item summary {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

.faq-item a {
    color: var(--teal-300);
    text-decoration: none;
    font-weight: 600;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform .25s;
}

.cta-badge--static {
    animation: none;
}

.cta-primary {
    padding: 16px 44px;
    font-size: 1rem;
}

.footer__logo-large {
    font-size: 1.3rem;
}

/* ============================================================
    MARQUEE / LOGOS STRIP
============================================================ */
.marquee-section {
    padding: 48px 0;
    background: var(--dark-2);
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    user-select: none;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 24s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-item svg {
    opacity: 0.4;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal-500);
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
    CTA FINAL
============================================================ */
.cta-section {
    padding: 160px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(31, 92, 89, .4) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(195, 51, 243, .1) 0%, transparent 55%);
    pointer-events: none;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 680px;
}

.cta-section p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    max-width: 440px;
    line-height: 1.6;
}

.cta-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .3);
}

/* ============================================================
    FOOTER
============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 64px 0 32px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__brand p {
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .35);
    max-width: 260px;
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    gap: 64px;
}

.footer__col h4 {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, .5);
    transition: color 150ms;
}

.footer__col a:hover {
    color: #fff;
}

.footer__bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, .2);
}

.footer__bottom a {
    color: rgba(255, 255, 255, .35);
    transition: color 150ms;
}

.footer__bottom a:hover {
    color: rgba(255, 255, 255, .6);
}

/* ============================================================
    ANIMATIONS
============================================================ */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

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

    .nav__links,
    .nav__cta {
        display: none;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pods-grid {
        grid-template-columns: 1fr;
    }

    .float-pod {
        display: none;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__nav {
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .pods-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero__ctas a {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .nav__logo-img {
        width: 40px;
        user-select: none;
    }
}

/* ============================================================
    SCROLLBAR
============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--teal-800);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--teal-700);
}

/* ============================================================
    REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* FAQ chevron rotation */
details[open] .faq-chevron {
    transform: rotate(180deg);
}

/* About grid: 1 coluna em mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Cards da seção #sobre: forçar texto claro sobre fundo escuro */
/* #sobre .pillar-card h3 .section-title {
    color: #ffffff;
} */

/* #sobre .pillar-card p,
.section-sub {
    color: rgba(255, 255, 255, .72);
} */