:root {
    --bg: #f6f7f3;
    --surface: #ffffff;
    --surface-soft: #edf2eb;
    --ink: #111827;
    --ink-soft: #334155;
    --muted: #64748b;
    --line: #dbe3d8;
    --green: #073f35;
    --green-2: #0f594b;
    --green-soft: #e4eee8;
    --gold: #a8792e;
    --gold-soft: #f1e6cf;
    --danger: #b42318;
    --radius: 8px;
    --nav-h: 72px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --font-sans: 'Libre Franklin', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Source Serif 4', Georgia, serif;
}
:root[data-theme="dark"] {
    --bg: #07100e;
    --surface: #0d1b18;
    --surface-soft: #0a1714;
    --ink: #f4f7f2;
    --ink-soft: #d7e0da;
    --muted: #9eaca5;
    --line: rgba(255, 255, 255, 0.13);
    --green: #2a7c67;
    --green-2: #87b9a5;
    --green-soft: rgba(91, 141, 118, 0.2);
    --gold: #d3ad66;
    --gold-soft: rgba(211, 173, 102, 0.16);
    --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    background: var(--bg) !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    overflow-x: hidden;
}

body::selection {
    background: var(--green);
    color: #fff;
}

img,
canvas {
    max-width: 100%;
}

button,
a,
input,
select {
    font: inherit;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
}

.ambient-bg,
.hero-glow,
.scroll-progress {
    display: none !important;
}

/* Navigation */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(246, 247, 243, 0.96) !important;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.site-nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.site-nav .h-20 {
    height: var(--nav-h) !important;
}

.site-nav img,
.footer-brand img,
.hero-memo-logo {
    border-radius: 8px !important;
}

.font-display {
    font-family: var(--font-display) !important;
}

.site-nav .font-display {
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
}

.site-nav .text-xs {
    color: var(--muted) !important;
}

.nav-link,
.mobile-link {
    color: var(--ink-soft) !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: 0.45rem 0;
    transition: color 160ms ease, border-color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green) !important;
    border-bottom-color: var(--green);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
}

.mobile-menu {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
}

.mobile-menu .mobile-link {
    display: block;
    padding: 0.75rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--green) !important;
    border-color: var(--green) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: #052f28 !important;
    border-color: #052f28 !important;
}

.btn-soft {
    background: var(--surface) !important;
    border-color: #b8c5b3 !important;
    color: var(--green) !important;
}

.btn-soft:hover {
    background: var(--green-soft) !important;
    border-color: var(--green) !important;
}

/* Shared sections */
.section {
    background: var(--bg) !important;
}

.section-alt {
    background: var(--surface-soft) !important;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section.py-20,
.section-alt.py-20 {
    padding-top: clamp(4.5rem, 8vw, 7rem) !important;
    padding-bottom: clamp(4.5rem, 8vw, 7rem) !important;
}

.section-head {
    max-width: 760px;
    margin-bottom: 2rem;
    text-align: left;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    color: var(--green-2) !important;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
}

.kicker::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--gold);
}

.section-title {
    max-width: 760px;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: clamp(2rem, 3.2vw, 3.15rem) !important;
    font-weight: 800 !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
}

.section-sub {
    max-width: 680px;
    margin-top: 0.75rem;
    color: var(--muted) !important;
    font-size: 0.96rem;
    line-height: 1.65;
    text-wrap: pretty;
}

/* Hero */
.hero-clean {
    position: relative;
    background: var(--green) !important;
    color: #fff !important;
    padding-top: clamp(7rem, 10vw, 9.25rem) !important;
    padding-bottom: clamp(4.8rem, 8vw, 7.4rem) !important;
}

.hero-clean-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
    gap: clamp(3rem, 7vw, 6.5rem);
    align-items: center;
}

.hero-clean-copy {
    max-width: 700px;
}

