:root {
    --ec-bg: #07100c;
    --ec-bg-deep: #040806;
    --ec-panel: #0c1711;
    --ec-panel-soft: #111f17;
    --ec-ink: #f6f7f2;
    --ec-ink-soft: #d3ddd5;
    --ec-muted: #8fa297;
    --ec-green: #25d366;
    --ec-green-light: #8cffb5;
    --ec-cyan: #78dcff;
    --ec-amber: #f2bd73;
    --ec-line: rgba(255, 255, 255, 0.11);
    --ec-line-green: rgba(37, 211, 102, 0.24);
    --ec-radius: 24px;
    --ec-radius-large: 36px;
    --ec-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

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

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--ec-bg);
    color: var(--ec-ink);
    font-family:
        'Work Sans',
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--ec-green);
    outline-offset: 4px;
}

.ec-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ec-eyebrow {
    color: var(--ec-green-light);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ec-heading-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    align-items: end;
    gap: clamp(36px, 8vw, 104px);
    margin-top: 18px;
}

.ec-heading-grid h2,
.ec-section-title {
    max-width: 820px;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 750;
    line-height: 1.01;
    letter-spacing: -0.055em;
}

.ec-heading-grid h2 span {
    color: var(--ec-green);
}

.ec-heading-grid > p {
    max-width: 520px;
    color: var(--ec-muted);
    font-size: clamp(17px, 2vw, 20px);
}

.ec-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.ec-button:hover {
    transform: translateY(-2px);
}

.ec-button-primary {
    border-color: var(--ec-green);
    background: var(--ec-green);
    color: #061009;
}

.ec-button-secondary {
    border-color: var(--ec-line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--ec-ink);
}

.ec-button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.ec-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 9vw, 128px) 0 clamp(88px, 11vw, 150px);
    background:
        radial-gradient(
            circle at 82% 24%,
            rgba(37, 211, 102, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 66% 70%,
            rgba(120, 220, 255, 0.08),
            transparent 28%
        ),
        var(--ec-bg);
}

.ec-hero::before {
    width: 720px;
    height: 720px;
    position: absolute;
    top: -360px;
    left: -260px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(255, 255, 255, 0.018),
        0 0 0 160px rgba(255, 255, 255, 0.012);
    content: '';
    pointer-events: none;
}

.ec-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
    align-items: center;
    gap: clamp(50px, 8vw, 112px);
}

.ec-hero-copy h1 {
    max-width: 760px;
    margin-top: 20px;
    font-size: clamp(51px, 7.4vw, 92px);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.ec-hero-copy h1 span {
    color: var(--ec-green);
}

.ec-hero-lead {
    max-width: 690px;
    margin-top: 30px;
    color: var(--ec-ink-soft);
    font-size: clamp(19px, 2.25vw, 24px);
    line-height: 1.48;
}

.ec-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.ec-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    color: var(--ec-muted);
    font-size: 13px;
    list-style: none;
}

.ec-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ec-trust-list li::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ec-green);
    box-shadow: 0 0 14px rgba(37, 211, 102, 0.72);
    content: '';
}

.ec-signal-lab {
    position: relative;
    margin: 0;
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius-large);
    padding: 22px;
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        rgba(8, 17, 12, 0.92);
    background-size: 28px 28px;
    box-shadow: var(--ec-shadow);
}

.ec-signal-lab::after {
    position: absolute;
    inset: 14% -8% -12% 18%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    filter: blur(70px);
    content: '';
}

.ec-signal-lab figcaption {
    margin-bottom: 14px;
    color: var(--ec-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-lab-status {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--ec-line);
    border-radius: 14px;
    padding: 0 13px;
    background: rgba(4, 8, 6, 0.72);
    color: var(--ec-muted);
    font-size: 11px;
}

.ec-lab-status strong {
    margin-left: auto;
    color: var(--ec-green-light);
    font-weight: 600;
}

@keyframes ecPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.78);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.ec-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ec-green);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.8);
    animation: ecPulse 1.6s ease-in-out infinite;
}

