:root {
    --bg: #05070d;
    --bg-soft: #0b0f17;
    --surface: rgba(15, 20, 31, 0.9);
    --surface-strong: rgba(18, 24, 36, 0.98);
    --border: rgba(15, 51, 255, 0.2);
    --border-strong: rgba(15, 51, 255, 0.42);
    --text: #f5f7ff;
    --text-soft: rgba(231, 236, 255, 0.76);
    --text-muted: rgba(231, 236, 255, 0.48);
    --accent: #0f33ff;
    --accent-soft: #0061ff;
    --shadow: 0 24px 60px rgba(2, 8, 23, 0.42);
    --shell: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top center, rgba(15, 51, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #03050a 0%, #060a12 36%, #04070d 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.hidden {
    display: none !important;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.shell {
    width: min(var(--shell), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 14px 0;
    background: transparent;
    border-bottom: 0;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 0 20px;
    border: 1px solid rgba(15, 51, 255, 0.12);
    border-radius: 28px;
    background: rgba(10, 14, 22, 0.86);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-wordmark {
    font-family: "Orbitron", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand-wordmark span {
    color: #9bb2ff;
}

.brand-accent {
    color: #9bb2ff;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: var(--text-soft);
    font-size: 0.96rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(15, 51, 255, 0.35);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.nav-cta,
.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
    box-shadow: 0 14px 34px rgba(15, 51, 255, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(15, 51, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: #fff;
}

.landing-main {
    padding: 24px 0 72px;
}

.landing-section,
.hero-section {
    padding: 28px 0;
}

.card-surface {
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        var(--surface);
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 14px;
    color: #9bb2ff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: stretch;
}

.hero-copy,
.hero-visual,
.about-story,
.about-image,
.about-feature,
.benefit-card,
.news-card,
.contact-info,
.contact-form,
.map-card {
    padding: 28px;
}

.hero-copy h1,
.section-heading h2,
.about-story h2 {
    margin: 0;
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 8vw, 6rem);
}

.hero-lead,
.about-story p,
.benefit-card p,
.contact-info p {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.hero-point {
    padding: 16px 18px;
    border: 1px solid rgba(15, 51, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
}

.hero-point span {
    display: block;
    margin-bottom: 8px;
    color: #9bb2ff;
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
}

.hero-point p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.55;
}

.hero-photo {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 28px;
    background: #02040a;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 5, 10, 0.16), rgba(3, 5, 10, 0.42)),
        radial-gradient(circle at 72% 38%, rgba(15, 51, 255, 0.18), transparent 28%);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.hero-gallery__item {
    overflow: hidden;
    min-height: 108px;
    border: 1px solid rgba(15, 51, 255, 0.12);
    border-radius: 20px;
}

.hero-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stage {
    position: relative;
    display: grid;
    align-content: space-between;
    gap: 34px;
    min-height: 720px;
    padding: clamp(24px, 4vw, 42px);
    overflow: hidden;
    isolation: isolate;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 5, 10, 0.94) 0%, rgba(3, 5, 10, 0.86) 26%, rgba(3, 5, 10, 0.56) 48%, rgba(3, 5, 10, 0.22) 70%, rgba(3, 5, 10, 0.34) 100%),
        radial-gradient(circle at 78% 34%, rgba(15, 51, 255, 0.18), transparent 23%),
        radial-gradient(circle at 50% 100%, rgba(15, 51, 255, 0.14), transparent 34%);
}

.hero-stage::after {
    content: "";
    position: absolute;
    inset: -28px;
    z-index: 1;
    border-radius: 52px;
    box-shadow:
        inset 0 0 120px rgba(1, 3, 8, 0.94),
        inset 0 0 52px rgba(2, 6, 14, 0.82);
    filter: blur(12px);
    pointer-events: none;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    filter: saturate(1.02) contrast(1.04);
}

.hero-stage .hero-copy,
.hero-stage .hero-points {
    position: relative;
    z-index: 2;
}

.hero-stage .hero-copy {
    width: min(100%, 580px);
    padding: 0;
}

.hero-stage .hero-copy h1 {
    margin-bottom: 18px;
}

.hero-stage .hero-lead {
    max-width: 540px;
    margin: 0;
    font-size: 1.03rem;
}

.hero-stage .hero-actions {
    margin-top: 28px;
}

.hero-stage .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
}

.hero-stage .hero-point {
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(10, 14, 22, 0.56), rgba(10, 14, 22, 0.3));
    border-color: rgba(125, 160, 255, 0.18);
}

.hero-visual {
    display: none;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 20px;
}

.about-story h2 {
    font-size: clamp(2.7rem, 5.8vw, 4.7rem);
    margin-bottom: 22px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.about-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(15, 51, 255, 0.16);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.02);
}

.about-visual-column {
    display: grid;
    grid-template-rows: minmax(340px, 1fr) auto;
    gap: 14px;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 26px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-feature {
    min-height: 196px;
}

.about-feature__index {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent-soft);
    font-family: "Orbitron", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
}

.about-feature p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 5.4vw, 4.8rem);
}

.section-heading--left {
    text-align: left;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    min-height: 286px;
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
    border: 1px solid rgba(15, 51, 255, 0.18);
    border-radius: 16px;
    color: var(--accent-soft);
    background: rgba(15, 51, 255, 0.08);
}

.benefit-card h3 {
    margin: 0 0 14px;
    font-size: 1.75rem;
    line-height: 1.18;
    text-transform: uppercase;
}

.pricing-showcase {
    --pricing-blue: #0f33ff;
    --pricing-blue-soft: #0061ff;
    --pricing-border: rgba(255, 255, 255, 0.12);
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-showcase__intro {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-showcase__title {
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 5.4vw, 4.8rem);
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 0.95;
    text-transform: uppercase;
}

.pricing-card__button,
.pricing-carousel-nav__btn,
.pricing-plan-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(15, 51, 255, 0.38);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pricing-card__button {
    background: linear-gradient(135deg, var(--pricing-blue) 0%, var(--pricing-blue-soft) 100%);
    color: #fff;
    box-shadow: 0 12px 34px rgba(15, 51, 255, 0.24);
}

.pricing-card__button:hover,
.pricing-carousel-nav__btn:hover,
.pricing-plan-switch__btn:hover {
    transform: translateY(-2px);
}

.pricing-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
}

.pricing-plan-switch {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-plan-switch__btn {
    min-width: 124px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    box-shadow: none;
}

.pricing-plan-switch__btn.is-active {
    background: linear-gradient(135deg, var(--pricing-blue) 0%, var(--pricing-blue-soft) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(15, 51, 255, 0.22);
}

.pricing-carousel-nav__btn {
    min-width: 94px;
    background: rgba(15, 51, 255, 0.12);
    color: #fff;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.pricing-carousel-nav__btn[disabled] {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.pricing-carousel-nav__status {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(var(--carousel-columns, 4), minmax(0, 1fr));
    gap: 16px;
}

.pricing-grid[data-carousel-enabled="true"] .pricing-card {
    display: none;
}

.pricing-grid[data-carousel-enabled="true"] .pricing-card.is-active {
    display: block;
}

.pricing-card {
    --spotlight-x: 50%;
    --spotlight-y: 50%;
    position: relative;
    min-height: 100%;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--pricing-border);
    background:
        radial-gradient(240px circle at var(--spotlight-x) var(--spotlight-y), rgba(15, 51, 255, 0.24), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 60px rgba(2, 8, 23, 0.28);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.pricing-card__glow {
    position: absolute;
    inset: auto -40px -80px auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 51, 255, 0.35) 0%, rgba(15, 51, 255, 0) 70%);
    pointer-events: none;
}

.pricing-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.pricing-card__badge,
.pricing-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-card__badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.pricing-card__tag {
    background: rgba(15, 51, 255, 0.16);
    color: #9bb2ff;
}

.pricing-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.15;
    color: #fff;
}

.pricing-card__price {
    margin-bottom: 4px;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.pricing-card__meta {
    margin-bottom: 10px;
    color: #8db0ff;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card__details {
    margin: 0 0 14px;
}

.pricing-card__details div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card__details dt {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    min-width: 0;
}

.pricing-card__details dd {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.pricing-card__copy {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.35;
}

.pricing-card__button {
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.pricing-card--featured {
    border-color: rgba(15, 51, 255, 0.45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 54px rgba(15, 51, 255, 0.16);
}

.pricing-notes {
    max-width: 1080px;
    margin: 22px auto 0;
    padding: 0 24px;
    text-align: center;
}

.pricing-notes p {
    margin: 4px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.35;
}

.pricing-notes__title {
    margin-bottom: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.pricing-notes__muted {
    color: rgba(255, 255, 255, 0.52) !important;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.news-card {
    padding: 0;
    overflow: hidden;
    min-height: 100%;
}

.news-card > a {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
}

.news-card__media {
    position: relative;
    aspect-ratio: 0.96 / 1;
    min-height: 280px;
    overflow: hidden;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.news-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 13, 0.04) 0%, rgba(5, 7, 13, 0.1) 42%, rgba(5, 7, 13, 0.54) 100%),
        radial-gradient(circle at 82% 14%, rgba(15, 51, 255, 0.16), transparent 24%);
    pointer-events: none;
}

.news-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(6, 9, 15, 0.52);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.news-card__copy {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 16px 18px 18px;
}

.news-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-card__date {
    color: #9bb2ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(15, 51, 255, 0.16);
    border-radius: 12px;
    color: #9bb2ff;
    background: rgba(15, 51, 255, 0.08);
}

.news-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.24;
}

.news-card__excerpt {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__link {
    display: inline-flex;
    color: #9bb2ff;
    font-weight: 700;
    margin-top: auto;
    font-size: 0.92rem;
}

.news-card:hover .news-card__media img,
.news-card:focus-within .news-card__media img {
    transform: scale(1.03);
    filter: saturate(1.05);
}

.news-card--featured {
    grid-column: auto;
}

.news-card--featured > a {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
}

.news-card--featured .news-card__media {
    min-height: 280px;
    aspect-ratio: 0.96 / 1;
}

.news-card--featured .news-card__copy {
    padding: 16px 18px 18px;
}

.news-card--featured h3 {
    font-size: 1.08rem;
}

.news-card--featured .news-card__excerpt {
    -webkit-line-clamp: 3;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 20px;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.contact-list article {
    padding: 16px 18px;
    border: 1px solid rgba(15, 51, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-list span {
    display: inline-block;
    margin-bottom: 8px;
    color: #9bb2ff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-list p,
.contact-list a {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(15, 51, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.contact-side {
    display: grid;
    gap: 18px;
}

.contact-form form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label span {
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(15, 51, 255, 0.12);
    border-radius: 18px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
}

.map-card {
    --map-top-trim: 72px;
    --map-side-bleed: 20px;
    --map-bottom-bleed: 14px;
    position: relative;
    padding: 14px;
    overflow: hidden;
}

.map-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 24px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 0 999px rgba(0, 0, 0, 0);
    pointer-events: none;
}

.map-card iframe {
    display: block;
    width: calc(100% + (var(--map-side-bleed) * 2));
    margin-top: calc(var(--map-top-trim) * -1);
    margin-right: calc(var(--map-side-bleed) * -1);
    margin-bottom: calc(var(--map-bottom-bleed) * -1);
    margin-left: calc(var(--map-side-bleed) * -1);
    min-height: calc(360px + var(--map-top-trim) + var(--map-bottom-bleed));
    border: 0;
    border-radius: 24px;
    filter: grayscale(100%) contrast(1.02) brightness(0.92);
}

.site-footer {
    padding: 12px 0 42px;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 24px 28px;
    border: 1px solid rgba(15, 51, 255, 0.12);
    border-radius: 28px;
    background: rgba(8, 11, 17, 0.86);
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-shell p {
    margin: 0;
    color: var(--text-soft);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-soft);
}

@media (max-width: 1180px) {
    .hero-stage {
        min-height: 660px;
    }

    .hero-stage .hero-copy {
        width: min(100%, 500px);
    }

    .hero-layout,
    .about-layout,
    .contact-layout,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-points,
    .about-features {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card__media,
    .news-card--featured .news-card__media {
        min-height: 220px;
        aspect-ratio: 1.18 / 1;
    }
}

@media (max-width: 900px) {
    .site-header {
        padding: 10px 0;
    }

    .header-shell {
        min-height: 66px;
        padding: 0 14px;
        border-radius: 22px;
    }

    .brand {
        gap: 10px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand-wordmark {
        font-size: 1.08rem;
        letter-spacing: 0.05em;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 10px;
        border: 1px solid rgba(15, 51, 255, 0.12);
        border-radius: 24px;
        background: rgba(8, 11, 17, 0.96);
        box-shadow: var(--shadow);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .nav-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .shell {
        width: min(var(--shell), calc(100% - 20px));
    }

    .landing-main {
        padding: 14px 0 48px;
    }

    .landing-section,
    .hero-section {
        padding: 14px 0;
    }

    .header-shell {
        min-height: 62px;
        padding: 0 12px;
    }

    .brand-wordmark {
        font-size: 0.98rem;
    }

    .card-surface {
        border-radius: 24px;
    }

    .hero-copy,
    .hero-visual,
    .about-story,
    .about-image,
    .about-feature,
    .benefit-card,
    .contact-info,
    .contact-form,
    .map-card,
    .news-card__copy {
        padding: 20px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 16vw, 4.4rem);
    }

    .hero-stage {
        min-height: 560px;
        gap: 16px;
        padding: 20px;
    }

    .hero-stage::before {
        background:
            linear-gradient(180deg, rgba(3, 5, 10, 0.22) 0%, rgba(3, 5, 10, 0.36) 14%, rgba(3, 5, 10, 0.84) 44%, rgba(3, 5, 10, 0.96) 100%),
            linear-gradient(90deg, rgba(3, 5, 10, 0.88) 0%, rgba(3, 5, 10, 0.62) 42%, rgba(3, 5, 10, 0.22) 100%),
            radial-gradient(circle at 78% 24%, rgba(15, 51, 255, 0.18), transparent 24%);
    }

    .hero-stage .hero-copy {
        max-width: min(100%, 330px);
        padding-top: 0;
    }

    .hero-stage .hero-lead {
        max-width: 100%;
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .hero-media img {
        object-position: 74% center;
    }

    .hero-stage .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-stage .hero-points {
        gap: 10px;
    }

    .hero-stage .hero-point {
        padding: 14px 16px;
        border-radius: 18px;
    }

    .hero-stage .hero-point p {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .about-story h2,
    .section-heading h2 {
        font-size: clamp(2rem, 12vw, 3.2rem);
        line-height: 1;
    }

    .about-layout,
    .contact-layout {
        gap: 14px;
    }

    .about-story p,
    .benefit-card p,
    .contact-info p,
    .contact-list p,
    .contact-list a {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .about-tags {
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        margin: 20px -2px 0;
        padding: 2px 2px 6px;
        scrollbar-width: none;
    }

    .about-tags::-webkit-scrollbar {
        display: none;
    }

    .about-tags span {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .about-visual-column {
        grid-template-rows: auto;
        gap: 12px;
    }

    .about-image {
        display: none;
    }

    .about-image img {
        min-height: 240px;
    }

    .about-features {
        gap: 12px;
    }

    .about-feature {
        min-height: auto;
    }

    .about-feature__index {
        margin-bottom: 14px;
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-card {
        min-height: auto;
    }

    .benefit-card h3 {
        font-size: 1.35rem;
        line-height: 1.16;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-card__media {
        min-height: 150px;
        aspect-ratio: 1.3 / 1;
    }

    .news-card__copy {
        gap: 8px;
        padding: 14px 15px 16px;
    }

    .news-card h3 {
        font-size: 1rem;
        line-height: 1.24;
    }

    .news-card__excerpt {
        font-size: 0.88rem;
        line-height: 1.42;
        -webkit-line-clamp: 2;
    }

    .news-card__badge {
        top: 10px;
        left: 10px;
        min-height: 26px;
        padding: 0 9px;
        font-size: 0.62rem;
    }

    .news-card__icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
    }

    .contact-list {
        gap: 12px;
        margin-top: 18px;
    }

    .contact-list article {
        padding: 14px 16px;
        border-radius: 18px;
    }

    .social-links {
        gap: 10px;
        margin-top: 18px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .contact-form form {
        gap: 12px;
        margin-top: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 13px 14px;
        border-radius: 16px;
    }

    .map-card {
        --map-side-bleed: 14px;
        --map-bottom-bleed: 10px;
        padding: 10px;
    }

    .map-card::after {
        inset: 10px;
        border-radius: 18px;
    }

    .map-card iframe {
        min-height: calc(280px + var(--map-top-trim) + var(--map-bottom-bleed));
        border-radius: 18px;
    }

    .footer-shell {
        padding: 20px;
        border-radius: 24px;
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .pricing-showcase {
        padding: 0 16px;
    }

    .pricing-showcase__intro {
        margin-bottom: 10px;
    }

    .pricing-showcase__title {
        font-size: clamp(2rem, 12vw, 3.2rem);
        line-height: 1;
    }

    .pricing-plan-switch {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
    }

    .pricing-plan-switch__btn {
        flex: 1;
        min-width: 0;
        font-size: 11px;
    }

    .pricing-carousel-nav {
        margin-bottom: 10px;
    }

    .pricing-card {
        min-height: auto;
        padding: 14px;
        border-radius: 20px;
    }

    .pricing-card__top {
        margin-bottom: 12px;
    }

    .pricing-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .pricing-card__price {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .pricing-card__meta {
        margin-bottom: 6px;
        font-size: 11px;
    }

    .pricing-card__details {
        margin-bottom: 8px;
    }

    .pricing-card__details div {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 8px;
        padding: 6px 0;
    }

    .pricing-card__details dt,
    .pricing-card__details dd,
    .pricing-card__copy {
        font-size: 11px;
    }

    .pricing-card__button {
        padding: 10px 14px;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-notes {
        margin-top: 8px;
        padding: 0 16px;
    }

    .pricing-notes p {
        font-size: 11px;
        line-height: 1.2;
    }

    .pricing-notes__title {
        font-size: 13px;
        margin-bottom: 3px;
    }
}

@media (max-width: 480px) {
    .hero-stage {
        min-height: 520px;
        padding: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 15vw, 3.5rem);
    }

    .hero-stage .hero-copy {
        max-width: 260px;
    }

    .hero-stage .hero-lead {
        font-size: 0.9rem;
    }

    .hero-media img {
        object-position: 72% center;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-tags {
        display: flex;
        flex-wrap: wrap;
        overflow-x: visible;
        margin-right: 0;
        margin-left: 0;
        padding-bottom: 0;
    }

    .about-tags span {
        white-space: normal;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .pricing-card__details div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