.section-chip,
.badge-soft,
.phase-pill,
.ask-equity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.4rem 0.7rem;
    border: 1px solid #d8c391;
    border-radius: 999px;
    background: var(--gold-soft) !important;
    color: #664817 !important;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-clean .section-chip {
    margin-bottom: 1.2rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.dot {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: var(--gold);
}

.hero-clean .dot {
    background: #d6b56f;
}

.hero-title {
    max-width: 11ch !important;
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: clamp(3.45rem, 6vw, 5.65rem) !important;
    font-weight: 700 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
}

.hero-copy {
    max-width: 39rem;
    margin-top: 1.15rem;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: clamp(1.02rem, 1.2vw, 1.16rem) !important;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-actions .btn-primary {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--green) !important;
}

.hero-actions .btn-primary:hover {
    background: var(--gold-soft) !important;
    border-color: var(--gold-soft) !important;
}

.hero-actions .btn-soft {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.38) !important;
    color: #fff !important;
}

.hero-actions .btn-soft:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
}

.hero-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-top: 1.55rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.hero-proof-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.hero-proof-line span::before {
    content: "";
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: #d6b56f;
}

.hero-memo {
    overflow: hidden;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 10px;
}

.hero-memo-header {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 1.2rem 1.25rem;
    border-bottom: 1px solid #e5eadf;
}

.hero-memo-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border: 1px solid #d9e1d5;
}

.hero-memo-header p,
.hero-memo-body p {
    color: #657285 !important;
    font-size: 0.82rem;
    line-height: 1.55;
}

.hero-memo-header h2 {
    margin-top: 0.1rem;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: 1.2rem;
    font-weight: 800;
}

.hero-memo-body article {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5eadf;
}

.hero-memo-body article:last-child {
    border-bottom: 0;
}

.hero-memo-body article > span {
    display: none;
}

.hero-memo-body h3 {
    margin-bottom: 0.25rem;
    color: var(--ink) !important;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
}

/* Credibility */
#credibility {
    padding: 1rem 0 !important;
    background: #fff !important;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.55rem 0.8rem;
    border-right: 1px solid var(--line);
    color: var(--ink-soft) !important;
    font-size: 0.76rem;
    font-weight: 700;
}

.trust-bar-item:last-child {
    border-right: 0;
}

.icon,
.trust-bar-item .icon,
.footer-contact-item i {
    width: 16px;
    height: 16px;
    color: var(--green-2) !important;
}

/* Problem / answer */
#why-ihs .grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: clamp(2.4rem, 7vw, 6.8rem) !important;
    align-items: start !important;
}

#why-ihs .section-title {
    font-size: clamp(1.9rem, 2.8vw, 2.62rem) !important;
}

#why-ihs .badge-soft {
    background: #fff !important;
    border-color: var(--line) !important;
    color: var(--green) !important;
}

/* Social strip */
section.py-10 {
    background: var(--green) !important;
    padding: 1.65rem 0 !important;
    border: 0 !important;
}

section.py-10 .grid > div {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

section.py-10 .grid > div:last-child {
    border-right: 0;
}

section.py-10 p[style*="font-size: 1.5rem"] {
    color: #fff !important;
    font-family: var(--font-sans) !important;
    font-size: 1.42rem !important;
    font-weight: 800 !important;
}

section.py-10 p[style*="font-size: 11px"] {
    color: rgba(255, 255, 255, 0.68) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Cards / panels */
.glass-panel,
.metric-card,
.team-card,
.ask-roi-acc-item,
.ask-deal-row,
.ask-funds-dynamic,
.cta-panel,
.footer-contact-item,
.footer-form input,
.footer-form select {
    border-radius: var(--radius) !important;
    box-shadow: none !important;
}

.glass-panel,
.metric-card,
.team-card,
.ask-roi-acc-item,
.ask-deal-row,
.ask-funds-dynamic {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
}

.traction-metrics {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.traction-metrics .metric-card {
    min-height: 102px;
    padding: 1rem;
    border: 0 !important;
    border-right: 1px solid var(--line) !important;
    border-radius: 0 !important;
}

.traction-metrics .metric-card:last-child {
    border-right: 0 !important;
}

.metric-label {
    margin-bottom: 0.38rem;
    color: #5b685f !important;
    font-size: 0.72rem;
    font-weight: 800;
}

.metric-value {
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: clamp(1.32rem, 2vw, 1.86rem) !important;
    font-weight: 800 !important;
    line-height: 1.15;
}

#traction .glass-panel,
#projections .glass-panel {
    padding: 1.25rem !important;
}

.chart-wrap,
#tractionChart,
#projectionChart {
    min-height: 320px !important;
}

#projections .grid.lg\:grid-cols-3 {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr) !important;
    gap: 1.4rem !important;
}

