:root {
    --background: #f5fbfb;
    --surface: rgba(255, 255, 255, 0.76);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --white: #ffffff;

    --ink: #102425;
    --muted: #66797a;
    --line: rgba(7, 93, 96, 0.12);

    --evos-teal: #00b9be;
    --evos-teal-bright: #20d6da;
    --evos-teal-dark: #087e82;
    --evos-teal-deep: #075d60;
    --evos-teal-soft: #dff6f5;
    --evos-teal-pale: #eefafa;

    --dark: #102526;
    --dark-soft: #17393b;

    --shadow-small:
        0 12px 30px rgba(8, 77, 79, 0.08);

    --shadow-medium:
        0 25px 70px rgba(8, 77, 79, 0.14);

    --shadow-large:
        0 55px 130px rgba(5, 54, 56, 0.22);

    --radius-small: 18px;
    --radius-medium: 28px;
    --radius-large: 42px;
    --radius-xl: 58px;

    --page-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(32, 214, 218, 0.12),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 86%,
            rgba(0, 185, 190, 0.08),
            transparent 28%
        ),
        var(--background);

    font-family:
        "DM Sans",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

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

.section-shell,
.hero-inner,
.nav-shell,
.footer-shell {
    width: min(calc(100% - 48px), var(--page-width));
    margin-inline: auto;
}

.narrow-shell {
    max-width: 930px;
}

.section-label,
.eyebrow,
.evos-platform-label,
.evos-platform-card-label,
.evos-price-label {
    margin: 0 0 18px;
    color: var(--evos-teal-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.2;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h2 {
    margin-bottom: 30px;
    font-size: clamp(3rem, 5.2vw, 5.7rem);
    font-weight: 680;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.primary-button,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 58px;
    padding: 0 26px;
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--evos-teal-bright),
            var(--evos-teal) 46%,
            var(--evos-teal-dark)
        );

    border: 1px solid rgba(0, 185, 190, 0.24);
    border-radius: 999px;

    box-shadow:
        0 14px 36px rgba(8, 126, 130, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);

    font-size: 0.95rem;
    font-weight: 700;

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.primary-button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
    filter: saturate(1.08) brightness(1.03);

    box-shadow:
        0 20px 44px rgba(8, 126, 130, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.primary-button span {
    color: #dcffff;
    font-size: 1.15rem;
}

.large-button {
    min-height: 64px;
    padding-inline: 34px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #496264;
    font-size: 0.9rem;
    font-weight: 680;
}

.text-link span {
    color: var(--evos-teal-dark);
}

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
}

.nav-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 92px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 12px;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.evos-brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--evos-teal-bright),
            var(--evos-teal-dark)
        );

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 14px;

    box-shadow:
        0 12px 28px rgba(8, 126, 130, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);

    font-size: 1.15rem;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav a {
    color: rgba(16, 36, 37, 0.66);
    font-size: 0.88rem;
    font-weight: 620;
    transition: color 160ms ease;
}

.main-nav a:hover {
    color: var(--evos-teal-dark);
}

.nav-cta {
    justify-self: end;
    min-height: 44px;
    padding: 0 20px;
    gap: 10px;
    font-size: 0.82rem;
}

.hero {
    position: relative;
    min-height: 940px;
    padding: 190px 0 120px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1500px, 100%);
    height: 760px;
    transform: translateX(-50%);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0)
        );

    border-radius: 0 0 50% 50%;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    pointer-events: none;
}

.hero-glow-one {
    top: 60px;
    right: -180px;
    width: 640px;
    height: 640px;

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 218, 0.28),
            rgba(32, 214, 218, 0)
        );
}

.hero-glow-two {
    bottom: -220px;
    left: -170px;
    width: 560px;
    height: 560px;

    background:
        radial-gradient(
            circle,
            rgba(0, 185, 190, 0.18),
            rgba(0, 185, 190, 0)
        );
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
    align-items: center;
    gap: 72px;
}

.hero-copy {
    padding-bottom: 45px;
}

.hero h1 {
    margin-bottom: 34px;
    font-size: clamp(4.2rem, 7vw, 7.25rem);
    font-weight: 700;
    letter-spacing: -0.078em;
    line-height: 0.88;
}

.hero h1 span,
.evos-intro h2 span,
.final-cta-teal {
    display: inline-block;
    color: transparent;

    background:
        linear-gradient(
            100deg,
            var(--evos-teal-dark),
            var(--evos-teal-bright) 48%,
            var(--evos-teal-dark)
        );

    background-clip: text;
    -webkit-background-clip: text;
}