.ec-lab-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) 40px minmax(0, 1.08fr);
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.ec-input-group {
    display: grid;
    gap: 10px;
}

.ec-input-card,
.ec-output-card {
    border: 1px solid var(--ec-line);
    border-radius: 18px;
    background: rgba(15, 27, 20, 0.92);
}

.ec-input-card {
    padding: 14px;
}

.ec-card-label {
    color: var(--ec-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-input-card p {
    margin-top: 9px;
    color: var(--ec-ink-soft);
    font-size: 11px;
    line-height: 1.45;
}

.ec-wave {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 8px;
}

@keyframes ecWave {
    0%,
    100% {
        height: 5px;
        opacity: 0.42;
    }
    50% {
        height: 22px;
        opacity: 1;
    }
}

.ec-wave i {
    width: 3px;
    height: 8px;
    border-radius: 4px;
    background: var(--ec-cyan);
    animation: ecWave 1.2s ease-in-out infinite;
}

.ec-wave i:nth-child(2) {
    animation-delay: 0.08s;
}

.ec-wave i:nth-child(3) {
    animation-delay: 0.16s;
}

.ec-wave i:nth-child(4) {
    animation-delay: 0.24s;
}

.ec-wave i:nth-child(5) {
    animation-delay: 0.32s;
}

.ec-wave i:nth-child(6) {
    animation-delay: 0.4s;
}

.ec-wave i:nth-child(7) {
    animation-delay: 0.48s;
}

.ec-photo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.9fr;
    gap: 5px;
    margin-top: 10px;
}

.ec-photo-grid span {
    height: 34px;
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            rgba(242, 189, 115, 0.38),
            rgba(120, 220, 255, 0.08)
        ),
        #162119;
}

.ec-photo-grid span:nth-child(2) {
    background:
        linear-gradient(
            135deg,
            rgba(120, 220, 255, 0.34),
            rgba(37, 211, 102, 0.08)
        ),
        #162119;
}

.ec-transform {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--ec-green-light);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 9px;
    text-transform: uppercase;
}

.ec-transform i {
    width: 34px;
    height: 1px;
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--ec-line-green);
}

@keyframes ecTravel {
    from {
        transform: translateX(-14px);
    }
    to {
        transform: translateX(40px);
    }
}

.ec-transform i::after {
    width: 10px;
    height: 1px;
    position: absolute;
    background: var(--ec-green);
    box-shadow: 0 0 8px var(--ec-green);
    content: '';
    animation: ecTravel 1.5s linear infinite;
}

.ec-output-card {
    padding: 15px;
}

.ec-output-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.ec-output-head strong {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.ec-ready {
    border: 1px solid rgba(37, 211, 102, 0.28);
    border-radius: 999px;
    padding: 5px 8px;
    background: rgba(37, 211, 102, 0.08);
    color: var(--ec-green-light);
    font-size: 9px;
    font-weight: 700;
}

.ec-output-card dl {
    display: grid;
    gap: 7px;
    margin-top: 15px;
}

.ec-output-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--ec-line);
    padding-top: 7px;
    font-size: 10px;
}

.ec-output-card dt {
    color: var(--ec-muted);
}

.ec-output-card dd {
    color: var(--ec-ink-soft);
    text-align: right;
}

.ec-destination-choice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.ec-destination-choice span {
    min-height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ec-line-green);
    border-radius: 12px;
    background: rgba(37, 211, 102, 0.045);
    color: var(--ec-ink-soft);
    font-size: 10px;
    font-weight: 600;
    text-align: center;
}

.ec-problem,
.ec-transformation,
.ec-competition,
.ec-value,
.ec-measure,
.ec-pilot,
.ec-faq {
    padding: clamp(86px, 11vw, 150px) 0;
}

.ec-problem {
    border-top: 1px solid var(--ec-line);
    background: var(--ec-bg-deep);
}

.ec-friction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 60px;
}

.ec-friction-grid article {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    padding: 26px;
    background: var(--ec-panel);
}

.ec-friction-grid article::after {
    width: 130px;
    height: 130px;
    position: absolute;
    right: -60px;
    bottom: -70px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: '';
}