#projections .space-y-3 {
    display: grid !important;
    gap: 0.7rem !important;
}

#projections .metric-card {
    min-height: 0;
    padding: 0.95rem 1rem !important;
}

#projections .metric-value {
    font-size: 1.35rem !important;
}

/* Ask */
#ask .grid.lg\:grid-cols-2 {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr) !important;
    gap: clamp(2rem, 5vw, 4.3rem) !important;
    align-items: start !important;
}

.ask-deal-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden;
    padding: 0 !important;
}

.ask-deal-item {
    padding: 0.95rem 0.8rem !important;
    text-align: center;
    border-right: 1px solid var(--line);
}

.ask-deal-item:last-of-type {
    border-right: 0;
}

.ask-deal-divider {
    display: none !important;
}

.ask-amount {
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: clamp(2rem, 3vw, 2.75rem) !important;
    font-weight: 800 !important;
}

.ask-amount-label,
.ask-roi-acc-subtitle,
.ask-fund-desc,
.ask-funds-total {
    color: var(--muted) !important;
}

.ask-roi-accordion {
    display: grid;
    gap: 0.55rem;
}

.ask-roi-acc-item {
    overflow: hidden;
}

.ask-roi-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.ask-roi-acc-year,
.ask-roi-acc-stat-value,
.ask-fund-label,
.ask-fund-amount,
.ask-deal-value {
    color: var(--ink) !important;
    font-weight: 800;
}

.ask-roi-acc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border-top: 1px solid var(--line);
}

.ask-roi-acc-stat {
    padding: 0.8rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.ask-roi-acc-stat:nth-child(even) {
    border-right: 0;
}

.ask-roi-acc-stat:nth-last-child(-n+2) {
    border-bottom: 0;
}

.ask-funds-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.ask-funds-dynamic {
    padding: 1rem;
}

.ask-fund-item {
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
}

.ask-fund-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.ask-fund-top,
.ask-fund-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.ask-fund-bottom {
    align-items: start;
}

.ask-fund-bar {
    height: 5px;
    margin: 0.55rem 0;
    overflow: hidden;
    border-radius: 999px;
    background: #dfe7dc;
}

.ask-fund-bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--green);
}

/* Team */
.team-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
}

.team-card {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 0.8rem !important;
    min-height: 124px;
    padding: 0.95rem !important;
    align-items: start;
}

.team-card img {
    width: 58px !important;
    height: 58px !important;
    object-fit: cover;
    border-radius: var(--radius) !important;
    border: 1px solid var(--line);
}

.team-card h3 {
    margin: 0.25rem 0 0.2rem;
    color: var(--ink) !important;
    font-size: 0.9rem !important;
    font-weight: 800;
    line-height: 1.18;
}

.team-card small {
    color: var(--muted) !important;
    font-size: 0.72rem;
    line-height: 1.42;
}

#team .glass-panel.mt-6 {
    padding: 1rem !important;
}

/* CTA */
.final-cta {
    padding-top: clamp(4.25rem, 8vw, 7rem) !important;
    padding-bottom: clamp(4.25rem, 8vw, 7rem) !important;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: 350px;
    padding: clamp(2.4rem, 5vw, 4.4rem) !important;
    background: var(--green) !important;
    border: 1px solid var(--green) !important;
    color: #fff !important;
}

