:root {
    /* Color Palette */
    --navy: #0B1E63;
    --navy-deep: #0A1748;
    --cyan: #00AEEF;
    --cyan-deep: #0090C6;
    --bg: #F5F7FC;
    --white: #FFFFFF;

    --text-main: #0A1748;
    --text-muted: #5B6478;

    --border-color: rgba(10, 23, 72, 0.12);
    --border-strong: rgba(10, 23, 72, 0.22);

    --logo-icon-size: 44px;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

a {
    color: inherit;
}

/* Layout Utilities */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    letter-spacing: -0.5px;
    max-width: 700px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background: rgba(245, 247, 252, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--cyan);
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-mark {
    display: block;
    width: var(--logo-icon-size);
    height: var(--logo-icon-size);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.logo-mark-img {
    position: absolute;
    max-width: none;
    width: calc(var(--logo-icon-size) * 1.6586);
    height: calc(var(--logo-icon-size) * 1.74);
    left: calc(var(--logo-icon-size) * -0.3276);
    top: calc(var(--logo-icon-size) * -0.2667);
}

.logo-wordmark {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.3px;
    line-height: 1;
    white-space: nowrap;
}

.logo-uni {
    color: var(--navy);
}

.logo-pact {
    color: var(--cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--navy-deep);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.75rem 1.1rem;
    border-radius: 8px;
    min-height: 44px;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: rgba(11, 30, 99, 0.06);
}

.nav-student-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    min-height: 44px;
    padding: 0.75rem 0.25rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.nav-student-link:hover {
    color: var(--navy-deep);
}

.nav-student-link .ext-icon {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy-deep);
    transition: var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    background-color: var(--navy-deep);
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.6px);
    background-size: 24px 24px;
    padding-top: 5rem;
    padding-bottom: 6rem;
    border-bottom: 3px solid var(--cyan);
    overflow: hidden;
}

/* Glowing background orb */
.hero-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

/* Hero badge (replaces eyebrow) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 174, 239, 0.12);
    border: 1px solid rgba(0, 174, 239, 0.35);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.3);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(0, 174, 239, 0.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.hero-content .eyebrow {
    color: var(--cyan);
}

.headline {
    font-size: clamp(2.6rem, 4.6vw, 3.6rem);
    letter-spacing: -1.2px;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.15;
}

.sub-headline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.65;
}

.headline-mobile,
.sub-headline-mobile {
    display: none;
}

.headline-desktop,
.sub-headline-desktop {
    display: block;
}

/* Scope tags (replace scope-pill) */
.scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
}

.scope-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
}

.hero-actions .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

/* Hero proof panel */
.hero-proof {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 0.25rem;
    box-shadow: 0 24px 48px rgba(5, 12, 40, 0.28);
    overflow: hidden;
}

.hero-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--cyan);
}

.eyebrow-on-panel {
    margin-bottom: 1rem;
}

.hero-proof-id {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hero-proof-stat {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-proof-stat span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.35rem;
}

.hero-proof-caption {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-proof-rule {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 1.5rem;
}

.hero-proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-proof-mini-stat {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--navy-deep);
    margin-bottom: 0.2rem;
}

.hero-proof-mini-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero-proof-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cyan-deep);
    text-decoration: none;
}

.hero-proof-link:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 2.1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1.5px solid transparent;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
    border-width: 2px;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
}

.steps {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    background-image: radial-gradient(rgba(11, 30, 99, 0.09) 1.5px, transparent 1.6px);
    background-size: 26px 26px;
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.75rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
}

.step:nth-child(odd) .step-number {
    background: var(--navy);
    color: var(--white);
}

.step:nth-child(even) .step-number {
    background: var(--cyan);
    color: var(--navy-deep);
}

.step-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.step-body p {
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 0;
}

.outcomes {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 2.25rem 2rem;
    border-radius: 12px;
    background: var(--navy-deep);
    box-shadow: 0 20px 40px rgba(10, 23, 72, 0.18);
}

.outcome {
    text-align: center;
}

.outcome-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.5rem;
}

.outcome-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.outcome-rule {
    width: 1px;
    height: 48px;
    background: var(--cyan);
    opacity: 0.5;
}

/* Currently In The Pipeline */
.pipeline {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pipeline-intro {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 1.05rem;
    margin-bottom: 2.75rem;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 800px) {
    .pipeline-grid {
        grid-template-columns: 1fr;
    }
}

.pipeline-card {
    background: var(--white);
    border: 1.5px dashed var(--border-strong);
    border-radius: 12px;
    padding: 2.25rem;
}

.pipeline-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.25rem;
}

.pipeline-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    flex-shrink: 0;
}

.pipeline-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.pipeline-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* For Companies (expanded, primary conversion section) */
.company-section {
    position: relative;
    padding: 6rem 0;
    background: var(--navy-deep);
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.6px);
    background-size: 22px 22px;
    border-top: 3px solid var(--cyan);
    border-bottom: 3px solid var(--cyan);
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .company-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.company-pitch h2 {
    font-size: 2.25rem;
    color: var(--white);
}