.ec-index {
    color: var(--ec-cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
}

.ec-friction-grid h3 {
    max-width: 260px;
    margin-top: 70px;
    font-size: 22px;
    letter-spacing: -0.025em;
}

.ec-friction-grid p {
    margin-top: 12px;
    color: var(--ec-muted);
}

.ec-transformation {
    background:
        radial-gradient(
            circle at 8% 50%,
            rgba(37, 211, 102, 0.08),
            transparent 24%
        ),
        var(--ec-bg);
}

.ec-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 70px;
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius-large);
    overflow: hidden;
    background: var(--ec-line);
    list-style: none;
}

.ec-flow li {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 70px;
    padding: 26px;
    background: var(--ec-panel);
}

.ec-flow-number {
    color: var(--ec-green);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
}

.ec-flow small {
    color: var(--ec-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-flow h3 {
    margin-top: 10px;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.ec-flow p {
    margin-top: 12px;
    color: var(--ec-muted);
    font-size: 14px;
}

.ec-competition {
    border-top: 1px solid var(--ec-line);
    border-bottom: 1px solid var(--ec-line);
    background: var(--ec-bg-deep);
}

.ec-compare {
    margin-top: 64px;
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    overflow: hidden;
    background: var(--ec-panel);
}

.ec-compare-head,
.ec-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    padding: 20px 28px;
}

.ec-compare-head {
    background: rgba(255, 255, 255, 0.035);
    color: var(--ec-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-compare-head strong {
    color: var(--ec-green-light);
}

.ec-compare-row {
    border-top: 1px solid var(--ec-line);
    color: var(--ec-muted);
}

.ec-compare-row strong {
    color: var(--ec-ink);
    font-weight: 650;
}

.ec-value {
    background: var(--ec-bg);
}

.ec-value .ec-section-title {
    margin-top: 18px;
}

.ec-value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 62px;
}

.ec-value-grid article {
    min-height: 280px;
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius);
    padding: 24px;
    background:
        linear-gradient(
            160deg,
            rgba(37, 211, 102, 0.045),
            transparent 54%
        ),
        var(--ec-panel);
}

.ec-value-signal {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--ec-line-green);
    border-radius: 50%;
    color: var(--ec-green-light);
    font-size: 22px;
}

.ec-value-grid h3 {
    margin-top: 58px;
    font-size: 21px;
    letter-spacing: -0.03em;
}

.ec-value-grid p {
    margin-top: 12px;
    color: var(--ec-muted);
}

.ec-measure {
    border-top: 1px solid var(--ec-line);
    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(120, 220, 255, 0.08),
            transparent 24%
        ),
        var(--ec-bg-deep);
}

.ec-measure-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    align-items: center;
    gap: clamp(48px, 9vw, 120px);
}

.ec-measure h2 {
    margin-top: 18px;
    font-size: clamp(38px, 5.2vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.ec-measure-grid > div:first-child > p:last-child {
    max-width: 540px;
    margin-top: 24px;
    color: var(--ec-muted);
    font-size: 18px;
}

.ec-scoreboard {
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius-large);
    padding: 24px;
    background:
        linear-gradient(
            140deg,
            rgba(120, 220, 255, 0.055),
            transparent 42%
        ),
        var(--ec-panel);
    box-shadow: var(--ec-shadow);
}

.ec-scoreboard-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--ec-muted);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.ec-scoreboard-head strong {
    color: var(--ec-cyan);
}

.ec-scoreboard dl {
    margin-top: 20px;
}

.ec-scoreboard dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--ec-line);
    padding: 18px 0;
}

.ec-scoreboard dt {
    color: var(--ec-ink-soft);
}

.ec-scoreboard dd {
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(37, 211, 102, 0.08);
    color: var(--ec-green-light);
    font-size: 12px;
    font-weight: 650;
}

.ec-proof-stamp {
    border-top: 1px solid var(--ec-line);
    padding-top: 18px;
    color: var(--ec-muted);
    font-size: 13px;
}

.ec-proof-stamp strong {
    display: block;
    margin-bottom: 7px;
    color: var(--ec-cyan);
}