.cta-panel h2 {
    max-width: 12ch;
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: clamp(2.25rem, 4.4vw, 3.75rem) !important;
    line-height: 1.03 !important;
}

.cta-panel p,
.cta-panel .text-xs {
    color: rgba(255, 255, 255, 0.78) !important;
}

.cta-panel > h2 {
    grid-row: 1 / span 3;
}

.cta-panel > p,
.cta-panel > div,
.cta-panel > .mt-4 {
    grid-column: 2;
}

.cta-panel .btn-primary {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--green) !important;
}

.cta-panel .btn-soft {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
    color: #fff !important;
}

/* Footer */
footer {
    background: #07100e !important;
    color: rgba(255, 255, 255, 0.76) !important;
    padding: 4rem 0 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.9fr) minmax(280px, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand .font-display,
footer h4 {
    color: #fff !important;
}

.footer-desc,
footer p,
.footer-bottom p {
    color: rgba(255, 255, 255, 0.68) !important;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.footer-badges span {
    display: inline-flex;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.7rem;
    font-weight: 700;
}

.footer-contact h4,
.footer-form h4 {
    margin-bottom: 1rem;
    color: #fff !important;
}

.footer-contact-items,
.footer-form form {
    display: grid;
    gap: 0.65rem;
}

.footer-contact-item,
.footer-form input,
.footer-form select {
    width: 100%;
    min-height: 42px;
    padding: 0 0.85rem;
    background: #0d1b18 !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.footer-contact-item span,
.footer-contact-item i {
    color: rgba(255, 255, 255, 0.84) !important;
}

footer .btn-soft {
    border-color: rgba(255, 255, 255, 0.28) !important;
    color: #fff !important;
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.54) !important;
}

.footer-form select option {
    background: #0d1b18;
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.74rem;
}

/* Modals / fixed controls */
#scroll-top {
    z-index: 45 !important;
    background: var(--green) !important;
    border-radius: var(--radius) !important;
    box-shadow: none !important;
}

#calendly-modal {
    z-index: 80 !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .traction-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .traction-metrics .metric-card:nth-child(3n) {
        border-right: 0 !important;
    }

    .traction-metrics .metric-card:nth-child(-n+3) {
        border-bottom: 1px solid var(--line) !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1023px) {
    .hero-clean-grid,
    #why-ihs .grid,
    #projections .grid.lg\:grid-cols-3,
    #ask .grid.lg\:grid-cols-2,
    .cta-panel,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        max-width: 11.5ch !important;
    }

    .trust-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-bar-item:nth-child(even) {
        border-right: 0;
    }

    .cta-panel > h2,
    .cta-panel > p,
    .cta-panel > div,
    .cta-panel > .mt-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .site-nav .h-20 {
        height: 66px !important;
    }

    .hero-clean {
        padding-top: 5.75rem !important;
        padding-bottom: 3.75rem !important;
    }

    .hero-title {
        font-size: clamp(2.85rem, 13vw, 4.05rem) !important;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-proof-line {
        display: grid;
        gap: 0.5rem;
    }

    .section.py-20,
    .section-alt.py-20,
    .final-cta {
        padding-top: 3.6rem !important;
        padding-bottom: 3.6rem !important;
    }

    .section-title {
        font-size: clamp(1.85rem, 8.5vw, 2.5rem) !important;
    }

    .trust-bar,
    .traction-metrics,
    .team-grid,
    .ask-deal-row {
        grid-template-columns: 1fr !important;
    }

    .trust-bar-item,
    .traction-metrics .metric-card,
    .ask-deal-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }

    .trust-bar-item:last-child,
    .traction-metrics .metric-card:last-child,
    .ask-deal-item:last-of-type {
        border-bottom: 0 !important;
    }

    .ask-roi-acc-grid,
    .ask-fund-top,
    .ask-fund-bottom {
        grid-template-columns: 1fr !important;
        display: grid;
    }

    .ask-roi-acc-stat,
    .ask-roi-acc-stat:nth-child(even) {
        border-right: 0;
    }

    .chart-wrap,
    #tractionChart,
    #projectionChart {
        min-height: 260px !important;
    }

    .cta-panel {
        padding: 2rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* === Layout correction pass === */
.max-w-7xl,
.max-w-6xl {
    max-width: 1220px !important;
}

.section-head,
#traction .section-head,
#projections .section-head,
#ask .section-head,
#team .section-head {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-clean-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr) !important;
    gap: clamp(3rem, 6vw, 6rem) !important;
}