.company-pitch > p {
    color: rgba(255, 255, 255, 0.68);
}

#companies-section .eyebrow {
    color: var(--cyan);
}

#companies-section .feature-list {
    border-top-color: rgba(255, 255, 255, 0.14);
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

#companies-section .feature-list li {
    color: rgba(255, 255, 255, 0.75);
}

#companies-section .form-container h4 {
    color: rgba(255, 255, 255, 0.6);
}

#companies-section .input-group label {
    color: rgba(255, 255, 255, 0.85);
}

#companies-section .input-group input,
#companies-section .input-group select {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

#companies-section .input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#companies-section .input-group input:focus,
#companies-section .input-group select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
}

#companies-section .select-wrapper::after {
    color: rgba(255, 255, 255, 0.6);
}

#companies-section .btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
}

#companies-section .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

/* Feature list */
.feature-list {
    list-style: none;
    margin: 2rem 0 2.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
}

/* Forms */
.form-container {
    margin-top: auto;
}

.form-container h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.optional-tag {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.input-group input,
.input-group select {
    width: 100%;
    min-height: 50px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.input-group input::placeholder {
    color: rgba(10, 23, 72, 0.35);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▾';
    font-size: 0.85rem;
    color: var(--text-muted);
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* Proof of Work */
.proof-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--navy);
    background-image: radial-gradient(rgba(0, 174, 239, 0.16) 1.5px, transparent 1.6px);
    background-size: 24px 24px;
    color: var(--white);
    border-bottom: 3px solid var(--cyan);
}

.proof-section .eyebrow {
    color: var(--cyan);
}

.proof-section .section-title {
    color: var(--white);
}

.proof-copy {
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 800px) {
    .stat-bar {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stat-bar {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.stat {
    padding-top: 1.25rem;
    border-top: 3px solid var(--cyan);
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 0.6rem;
}

.stat-unit {
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

/* Closing CTA */
.closing-cta {
    padding: 6rem 0;
}

.closing-cta-box {
    background: var(--navy-deep);
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.6px);
    background-size: 22px 22px;
    border-radius: 16px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(10, 23, 72, 0.18);
}

.closing-cta-box h2 {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 1.75rem;
}

.closing-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.closing-cta-box .btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
    border-color: var(--cyan);
}

.closing-cta-box .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

.closing-cta-email {
    display: inline-block;
    padding: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
}

.closing-cta-email:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 3rem 0 2.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-email {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-email:hover {
    color: var(--navy);
    text-decoration: underline;
}

.footer-credibility {
    margin-top: 1.75rem;
    color: rgba(10, 23, 72, 0.45);
    font-size: 0.75rem;
}

.footer-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-tag::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: var(--cyan);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        display: none;
    }

    .outcomes {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .outcome-rule {
        width: 48px;
        height: 1px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .navbar {
        height: 64px;
    }

    :root {
        --logo-icon-size: 36px;
    }

    .logo-wordmark {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 12px 24px rgba(10, 23, 72, 0.1);
        padding: 0.5rem;
        gap: 0.25rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease;
    }

    .nav-links.open {
        max-height: 220px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links .nav-btn {
        width: 100%;
        text-align: left;
        min-height: 48px;
        padding: 0.75rem 1rem;
    }

    .nav-links .nav-student-link {
        width: 100%;
        min-height: 48px;
        padding: 0.75rem 1rem;
        border-top: 1px solid var(--border-color);
    }

    .hero {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .hero-glow {
        width: 320px;
        height: 320px;
        top: -80px;
        right: -80px;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 1.25rem;
    }

    .headline {
        font-size: clamp(2.4rem, 9vw, 3rem);
        letter-spacing: -1px;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .sub-headline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.78);
    }

    .headline-desktop,
    .sub-headline-desktop {
        display: none;
    }

    .headline-mobile,
    .sub-headline-mobile {
        display: block;
    }

    .scope-tags {
        margin-bottom: 2rem;
        gap: 0.5rem;
    }

    .scope-tag {
        font-size: 0.78rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .how-it-works {
        padding: 4.5rem 0;
    }

    .step {
        grid-template-columns: 48px 1fr;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .outcomes {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .proof-section {
        padding: 4.5rem 0;
    }

    .proof-copy {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .pipeline {
        padding: 4.5rem 0;
    }

    .pipeline-grid {
        gap: 1.5rem;
    }

    .pipeline-card {
        padding: 1.75rem 1.5rem;
    }

    .company-section {
        padding: 4.5rem 0;
    }

    .company-grid {
        gap: 2.5rem;
    }

    .company-pitch h2 {
        font-size: 1.85rem;
    }

    .form-container {
        padding: 1.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .input-group {
        margin-bottom: 1.25rem;
    }

    .closing-cta {
        padding: 4.5rem 0 3.5rem;
    }

    .closing-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .closing-cta-box h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-credibility {
        margin-top: 2rem;
    }

    .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        width: 100%;
    }
}

@media (max-width: 380px) {
    .container {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .headline {
        font-size: 1.85rem;
    }
}