.hero-description {
    max-width: 570px;
    margin-bottom: 38px;
    font-size: 1.13rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-visual {
    position: relative;
    min-width: 0;
    padding: 64px 0 86px;
}

.visual-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(0, 185, 190, 0.14);
    border-radius: 50%;
}

.orbit-one {
    top: 7%;
    left: 3%;
    width: 650px;
    height: 650px;
}

.orbit-two {
    top: 18%;
    left: 13%;
    width: 520px;
    height: 520px;
}

.browser-frame {
    position: relative;
    z-index: 3;
    width: 730px;
    max-width: 100%;
    margin-left: auto;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 26px;

    box-shadow:
        var(--shadow-large),
        0 0 0 1px rgba(8, 126, 130, 0.08);

    transform:
        perspective(1600px)
        rotateY(-5deg)
        rotateX(1.5deg);
}

.browser-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 50px;
    padding: 0 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.99),
            rgba(239, 249, 249, 0.98)
        );

    border-bottom: 1px solid rgba(8, 126, 130, 0.08);
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots span {
    width: 9px;
    height: 9px;
    background: #c8dddd;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff625f;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28c840;
}

.browser-address {
    padding: 6px 38px;
    color: #6c8384;
    background: rgba(222, 239, 239, 0.72);
    border: 1px solid rgba(8, 126, 130, 0.05);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.02em;
}

.browser-spacer {
    min-width: 45px;
}

.browser-screen {
    aspect-ratio: 16 / 10;
    overflow: hidden;

    background:
        linear-gradient(
            155deg,
            #f8fefe,
            #eaf7f7
        );
}

.evos-chat-preview {
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.evos-chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(231, 248, 248, 0.92)
        );

    border-bottom: 1px solid rgba(8, 126, 130, 0.1);
}

.evos-chat-avatar,
.evos-demo-icon,
.evos-final-mark {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--evos-teal-bright),
            var(--evos-teal-dark)
        );

    box-shadow:
        0 14px 30px rgba(8, 126, 130, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);

    font-weight: 800;
}

.evos-chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 13px;
}

.evos-chat-header strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 0.82rem;
}

.evos-chat-header small {
    display: block;
    color: #718889;
    font-size: 0.64rem;
}

.evos-online-dot {
    width: 10px;
    height: 10px;
    margin-left: auto;
    background: #29d69f;
    border: 3px solid #dff9ef;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(41, 214, 159, 0.56);
}

.evos-chat-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 13px;
    padding: 26px;
}

.evos-message {
    max-width: 76%;
    padding: 12px 15px;
    border-radius: 16px;
    font-size: 0.76rem;
    line-height: 1.5;
}

.customer-message {
    align-self: flex-end;
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--evos-teal),
            var(--evos-teal-dark)
        );

    border-bottom-right-radius: 5px;
    box-shadow: 0 10px 24px rgba(8, 126, 130, 0.16);
}

.ai-message {
    align-self: flex-start;
    color: #2a4142;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(8, 126, 130, 0.1);
    border-bottom-left-radius: 5px;
    box-shadow: 0 9px 22px rgba(8, 77, 79, 0.06);
}

.evos-chat-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 20px 20px;
    padding: 10px 10px 10px 16px;
    color: #7e9091;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(8, 126, 130, 0.12);
    border-radius: 16px;

    box-shadow:
        0 12px 28px rgba(8, 77, 79, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);

    font-size: 0.7rem;
}

.evos-chat-input span {
    flex: 1;
}

.evos-chat-input button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            var(--evos-teal-bright),
            var(--evos-teal-dark)
        );

    border: 0;
    border-radius: 11px;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 235px;
    padding: 15px 18px;

    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 17px;

    box-shadow:
        0 22px 52px rgba(8, 77, 79, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(24px);
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    margin-bottom: 4px;
    color: #183536;
    font-size: 0.77rem;
    font-weight: 750;
}

.floating-card small {
    color: #7b8f90;
    font-size: 0.64rem;
}

.floating-card-top {
    top: 18px;
    right: 35px;
}

.floating-card-bottom {
    bottom: 28px;
    left: 5px;
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--evos-teal-bright),
            var(--evos-teal-dark)
        );

    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(8, 126, 130, 0.18);
}