.hero-clean-copy {
    max-width: 820px !important;
}

.hero-title {
    max-width: 13.8ch !important;
    font-size: clamp(3.7rem, 5.6vw, 5.9rem) !important;
    line-height: 1 !important;
}

.hero-copy {
    max-width: 50rem !important;
}

.hero-memo {
    max-width: 470px;
    justify-self: end;
}

.traction-metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    align-items: stretch;
}

.traction-metrics .metric-card {
    min-height: 124px !important;
    padding: 1.45rem 1.25rem !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.metric-label {
    margin-bottom: 0.55rem !important;
    line-height: 1.25;
}

.metric-value {
    line-height: 1.1 !important;
}

#traction .glass-panel,
#projections .glass-panel {
    max-width: 980px;
    margin-left: 0;
    margin-right: auto;
    padding: 1.35rem !important;
}

#traction .chart-wrap,
#tractionChart {
    min-height: 285px !important;
    max-height: 320px !important;
}

#projections .lg\:col-span-2.glass-panel {
    max-width: none;
}

#projectionChart {
    min-height: 340px !important;
    max-height: 380px !important;
}

#projections .grid.lg\:grid-cols-3 {
    grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.48fr) !important;
    max-width: 1080px;
    margin-left: 0;
    margin-right: auto;
}

#projections .space-y-3 {
    align-content: start;
}

#ask .grid.lg\:grid-cols-2 {
    max-width: 1120px;
    margin-left: 0;
    margin-right: auto;
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    align-items: stretch;
}

.team-card {
    display: flex !important;
    flex-direction: column;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.team-card img {
    width: 100% !important;
    height: 210px !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover;
    object-position: center top;
}

.team-card > div,
.team-card > span,
.team-card > h3,
.team-card > small {
    margin-left: 1rem;
    margin-right: 1rem;
}

.team-card > div {
    padding: 1rem 0 1.1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

.team-card > .badge-soft,
.team-card > h3,
.team-card > small {
    margin-left: 1rem;
    margin-right: 1rem;
}

.team-card > .badge-soft {
    margin-top: 1rem;
}

.team-card > small:last-child,
.team-card div small:last-child {
    margin-bottom: 1.1rem;
}

#team .glass-panel.mt-6 {
    margin-top: 1.2rem !important;
}

.final-cta .max-w-6xl {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.cta-panel {
    width: 100%;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    min-height: 380px;
    padding-left: max(2rem, calc((100vw - 1220px) / 2 + 2rem)) !important;
    padding-right: max(2rem, calc((100vw - 1220px) / 2 + 2rem)) !important;
}

.cta-panel h2 {
    max-width: 100% !important;
}

footer .footer-contact .btn-soft,
footer a.btn-soft[href*="Deck"],
footer a.btn-soft[href*="New-Deck"] {
    color: #8fd6bd !important;
    border-color: rgba(143, 214, 189, 0.45) !important;
}

footer .footer-contact .btn-soft:hover,
footer a.btn-soft[href*="Deck"]:hover,
footer a.btn-soft[href*="New-Deck"]:hover {
    background: rgba(143, 214, 189, 0.1) !important;
    border-color: rgba(143, 214, 189, 0.72) !important;
    color: #b7efd9 !important;
}

@media (max-width: 1180px) {
    .traction-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .traction-metrics .metric-card:nth-child(3n) {
        border-right: 0 !important;
    }

    .traction-metrics .metric-card:nth-child(-n+3) {
        border-bottom: 1px solid var(--line) !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1023px) {
    .hero-clean-grid,
    #projections .grid.lg\:grid-cols-3,
    #ask .grid.lg\:grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    .hero-title {
        max-width: 13ch !important;
    }

    .hero-memo {
        justify-self: stretch;
        max-width: none;
    }

    #traction .glass-panel,
    #projections .glass-panel,
    #projections .grid.lg\:grid-cols-3,
    #ask .grid.lg\:grid-cols-2 {
        max-width: none;
    }

    .cta-panel {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        max-width: 11.8ch !important;
        font-size: clamp(2.75rem, 12vw, 3.9rem) !important;
    }

    .traction-metrics,
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .traction-metrics .metric-card {
        align-items: center;
        text-align: center;
        border-right: 0 !important;
    }

    .team-card img {
        height: 260px !important;
    }

    .cta-panel {
        min-height: 0;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* === Projection section row alignment fix === */
#projections .grid.lg\:grid-cols-3 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 320px !important;
    gap: 1.25rem !important;
    align-items: stretch !important;
    max-width: 1120px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

#projections .lg\:col-span-2.glass-panel {
    grid-column: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

#projections .space-y-3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    align-content: stretch !important;
    height: 100%;
}

#projections .space-y-3 .metric-card {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1023px) {
    #projections .grid.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        max-width: none !important;
    }
}