.ec-proof-boundary {
    border-top: 1px solid var(--ec-line);
    padding-top: 20px;
}

.ec-proof-boundary strong {
    color: var(--ec-amber);
    font-size: 13px;
}

.ec-proof-boundary p {
    margin-top: 8px;
    color: var(--ec-muted);
    font-size: 13px;
}

.ec-proof-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--ec-green-light);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

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

.ec-pilot {
    background: var(--ec-bg);
}

.ec-pilot-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
    align-items: start;
    gap: clamp(50px, 10vw, 130px);
}

.ec-pilot-copy {
    position: sticky;
    top: 120px;
}

.ec-pilot-copy h2 {
    margin-top: 18px;
    font-size: clamp(42px, 5.5vw, 70px);
    line-height: 0.99;
    letter-spacing: -0.06em;
}

.ec-pilot-copy > p {
    margin-top: 24px;
    color: var(--ec-muted);
    font-size: 18px;
}

.ec-pilot-copy ul {
    display: grid;
    gap: 12px;
    margin-top: 30px;
    list-style: none;
}

.ec-pilot-copy li {
    display: flex;
    gap: 12px;
    color: var(--ec-ink-soft);
}

.ec-pilot-copy li::before {
    color: var(--ec-green);
    content: '✓';
    font-weight: 800;
}

.ec-pilot-note {
    border-left: 2px solid var(--ec-green);
    padding-left: 16px;
    font-size: 13px !important;
}

.ec-form-panel {
    border: 1px solid var(--ec-line);
    border-radius: var(--ec-radius-large);
    padding: clamp(24px, 4vw, 42px);
    background:
        linear-gradient(
            150deg,
            rgba(37, 211, 102, 0.075),
            transparent 34%
        ),
        var(--ec-panel);
    box-shadow: var(--ec-shadow);
}

.ec-form-head > span {
    color: var(--ec-green-light);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ec-form-head h3 {
    max-width: 560px;
    margin-top: 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.ec-form-head p {
    margin-top: 14px;
    color: var(--ec-muted);
    font-size: 13px;
}

#ec-prescriber-intake {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.ec-field {
    display: grid;
    gap: 8px;
}

.ec-field label {
    color: var(--ec-ink-soft);
    font-size: 13px;
    font-weight: 650;
}

.ec-field input,
.ec-field textarea {
    width: 100%;
    border: 1px solid var(--ec-line);
    border-radius: 14px;
    padding: 14px 15px;
    background: rgba(4, 8, 6, 0.62);
    color: var(--ec-ink);
}

.ec-field textarea {
    min-height: 120px;
    resize: vertical;
}

.ec-field input::placeholder,
.ec-field textarea::placeholder {
    color: #6f8377;
}

.ec-field input:focus,
.ec-field textarea:focus {
    border-color: var(--ec-green);
    outline: 2px solid rgba(37, 211, 102, 0.15);
}

.ec-honeypot {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ec-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ec-muted);
    font-size: 12px;
}

.ec-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    accent-color: var(--ec-green);
}

.ec-consent a {
    color: var(--ec-green-light);
}

.ec-submit {
    width: 100%;
    margin-top: 4px;
    cursor: pointer;
}

.ec-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.ec-form-status {
    min-height: 24px;
    color: var(--ec-muted);
    font-size: 13px;
}

.ec-form-status.success {
    color: var(--ec-green-light);
}

.ec-form-status.error {
    color: #ffaaa0;
}

.ec-faq {
    border-top: 1px solid var(--ec-line);
    background: var(--ec-bg-deep);
}

.ec-faq-grid {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    gap: clamp(48px, 9vw, 120px);
}

.ec-faq h2 {
    margin-top: 18px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.ec-faq-list details {
    border-top: 1px solid var(--ec-line);
    padding: 20px 0;
}

.ec-faq-list details:last-child {
    border-bottom: 1px solid var(--ec-line);
}

.ec-faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
}

.ec-faq-list details p {
    max-width: 650px;
    padding: 14px 34px 0 0;
    color: var(--ec-muted);
}