.status-dot {
    width: 11px;
    height: 11px;
    background: #2fd6a1;
    border: 3px solid #e4f8f1;
    border-radius: 50%;
}

.intro-section {
    padding: 120px 0 170px;
    text-align: center;
}

.evos-intro {
    position: relative;
}

.evos-intro::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    width: min(860px, 90%);
    height: 420px;
    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(32, 214, 218, 0.12),
            transparent 70%
        );

    filter: blur(10px);
    pointer-events: none;
}

.intro-section .section-shell {
    position: relative;
    z-index: 2;
}

.intro-section h2 {
    font-size: clamp(3.6rem, 6.5vw, 7rem);
}

.section-intro {
    max-width: 710px;
    margin: 0 auto;
    font-size: 1.18rem;
}

.evos-platform-section {
    padding: 120px 0 150px;
}

.evos-platform-shell {
    width: min(calc(100% - 48px), var(--page-width));
    margin-inline: auto;
}

.evos-platform-heading {
    max-width: 860px;
    margin-bottom: 70px;
}

.evos-platform-heading h2 {
    margin-bottom: 26px;
    font-size: clamp(3.5rem, 6vw, 6.4rem);
}

.evos-platform-heading > p:last-child {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.evos-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 70px;
}

.evos-capability {
    position: relative;
    min-height: 235px;
    padding: 28px 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.82),
            rgba(239, 250, 250, 0.68)
        );

    border: 1px solid rgba(8, 126, 130, 0.1);
    border-radius: 24px;

    box-shadow:
        0 16px 36px rgba(8, 77, 79, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(16px);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.evos-capability:hover {
    transform: translateY(-5px);

    box-shadow:
        0 26px 54px rgba(8, 77, 79, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.evos-capability strong {
    display: block;
    margin-bottom: 38px;
    color: var(--evos-teal-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.evos-capability h3 {
    margin-bottom: 11px;
    color: #173536;
    font-size: 1.3rem;
    font-weight: 720;
    letter-spacing: -0.035em;
}

.evos-capability span {
    display: block;
    color: #6b8081;
    font-size: 0.84rem;
    line-height: 1.58;
}

.evos-platform-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.evos-platform-card {
    position: relative;
    min-height: 510px;
    padding: 50px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf8f8
        );

    border: 1px solid rgba(8, 126, 130, 0.1);
    border-radius: var(--radius-large);

    box-shadow:
        0 32px 78px rgba(8, 77, 79, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    overflow: hidden;
}

.evos-platform-card::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -180px;
    width: 440px;
    height: 440px;

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 218, 0.16),
            transparent 68%
        );

    border-radius: 50%;
}

.evos-platform-card-heading,
.evos-platform-list,
.evos-platform-badge {
    position: relative;
    z-index: 2;
}

.evos-platform-card-heading h3 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.evos-platform-card-heading > p:last-child {
    max-width: 520px;
}

.evos-platform-list {
    display: grid;
    gap: 13px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.evos-platform-list li {
    position: relative;
    padding-left: 28px;
    color: #4e6869;
    font-size: 0.9rem;
    font-weight: 600;
}

.evos-platform-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: #ffffff;
    background: var(--evos-teal-dark);
    border-radius: 50%;
    font-size: 0.62rem;
    font-weight: 900;
}

.evos-platform-card-teal {
    color: #ffffff;

    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(32, 214, 218, 0.28),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #0b676b,
            #075d60 48%,
            #063f42
        );

    border-color: rgba(255, 255, 255, 0.1);

    box-shadow:
        0 38px 86px rgba(5, 76, 79, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.evos-platform-card-teal::before {
    background:
        radial-gradient(
            circle,
            rgba(112, 255, 255, 0.18),
            transparent 68%
        );
}

.evos-platform-card-teal .evos-platform-card-label,
.evos-platform-card-teal h3 {
    color: #ffffff;
}

.evos-platform-card-teal p,
.evos-platform-card-teal .evos-platform-list li {
    color: rgba(255, 255, 255, 0.72);
}

.evos-platform-card-teal .evos-platform-list li::before {
    color: #075d60;
    background: #bffefe;
}

.evos-platform-badge {
    display: inline-flex;
    margin-bottom: 26px;
    padding: 8px 13px;
    color: #063f42;
    background: rgba(191, 254, 254, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.reader-section {
    padding: 170px 0;
    overflow: hidden;
}

.reader-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    align-items: center;
    gap: 110px;
}

.reader-copy h2 {
    font-size: clamp(3.3rem, 5.3vw, 5.6rem);
}

.reader-copy > p:last-of-type {
    max-width: 560px;
}

.evos-demo-section {
    position: relative;
}

.evos-demo-section::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -240px;
    width: 650px;
    height: 650px;
    transform: translateY(-50%);

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 218, 0.16),
            transparent 68%
        );

    border-radius: 50%;
}

.evos-demo-panel {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 560px;
    padding: 60px;
    text-align: center;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(32, 214, 218, 0.22),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #123f42,
            #082f31
        );

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-xl);

    box-shadow:
        0 44px 100px rgba(5, 54, 56, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    overflow: hidden;
}