/* === Previous-site content compatibility === */
.hero-section {
    background: var(--green) !important;
    color: #fff !important;
    padding-top: clamp(7rem, 10vw, 9.25rem) !important;
    padding-bottom: clamp(4.8rem, 8vw, 7.4rem) !important;
}

.hero-section > .max-w-7xl > .grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.88fr) !important;
    gap: clamp(3rem, 6vw, 6rem) !important;
    align-items: center !important;
}

.hero-section .section-chip {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.88) !important;
}

.hero-section .hero-title {
    max-width: 12.8ch !important;
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-size: clamp(3.45rem, 5.6vw, 5.55rem) !important;
    line-height: 1 !important;
}

.hero-section .hero-copy {
    max-width: 45rem !important;
    color: rgba(255, 255, 255, 0.76) !important;
}

.hero-stats-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden;
    max-width: 720px;
    margin: 1.5rem 0 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
}

.hero-stat-item {
    min-height: 112px;
    padding: 1.15rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid var(--line);
}

.hero-stat-item:last-child {
    border-right: 0;
}

.stat-value {
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: clamp(1.25rem, 1.8vw, 1.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.1;
}

.stat-label {
    margin-top: 0.45rem;
    color: var(--green-2) !important;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.35;
}

.founder-proof-bar {
    max-width: 720px;
    margin: 0 0 1.2rem;
    padding: 0.75rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.84rem;
    font-weight: 700;
}

.hero-visual {
    overflow: hidden;
    background: #fff !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    color: var(--ink);
}

.hero-visual-top,
.hero-visual-core,
.hero-visual-grid,
.hero-visual-stats {
    border-color: #e5eadf !important;
}

.hero-visual-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid #e5eadf;
}

.hero-visual-top h3,
.hero-visual-card p,
.hero-visual-stats strong {
    color: var(--ink) !important;
}

.hero-visual-top p,
.hero-visual-card span,
.hero-visual-core-copy,
.hero-visual-stats p {
    color: #657285 !important;
}

.hero-visual-core {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid #e5eadf;
}

.hero-visual-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.hero-visual-core-label {
    margin-bottom: 0.25rem;
    color: var(--green) !important;
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid #e5eadf;
}

.hero-visual-card {
    min-height: 96px;
    display: flex;
    gap: 0.7rem;
    padding: 1rem;
    border-right: 1px solid #e5eadf;
    border-bottom: 1px solid #e5eadf;
}

