* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(0, 160, 100, 0.16), transparent 36%),
        radial-gradient(circle at top right, rgba(12, 30, 53, 0.14), transparent 34%),
        linear-gradient(180deg, #f5faf8 0%, #f8f4eb 48%, #ffffff 100%);
}

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

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

button {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(247, 249, 245, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    padding: 0.55rem;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.brand-name {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-tagline {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.site-nav a {
    display: block;
    color: var(--ink-soft);
    font-weight: 700;
    text-align: center;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
    background: rgba(12, 30, 53, 0.06);
    transform: translateY(-1px);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 16px 32px rgba(0, 160, 100, 0.22);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.hero {
    padding: 4.75rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    color: var(--accent-deep);
    background: rgba(0, 160, 100, 0.12);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.eyebrow::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(0, 160, 100, 0.12);
}

.hero h1,
.section-title,
.cta-title {
    margin: 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.hero h1 {
    margin-top: 1.2rem;
    max-width: 12ch;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-copy p {
    margin: 1.35rem 0 0;
    max-width: 42rem;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 56px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 18px 36px rgba(0, 160, 100, 0.24);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2.25rem;
    padding: 0;
    list-style: none;
}

.hero-points li,
.metric-card,
.problem-card,
.step-card,
.feature-card,
.price-card {
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.hero-points li {
    padding: 1rem 1.05rem;
    border-radius: 22px;
}

.point-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-deep);
    font-weight: 800;
}

.point-text {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
}

.visual-stage {
    position: relative;
    min-height: 560px;
    padding: 2rem;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(0, 160, 100, 0.22), transparent 30%),
        linear-gradient(160deg, rgba(12, 30, 53, 0.98), rgba(17, 40, 70, 0.92));
    box-shadow: 0 36px 80px rgba(12, 30, 53, 0.2);
}

.visual-stage::before,
.visual-stage::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
}

.visual-stage::before {
    width: 230px;
    height: 230px;
    right: -70px;
    top: 26px;
    background: rgba(0, 160, 100, 0.16);
}

.visual-stage::after {
    width: 210px;
    height: 210px;
    left: -70px;
    bottom: -40px;
    background: rgba(255, 255, 255, 0.06);
}

.visual-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: #c7f0de;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.visual-label::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
}

.guest-card {
    position: relative;
    z-index: 2;
    width: min(360px, 100%);
    margin-top: 1.5rem;
    padding: 1.4rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 244, 0.94));
    box-shadow: 0 24px 48px rgba(6, 17, 32, 0.24);
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.card-context {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.guest-card h2,
.feature-card h3,
.price-card h3,
.problem-card h3,
.step-card h3 {
    margin: 0;
    letter-spacing: -0.03em;
}

.guest-card h2 {
    font-size: 1.5rem;
}

.menu-list,
.feature-list,
.price-features,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    align-items: start;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(12, 30, 53, 0.08);
}

.menu-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.menu-dot {
    width: 0.8rem;
    height: 0.8rem;
    margin-top: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #4fd598);
}

.menu-title {
    font-weight: 800;
}

.menu-meta {
    display: block;
    margin-top: 0.2rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.menu-price {
    font-weight: 800;
    color: var(--ink);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(12, 30, 53, 0.08);
}

.card-footer strong {
    display: block;
    font-size: 1.05rem;
}

.card-footer span {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: #ffffff;
    background: var(--ink);
    font-weight: 800;
}

.service-card {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 3;
    width: min(280px, calc(100% - 2rem));
    padding: 1.2rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
    color: #ffffff;
}

.service-card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.service-stream {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.stream-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.stream-item strong {
    display: block;
    font-size: 0.96rem;
}

.stream-item span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
}

.stream-status {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stream-status.new {
    color: #0c1e35;
    background: #d7ffeb;
}

.stream-status.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.floating-stat {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-width: 180px;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 34px rgba(6, 17, 32, 0.2);
}

.floating-stat strong {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.floating-stat span {
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.4;
}

.stat-one {
    top: 5.5rem;
    right: 1.3rem;
}

.stat-two {
    left: 1.4rem;
    bottom: 7rem;
}

.metrics {
    padding: 0 0 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.metric-card {
    padding: 1.3rem;
    border-radius: 24px;
}

.metric-value {
    display: block;
    margin-bottom: 0.35rem;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    letter-spacing: -0.04em;
}

.metric-copy {
    color: var(--ink-soft);
    line-height: 1.5;
}

.section {
    padding: 2.25rem 0 4.25rem;
}

.legal-page {
    padding: 2.5rem 0 4.5rem;
}

.legal-hero {
    padding: 2rem 0 1.25rem;
}

.legal-hero h1 {
    margin: 1rem 0 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.legal-hero p {
    max-width: 48rem;
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.legal-layout {
    display: grid;
    gap: 1rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.legal-card {
    padding: 1.55rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}

.legal-card h2 {
    margin: 0 0 0.9rem;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
    color: var(--ink-soft);
    line-height: 1.75;
}

.legal-card p {
    margin: 0;
}

.legal-card p + p {
    margin-top: 0.35rem;
}

.legal-card ul {
    margin: 0.7rem 0 0;
    padding-left: 1.2rem;
}

.legal-card a {
    color: var(--accent-deep);
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.legal-card strong {
    color: var(--ink);
}

.legal-note {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(0, 160, 100, 0.18);
    border-radius: 20px;
    background: rgba(0, 160, 100, 0.08);
    color: var(--ink);
    line-height: 1.65;
}

.legal-meta {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.section-header {
    display: grid;
    gap: 0.85rem;
    max-width: 720px;
    margin-bottom: 1.6rem;
}

.section-kicker {
    color: var(--accent-deep);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-header p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 1.04rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.problem-card,
.step-card,
.feature-card,
.price-card {
    padding: 1.45rem;
    border-radius: 28px;
}

.problem-card p,
.step-card p,
.feature-card p,
.price-card p {
    margin: 0.7rem 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1.1rem;
    border-radius: 16px;
    color: var(--accent-deep);
    background: rgba(0, 160, 100, 0.12);
    font-weight: 800;
}

.feature-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.92));
}

.feature-card h3 {
    font-size: 1.45rem;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.feature-list li,
.price-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--ink);
    line-height: 1.5;
}

.feature-list li::before,
.price-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-card.featured {
    border-color: rgba(0, 160, 100, 0.24);
    background: linear-gradient(180deg, rgba(220, 250, 238, 0.92), rgba(255, 255, 255, 0.98));
    transform: translateY(-8px);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    color: #ffffff;
    background: var(--ink);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-name {
    margin: 0;
    color: var(--accent-deep);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.plan-price strong {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.05em;
}

.plan-price span,
.plan-note {
    color: var(--ink-soft);
}

.price-features {
    display: grid;
    gap: 0.7rem;
    margin-top: auto;
}

.cta-band {
    padding-bottom: 4.75rem;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(12, 30, 53, 0.96), rgba(11, 73, 58, 0.94));
    color: #ffffff;
    box-shadow: 0 28px 64px rgba(12, 30, 53, 0.18);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    max-width: 12ch;
}

.cta-panel p {
    margin: 0.8rem 0 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.site-footer {
    padding: 2.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.82);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-brand .brand-name,
.footer-title {
    color: #ffffff;
}

.footer-brand p {
    margin: 1rem 0 0;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.footer-title {
    margin: 0 0 0.95rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.no-js .site-nav {
    position: static;
}

@media (max-width: 1080px) {
    .hero-grid,
    .cta-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-points,
    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visual-stage {
        min-height: auto;
    }

    .service-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 1rem 0 0 auto;
    }

    .stat-one {
        top: 4.75rem;
    }

    .stat-two {
        bottom: 12rem;
    }
}

@media (max-width: 960px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.7rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .no-js .site-nav {
        display: flex;
    }

    .no-js .nav-toggle {
        display: none;
    }

    .site-nav a,
    .nav-cta {
        justify-content: center;
    }

    .card-grid,
    .feature-layout,
    .legal-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .hero {
        padding-top: 3.25rem;
    }

    .header-inner {
        min-height: 76px;
    }

    .hero-points,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .visual-stage {
        padding: 1.25rem;
    }

    .guest-card {
        width: 100%;
        margin-top: 1rem;
    }

    .floating-stat {
        position: relative;
        max-width: none;
    }

    .stat-one,
    .stat-two {
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .service-card {
        width: 100%;
        margin-top: 1rem;
    }

    .problem-card,
    .step-card,
    .feature-card,
    .price-card,
    .metric-card {
        border-radius: 24px;
    }

    .cta-panel {
        padding: 1.5rem;
    }

    .site-footer {
        padding-top: 2rem;
    }
}