.evos-demo-panel::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;

    background:
        radial-gradient(
            circle,
            rgba(0, 185, 190, 0.22),
            transparent 66%
        );

    border-radius: 50%;
    filter: blur(8px);
}

.evos-demo-icon {
    position: relative;
    z-index: 2;
    width: 96px;
    height: 96px;
    margin-bottom: 34px;
    border-radius: 28px;
    font-size: 2.2rem;
}

.evos-demo-panel strong,
.evos-demo-panel p {
    position: relative;
    z-index: 2;
}

.evos-demo-panel strong {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}

.evos-demo-panel p {
    max-width: 320px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.94rem;
}

.evos-pricing-section {
    padding: 100px 0 180px;
}

.evos-pricing-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
    padding: 65px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.9),
            rgba(235, 249, 249, 0.76)
        );

    border: 1px solid rgba(8, 126, 130, 0.1);
    border-radius: var(--radius-xl);

    box-shadow:
        0 40px 95px rgba(8, 77, 79, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(24px);
}

.evos-pricing-copy h2 {
    margin-bottom: 25px;
    font-size: clamp(3.3rem, 5.5vw, 5.9rem);
}

.evos-pricing-copy > p:last-child {
    max-width: 620px;
}

.evos-price {
    padding: 38px;

    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(32, 214, 218, 0.22),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            #123f42,
            #072f31
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;

    box-shadow:
        0 32px 72px rgba(5, 54, 56, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.evos-price-label {
    display: block;
    color: #9ffbfb;
}

.evos-price > strong {
    display: block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.evos-price > small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    line-height: 1.7;
}

.evos-monthly-price {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.evos-monthly-price strong {
    display: block;
    margin-bottom: 10px;
    color: #bffefe;
    font-size: 1.08rem;
}

.evos-monthly-price small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    line-height: 1.65;
}

.final-cta {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 0%,
            #13696d,
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #0d3f42,
            #05292b
        );
}

.final-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    width: 950px;
    height: 700px;
    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(32, 214, 218, 0.24),
            transparent 68%
        );

    border-radius: 50%;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.evos-final-mark {
    width: 92px;
    height: 92px;
    margin: 0 auto 36px;
    border-radius: 28px;
    font-size: 2rem;
}

.final-cta .section-label {
    color: #9df9fa;
}

.final-cta h2 {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: clamp(4rem, 6.5vw, 7rem);
}

.final-cta-teal {
    background:
        linear-gradient(
            100deg,
            #9ffbfb,
            #20d6da 50%,
            #9ffbfb
        );

    background-clip: text;
    -webkit-background-clip: text;
}

.final-cta p {
    max-width: 620px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.12rem;
}

.final-cta .primary-button {
    color: #063f42;

    background:
        linear-gradient(
            135deg,
            #caffff,
            #65f0f2
        );

    border-color: rgba(255, 255, 255, 0.22);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.final-cta .primary-button:hover {
    background:
        linear-gradient(
            135deg,
            #e0ffff,
            #7ef6f7
        );
}

.final-cta .primary-button span {
    color: #075d60;
}

.site-footer {
    padding: 44px 0;
    color: rgba(255, 255, 255, 0.68);
    background: #052426;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    color: #ffffff;
}

.footer-brand .evos-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
}

.footer-shell p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.76rem;
}

.copyright {
    justify-self: end;
}