.hero-visual-card:nth-child(even) {
    border-right: 0;
}

.hero-visual-card:nth-last-child(-n+2) {
    border-bottom: 0;
}

.hero-visual-card p {
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.hero-visual-card span,
.hero-visual-core-copy {
    font-size: 0.82rem;
    line-height: 1.55;
}

.hero-visual-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-visual-stats div {
    padding: 1rem;
    border-right: 1px solid #e5eadf;
}

.hero-visual-stats div:last-child {
    border-right: 0;
}

.hero-visual-stats p {
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
}

.hero-visual-stats strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.25;
}

#team .glass-panel.mt-6 h3 {
    color: var(--ink) !important;
    font-size: 1.25rem !important;
    line-height: 1.25;
}

#team .glass-panel.mt-6 p:last-child {
    color: var(--muted) !important;
}

@media (max-width: 1023px) {
    .hero-section > .max-w-7xl > .grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .hero-stats-row,
    .hero-visual-grid,
    .hero-visual-stats {
        grid-template-columns: 1fr !important;
    }

    .hero-stat-item,
    .hero-visual-card,
    .hero-visual-stats div {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }

    .hero-stat-item:last-child,
    .hero-visual-card:last-child,
    .hero-visual-stats div:last-child {
        border-bottom: 0 !important;
    }
}

/* === Data update support === */
.metric-note {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

/* === Dark theme refinements === */
:root[data-theme="dark"] body,
:root[data-theme="dark"] .section {
    background: var(--bg) !important;
    color: var(--ink) !important;
}

:root[data-theme="dark"] .site-nav {
    background: rgba(7, 16, 14, 0.94) !important;
    border-bottom-color: var(--line) !important;
}

:root[data-theme="dark"] .mobile-menu,
:root[data-theme="dark"] .section-alt {
    background: var(--surface-soft) !important;
    border-color: var(--line) !important;
}

:root[data-theme="dark"] .site-nav .font-display,
:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4,
:root[data-theme="dark"] .metric-value,
:root[data-theme="dark"] .ask-amount,
:root[data-theme="dark"] .ask-roi-acc-year,
:root[data-theme="dark"] .ask-roi-acc-stat-value,
:root[data-theme="dark"] .ask-fund-label,
:root[data-theme="dark"] .ask-fund-amount,
:root[data-theme="dark"] .ask-deal-value,
:root[data-theme="dark"] .team-card h3,
:root[data-theme="dark"] #team .glass-panel.mt-6 h3 {
    color: var(--ink) !important;
}

:root[data-theme="dark"] .nav-link,
:root[data-theme="dark"] .mobile-link,
:root[data-theme="dark"] .site-nav .text-xs,
:root[data-theme="dark"] .text-ihs-muted,
:root[data-theme="dark"] .section-sub,
:root[data-theme="dark"] .metric-note,
:root[data-theme="dark"] .ask-amount-label,
:root[data-theme="dark"] .ask-roi-acc-subtitle,
:root[data-theme="dark"] .ask-fund-desc,
:root[data-theme="dark"] .ask-funds-total,
:root[data-theme="dark"] .team-card small,
:root[data-theme="dark"] #team .glass-panel.mt-6 p:last-child {
    color: var(--muted) !important;
}

:root[data-theme="dark"] .nav-link:hover,
:root[data-theme="dark"] .nav-link.active,
:root[data-theme="dark"] .metric-label,
:root[data-theme="dark"] .stat-label,
:root[data-theme="dark"] .hero-visual-core-label {
    color: var(--green-2) !important;
    border-bottom-color: var(--green-2) !important;
}