.ec-final {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--ec-line);
    padding: clamp(100px, 14vw, 190px) 0;
    background:
        radial-gradient(
            circle at 50% 108%,
            rgba(37, 211, 102, 0.22),
            transparent 38%
        ),
        var(--ec-bg);
    text-align: center;
}

.ec-final h2 {
    max-width: 920px;
    margin: 18px auto 0;
    font-size: clamp(45px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.ec-final p:not(.ec-eyebrow) {
    margin-top: 22px;
    color: var(--ec-muted);
    font-size: 19px;
}

.ec-final .ec-button {
    margin-top: 32px;
}

.ec-footer {
    border-top: 1px solid var(--ec-line);
    padding: 48px 0 24px;
    background: var(--ec-bg-deep);
}

.ec-footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.ec-footer-grid > div p {
    margin-top: 14px;
    color: var(--ec-muted);
    font-size: 13px;
}

.ec-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.ec-footer nav a {
    color: var(--ec-muted);
    font-size: 13px;
    text-decoration: none;
}

.ec-footer nav a:hover {
    color: var(--ec-green);
}

.ec-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    border-top: 1px solid var(--ec-line);
    padding-top: 20px;
    color: var(--ec-muted);
    font-size: 11px;
}

@media (max-width: 980px) {
    .ec-hero-grid,
    .ec-measure-grid,
    .ec-pilot-grid {
        grid-template-columns: 1fr;
    }

    .ec-signal-lab {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .ec-friction-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ec-flow,
    .ec-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ec-pilot-copy {
        position: static;
    }
}

@media (max-width: 768px) {
    .ec-heading-grid,
    .ec-faq-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ec-friction-grid,
    .ec-value-grid {
        grid-template-columns: 1fr;
    }

    .ec-flow {
        grid-template-columns: 1fr;
    }

    .ec-flow li {
        min-height: 230px;
        gap: 42px;
    }

    .ec-compare-head,
    .ec-compare-row {
        gap: 20px;
        padding: 18px;
        font-size: 14px;
    }

    .ec-footer-grid {
        display: grid;
    }

    .ec-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .ec-container {
        width: min(100% - 30px, 1180px);
    }

    .ec-hero {
        padding-top: 62px;
    }

    .ec-hero-copy h1 {
        font-size: clamp(45px, 14vw, 68px);
    }

    .ec-actions {
        display: grid;
    }

    .ec-button {
        width: 100%;
    }

    .ec-trust-list {
        display: grid;
    }

    .ec-lab-stage {
        grid-template-columns: 1fr;
    }

    .ec-transform {
        min-height: 36px;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .ec-transform i {
        width: 100%;
    }

    .ec-transform i::after {
        animation-name: ecTravelMobile;
    }

    .ec-destination-choice {
        grid-template-columns: 1fr;
    }

    .ec-friction-grid article,
    .ec-value-grid article {
        min-height: 230px;
    }

    .ec-friction-grid h3,
    .ec-value-grid h3 {
        margin-top: 42px;
    }

    .ec-compare-head,
    .ec-compare-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ec-compare-head span {
        display: none;
    }

    .ec-compare-row strong {
        padding-top: 8px;
        border-top: 1px solid rgba(37, 211, 102, 0.14);
    }

    .ec-scoreboard dl div {
        align-items: flex-start;
        flex-direction: column;
    }

    .ec-footer-bottom {
        display: grid;
    }
}

@keyframes ecTravelMobile {
    from {
        transform: translateX(-14px);
    }
    to {
        transform: translateX(300px);
    }
}

@media (max-width: 480px) {
    .ec-signal-lab,
    .ec-form-panel {
        border-radius: 24px;
        padding: 16px;
    }

    .ec-lab-status {
        align-items: flex-start;
        flex-wrap: wrap;
        padding-block: 10px;
    }

    .ec-lab-status strong {
        width: 100%;
        margin-left: 16px;
    }

    .ec-scoreboard {
        border-radius: 24px;
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ec-button {
        transition: none;
    }

    .ec-live-dot,
    .ec-wave i,
    .ec-transform i::after {
        animation: none;
    }
}