.evos-chat-launcher {
    position: fixed;
    z-index: 200;
    right: 26px;
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 17px 11px 11px;
    color: #ffffff;
    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #0e9499,
            #075d60
        );

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;

    box-shadow:
        0 18px 48px rgba(5, 76, 79, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.evos-chat-launcher:hover {
    transform: translateY(-3px);

    box-shadow:
        0 24px 58px rgba(5, 76, 79, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.evos-chat-launcher-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #075d60;
    background: #caffff;
    border-radius: 50%;
    font-weight: 850;
}

.evos-chat-launcher-copy {
    text-align: left;
}

.evos-chat-launcher-copy strong,
.evos-chat-launcher-copy small {
    display: block;
}

.evos-chat-launcher-copy strong {
    margin-bottom: 2px;
    font-size: 0.76rem;
}

.evos-chat-launcher-copy small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.62rem;
}

@media (max-width: 1180px) {
    .evos-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .evos-pricing-card {
        gap: 42px;
        padding: 48px;
    }
}

@media (max-width: 1080px) {
    .hero {
        min-height: auto;
        padding-top: 170px;
    }

    .hero-inner,
    .reader-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-copy {
        max-width: 800px;
        padding-bottom: 0;
    }

    .hero-description {
        max-width: 650px;
    }

    .hero-visual {
        max-width: 850px;
        margin: 0 auto;
    }

    .browser-frame {
        margin-inline: auto;

        transform:
            perspective(1600px)
            rotateY(-2deg)
            rotateX(1deg);
    }

    .reader-copy {
        max-width: 760px;
    }

    .evos-demo-panel {
        min-height: 480px;
    }

    .evos-platform-lower {
        grid-template-columns: 1fr;
    }

    .evos-pricing-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .section-shell,
    .hero-inner,
    .nav-shell,
    .footer-shell,
    .evos-platform-shell {
        width: min(calc(100% - 30px), var(--page-width));
    }

    .nav-shell {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 145px 0 80px;
    }

    .hero h1 {
        font-size: clamp(4rem, 15vw, 6.2rem);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-visual {
        padding: 45px 0 70px;
    }

    .floating-card-top {
        top: 0;
        right: 10px;
    }

    .floating-card-bottom {
        bottom: 15px;
        left: 5px;
    }

    .intro-section {
        padding: 100px 0 120px;
    }

    .evos-platform-section {
        padding: 90px 0 120px;
    }

    .evos-platform-heading {
        margin-bottom: 45px;
    }

    .evos-capability-grid {
        grid-template-columns: 1fr;
    }

    .evos-capability {
        min-height: auto;
    }

    .evos-platform-card {
        min-height: auto;
        padding: 36px;
        border-radius: 34px;
    }

    .reader-section {
        padding: 120px 0;
    }

    .evos-pricing-section {
        padding: 80px 0 120px;
    }

    .evos-pricing-card {
        padding: 36px;
        border-radius: 36px;
    }

    .final-cta {
        padding: 130px 0;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand,
    .copyright {
        justify-self: center;
    }
}

@media (max-width: 560px) {
    .site-header {
        position: absolute;
    }

    .nav-shell {
        min-height: 76px;
    }

    .brand {
        font-size: 0.92rem;
    }

    .evos-brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .nav-cta {
        min-height: 40px;
        padding-inline: 15px;
        font-size: 0.72rem;
    }

    .hero {
        padding-top: 122px;
    }

    .hero h1 {
        margin-bottom: 25px;
        font-size: clamp(3.5rem, 16vw, 5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .browser-frame {
        border-radius: 17px;
    }

    .browser-bar {
        height: 39px;
        padding-inline: 12px;
    }

    .browser-address {
        padding: 4px 20px;
        font-size: 0.55rem;
    }

    .browser-dots span {
        width: 6px;
        height: 6px;
    }

    .floating-card {
        min-width: 195px;
        padding: 11px 13px;
    }

    .floating-card-top {
        right: -10px;
    }

    .floating-card-bottom {
        left: -5px;
    }

    .floating-icon {
        width: 29px;
        height: 29px;
    }

    .evos-message {
        max-width: 88%;
    }

    h2,
    .reader-copy h2,
    .evos-platform-heading h2,
    .evos-pricing-copy h2 {
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    .evos-platform-card-heading h3 {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }

    .evos-platform-card,
    .evos-pricing-card {
        padding: 28px 24px;
        border-radius: 28px;
    }

    .evos-demo-panel {
        min-height: 390px;
        padding: 34px 22px;
        border-radius: 32px;
    }

    .evos-price {
        padding: 28px 24px;
        border-radius: 26px;
    }

    .final-cta h2 {
        font-size: clamp(3.4rem, 14vw, 5rem);
    }

    .evos-chat-launcher {
        right: 16px;
        bottom: 16px;
        padding-right: 12px;
    }

    .evos-chat-launcher-copy {
        display: none;
    }
}