:root[data-theme="dark"] .icon-btn,
:root[data-theme="dark"] .btn-soft,
:root[data-theme="dark"] .glass-panel,
:root[data-theme="dark"] .metric-card,
:root[data-theme="dark"] .team-card,
:root[data-theme="dark"] .ask-roi-acc-item,
:root[data-theme="dark"] .ask-deal-row,
:root[data-theme="dark"] .ask-funds-dynamic,
:root[data-theme="dark"] .traction-metrics {
    background: var(--surface) !important;
    border-color: var(--line) !important;
    color: var(--ink) !important;
}

:root[data-theme="dark"] .btn-soft {
    color: var(--green-2) !important;
}

:root[data-theme="dark"] .btn-soft:hover {
    background: rgba(135, 185, 165, 0.12) !important;
    border-color: rgba(135, 185, 165, 0.45) !important;
}

:root[data-theme="dark"] .btn-primary {
    background: #2f8b72 !important;
    border-color: #2f8b72 !important;
    color: #ffffff !important;
}

:root[data-theme="dark"] .btn-primary:hover {
    background: #3c9d82 !important;
    border-color: #3c9d82 !important;
}

:root[data-theme="dark"] .hero-section {
    background: radial-gradient(circle at 18% 12%, rgba(211, 173, 102, 0.13), transparent 30%), #061411 !important;
}

:root[data-theme="dark"] .hero-stats-row,
:root[data-theme="dark"] .hero-visual {
    background: #0d1b18 !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: var(--ink) !important;
}

:root[data-theme="dark"] .hero-stat-item,
:root[data-theme="dark"] .hero-visual-top,
:root[data-theme="dark"] .hero-visual-core,
:root[data-theme="dark"] .hero-visual-grid,
:root[data-theme="dark"] .hero-visual-card,
:root[data-theme="dark"] .hero-visual-stats div,
:root[data-theme="dark"] .traction-metrics .metric-card,
:root[data-theme="dark"] .ask-deal-item,
:root[data-theme="dark"] .ask-roi-acc-grid,
:root[data-theme="dark"] .ask-roi-acc-stat,
:root[data-theme="dark"] .ask-fund-item {
    border-color: var(--line) !important;
}

:root[data-theme="dark"] .stat-value,
:root[data-theme="dark"] .hero-visual-top h3,
:root[data-theme="dark"] .hero-visual-card p,
:root[data-theme="dark"] .hero-visual-stats strong {
    color: var(--ink) !important;
}

:root[data-theme="dark"] .hero-visual-top p,
:root[data-theme="dark"] .hero-visual-card span,
:root[data-theme="dark"] .hero-visual-core-copy,
:root[data-theme="dark"] .hero-visual-stats p {
    color: var(--muted) !important;
}

:root[data-theme="dark"] .section-chip,
:root[data-theme="dark"] .badge-soft,
:root[data-theme="dark"] .footer-badges span {
    background: var(--gold-soft) !important;
    border-color: rgba(211, 173, 102, 0.28) !important;
    color: #e8d0a0 !important;
}

:root[data-theme="dark"] .ask-fund-bar {
    background: rgba(255, 255, 255, 0.1) !important;
}

:root[data-theme="dark"] .team-card img,
:root[data-theme="dark"] .hero-visual-logo {
    border-color: var(--line) !important;
}

:root[data-theme="dark"] .cta-panel {
    background: linear-gradient(135deg, #0f3d34 0%, #07100e 100%) !important;
    border-color: rgba(135, 185, 165, 0.26) !important;
}

:root[data-theme="dark"] .cta-panel .btn-primary {
    background: #f4f7f2 !important;
    border-color: #f4f7f2 !important;
    color: #073f35 !important;
}

:root[data-theme="dark"] .cta-panel .btn-soft {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.28) !important;
    color: #ffffff !important;
}

:root[data-theme="dark"] footer {
    background: #040b09 !important;
}

:root[data-theme="dark"] footer .btn-soft,
:root[data-theme="dark"] footer a.btn-soft[href*="Deck"],
:root[data-theme="dark"] footer a.btn-soft[href*="New-Deck"] {
    color: #87b9a5 !important;
}