:root {
    --bg: #0f1419;
    --surface: #161d26;
    --surface2: #1c2530;
    --line: rgba(230, 237, 246, 0.12);
    --text: #e8eef5;
    --muted: #9fb2c9;
    --accent: #7dd3c0;
    --accent2: #c4a8e8;
    --accent3: #7aa7ff;
    --radius: 10px;
    --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    --header-h: 56px;
    --footer-h: 52px;
    --font-body: "Syne", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --compact: clamp(13px, 2.9vw, 15px);
    --narrow: min(1080px, calc(100vw - 24px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: var(--compact);
    line-height: 1.5;
    color: var(--text);
    background: radial-gradient(120% 80% at 10% 0%, #1a2433 0%, var(--bg) 45%, #0a0d12 100%);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

a {
    color: var(--accent3);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent);
}

.skip {
    position: absolute;
    left: -999px;
    top: 8px;
    background: var(--surface2);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 6px;
    z-index: 200;
}

.skip:focus {
    left: 8px;
}

.shell {
    width: var(--narrow);
    margin: 0 auto;
    padding: 0 clamp(12px, 4vw, 20px);
}

.site-header {
    position: relative;
    z-index: 90;
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
    margin: 0 auto;
    max-width: 1080px;
    padding: 10px clamp(12px, 4vw, 20px) 0;
}

.site-header.is-hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(28, 37, 48, 0.92), rgba(18, 24, 32, 0.78));
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.brand {
    font-family: var(--font-display);
    font-size: clamp(14px, 3.2vw, 17px);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    text-decoration: none;
}

.brand span {
    color: var(--accent);
}

.nav-toggle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 16px;
    border: 1.5px solid rgba(125, 211, 192, 0.35);
    background: linear-gradient(135deg, rgba(28, 37, 48, 0.95), rgba(18, 24, 32, 0.9));
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(125, 211, 192, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-toggle:hover::before {
    opacity: 1;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent3);
    outline-offset: 3px;
}

.nav-toggle:hover {
    border-color: rgba(125, 211, 192, 0.6);
    box-shadow: 0 0 20px rgba(125, 211, 192, 0.2), 0 8px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.nav-toggle:active {
    transform: translateY(0) scale(0.96);
}

.nav-toggle.is-open,
.nav-toggle[aria-expanded="true"] {
    border-color: rgba(196, 168, 232, 0.5);
    background: linear-gradient(135deg, rgba(28, 37, 48, 0.98), rgba(25, 20, 35, 0.95));
    box-shadow: 0 0 25px rgba(196, 168, 232, 0.25);
}

.nav-toggle-bars {
    width: 24px;
    height: 18px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.nav-toggle-line {
    display: block;
    height: 2.5px;
    width: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-toggle-line:nth-child(1) {
    width: 100%;
}

.nav-toggle-line:nth-child(2) {
    width: 80%;
    align-self: center;
}

.nav-toggle-line:nth-child(3) {
    width: 100%;
}

.nav-toggle:hover .nav-toggle-line:nth-child(2) {
    width: 100%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1),
.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
    transform: translateY(7.75px) rotate(45deg);
    background: linear-gradient(90deg, var(--accent2) 0%, var(--accent3) 100%);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2),
.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0) rotate(180deg);
    width: 0%;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3),
.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7.75px) rotate(-45deg);
    background: linear-gradient(90deg, var(--accent2) 0%, var(--accent3) 100%);
}

.nav-panel {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 92% 6%, rgba(125, 211, 192, 0.1), transparent 52%), rgba(6, 9, 13, 0.92);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
}

.nav-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-card {
    width: min(400px, 100%);
    height: min(100dvh, 100vh);
    max-height: 100vh;
    background: linear-gradient(175deg, rgba(22, 29, 38, 0.98) 0%, rgba(17, 21, 29, 0.99) 100%);
    border: 1.5px solid rgba(125, 211, 192, 0.2);
    border-right: none;
    border-radius: 24px 0 0 24px;
    padding: clamp(72px, 14vh, 96px) 20px 24px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateX(105%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.nav-panel.is-open .nav-card {
    transform: translateX(0);
}

.nav-panel::before {
    content: "";
    position: absolute;
    left: clamp(48px, 12vw, 120px);
    top: clamp(76px, 16vh, 120px);
    width: clamp(220px, 55vw, 420px);
    height: clamp(220px, 42vh, 380px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 167, 255, 0.06), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-panel.is-open::before {
    opacity: 1;
}

.nav-card::after {
    content: "";
    position: absolute;
    top: 18px;
    left: calc(50% - 36px);
    width: 72px;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a i {
    width: 22px;
    text-align: center;
    color: var(--accent);
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover {
    border-color: rgba(125, 211, 192, 0.3);
    background: linear-gradient(90deg, rgba(125, 211, 192, 0.08), rgba(196, 168, 232, 0.05));
    transform: translateX(4px);
}

.nav-list a:hover::before {
    transform: scaleY(1);
}

.nav-list a:hover i {
    color: var(--accent2);
    transform: scale(1.1) rotate(5deg);
}

.nav-list a:active {
    transform: translateX(2px) scale(0.98);
}

main {
    padding-bottom: 28px;
}

.hero {
    padding: 18px 0 8px;
}

.hero-grid {
    display: grid;
    gap: 16px;
    align-items: center;
}

@media (min-width: 720px) {
    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(22px, 5vw, 34px);
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 600;
}

.lead {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn:hover {
    border-color: rgba(125, 211, 192, 0.45);
    background: rgba(125, 211, 192, 0.1);
}

.btn-primary {
    background: linear-gradient(130deg, rgba(125, 211, 192, 0.25), rgba(196, 168, 232, 0.2));
    border-color: rgba(125, 211, 192, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.section {
    padding: 22px 0;
}

.section-tight {
    padding: 16px 0;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(17px, 3.6vw, 22px);
    margin: 0;
}

.kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 6px;
}

.grid-3 {
    display: grid;
    gap: 10px;
}

@media (min-width: 640px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 12px 11px;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    margin: 0 0 6px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.pill {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
}

.split {
    display: grid;
    gap: 14px;
}

@media (min-width: 720px) {
    .split {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

blockquote {
    margin: 0;
    padding: 12px 14px;
    border-left: 3px solid var(--accent2);
    background: rgba(196, 168, 232, 0.06);
    border-radius: 0 12px 12px 0;
    font-size: 12.5px;
    color: var(--muted);
}

.timeline {
    display: grid;
    gap: 10px;
}

.step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: rgba(122, 167, 255, 0.15);
    color: var(--accent3);
}

.step h3 {
    margin: 0 0 4px;
    font-size: 13px;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 560px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
    padding: 10px 6px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface2);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--accent);
}

.stat span {
    font-size: 11px;
    color: var(--muted);
}

.ribbon-stack {
    display: grid;
    gap: 8px;
}

.ribbon {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
}

.ribbon i {
    color: var(--accent2);
}

.ribbon p {
    margin: 0;
    font-size: 12px;
}

.ribbon small {
    color: var(--muted);
    font-size: 11px;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 12px clamp(12px, 4vw, 24px) 16px;
    background: rgba(10, 13, 18, 0.9);
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 11px;
    color: var(--muted);
}

.footer-inner>div:first-child {
    flex: 1 1 min(520px, 100%);
}

.footer-wellness-disclaimer {
    margin: 8px 0 0;
    font-size: 10.5px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 54rem;
}

.footer-wellness-title {
    font-weight: 600;
    color: var(--text);
    margin-right: 3px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: var(--muted);
    font-size: 11px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--text);
    border-color: var(--accent);
}

.consent-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 150;
    max-width: min(620px, 100%);
    margin: 0 auto;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(16, 21, 29, 0.96);
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.35s ease;
}

.consent-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.consent-banner p {
    margin: 0;
    font-size: 11.5px;
    color: var(--muted);
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-shell {
    display: grid;
    gap: 16px;
}

@media (min-width: 800px) {
    .contact-shell {
        grid-template-columns: 0.92fr 1.08fr;
        align-items: stretch;
    }
}

.contact-wave {
    position: relative;
    border-radius: 18px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(122, 167, 255, 0.08), rgba(125, 211, 192, 0.06));
}

.contact-wave::before {
    content: "";
    position: absolute;
    width: 180%;
    height: 180%;
    top: -70%;
    left: -35%;
    background: radial-gradient(circle, rgba(196, 168, 232, 0.18), transparent 60%);
    pointer-events: none;
}

.contact-wave h2 {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(17px, 3.8vw, 22px);
    margin: 0 0 8px;
}

.contact-wave .meta {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    font-size: 12px;
}

.contact-wave .meta li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
}

.contact-wave .meta i {
    color: var(--accent);
    margin-top: 2px;
}

.contact-form-panel {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 14px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    gap: 10px;
}

label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

input,
textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface2);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
}

.check input {
    width: auto;
    margin-top: 2px;
}

.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 10px;
    min-height: 200px;
}

.map-wrap iframe {
    width: 100%;
    height: 240px;
    border: 0;
}

.products-grid {
    display: grid;
    gap: 10px;
}

@media (min-width: 700px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-card header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.price-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 15px;
}

.price {
    font-size: 17px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.price-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    flex-grow: 1;
}

.article-flow {
    max-width: 720px;
    margin: 0 auto;
}

.article-flow p {
    color: var(--muted);
}

.page-hero-mini {
    padding: 14px 0 6px;
}

.page-hero-mini h1 {
    font-family: var(--font-display);
    font-size: clamp(20px, 4.8vw, 28px);
    margin: 0 0 6px;
}

.thank-skyshell {
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
    padding: clamp(12px, 3.5vw, 28px) 0 clamp(10px, 3vw, 18px);
    position: relative;
    overflow-x: clip;
}

.thanks-constellation {
    margin: 0 auto;
    max-width: min(920px, 100%);
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.thanks-constellation .thanks-grid {
    display: grid;
    gap: 14px;
}

@media (min-width: 700px) {
    .thanks-constellation .thanks-grid {
        grid-template-columns: 1fr 240px;
        align-items: start;
    }
}

.thanks-prism {
    position: relative;
    border-radius: 22px;
    padding: clamp(18px, 4vw, 26px);
    border: 1px solid rgba(125, 211, 192, 0.22);
    background: linear-gradient(145deg, rgba(122, 167, 255, 0.06), transparent 52%), radial-gradient(circle at 12% -8%, rgba(196, 168, 232, 0.09), transparent 55%), rgba(18, 23, 31, 0.92);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
}

.thanks-prism::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(125deg, rgba(125, 211, 192, 0.45), rgba(122, 167, 255, 0.35), rgba(196, 168, 232, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.56;
}

.thanks-prism .tagline {
    justify-content: center;
    display: flex;
    gap: 8px;
    align-items: center;
}

.thanks-prism h1 {
    font-family: var(--font-display);
    font-size: clamp(21px, 5vw, 30px);
    margin: 0 0 10px;
    line-height: 1.15;
}

.thanks-prism p {
    margin: 0 auto 12px;
    color: var(--muted);
    max-width: min(54ch, 100%);
    font-size: clamp(12.5px, 3.2vw, 14px);
}

.thanks-orbit-ring {
    position: absolute;
    width: clamp(220px, 58vw, 420px);
    height: clamp(220px, 58vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle at 42% 40%, rgba(125, 211, 192, 0.08), transparent 58%), radial-gradient(circle at 75% 25%, rgba(196, 168, 232, 0.07), transparent 55%);
    top: clamp(-140px, -22vw, -60px);
    right: clamp(-120px, -18vw, -24px);
    pointer-events: none;
    opacity: 0.75;
}

.thanks-side {
    display: grid;
    gap: 10px;
}

.thanks-chip {
    border-radius: 14px;
    border: 1px solid rgba(122, 167, 255, 0.18);
    background: rgba(17, 21, 29, 0.65);
    padding: 11px 12px;
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.45;
}

.thanks-chip strong {
    display: block;
    font-size: 10px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.policy-suite {
    background: radial-gradient(70% 50% at 15% -8%, rgba(125, 211, 192, 0.07), transparent 48%), radial-gradient(60% 40% at 98% 8%, rgba(196, 168, 232, 0.06), transparent 45%), radial-gradient(120% 90% at 50% 100%, rgba(122, 167, 255, 0.07), transparent 48%), radial-gradient(120% 85% at 10% 0%, #192535 0%, var(--bg) 55%, #0a0f16 100%);
}

.policy-suite .policy-orbit {
    position: relative;
    scroll-margin-top: 1rem;
    padding-left: 18px;
}

.policy-suite .policy-orbit::before {
    content: "";
    position: absolute;
    left: 4px;
    top: clamp(96px, 18vh, 160px);
    width: 4px;
    height: min(640px, 68%);
    border-radius: 6px;
    background: linear-gradient(180deg, var(--accent3), var(--accent2), var(--accent));
    opacity: 0.5;
}

.policy-suite main .page-hero-mini {
    position: relative;
    padding: clamp(18px, 4vw, 26px);
    margin-bottom: 8px;
    border-radius: 18px;
    border: 1px solid rgba(125, 211, 192, 0.18);
    background: rgba(22, 29, 39, 0.55);
}

.policy-suite main .section {
    position: relative;
    margin: 14px 0;
    padding: clamp(14px, 3vw, 20px);
    border-radius: 16px;
    border: 1px solid rgba(230, 237, 246, 0.08);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.policy-suite main .section:nth-child(4n + 4) {
    border-color: rgba(122, 167, 255, 0.13);
}

.policy-suite main .section:nth-child(4n + 5) {
    border-color: rgba(196, 168, 232, 0.14);
}

.policy-suite main h2 {
    font-family: var(--font-display);
    margin-top: 0;
    font-size: clamp(17px, 3.9vw, 21px);
}

.policy-mosaic-duo {
    display: grid;
    gap: 12px;
}

@media (min-width: 640px) {
    .policy-mosaic-duo {
        grid-template-columns: 1fr 1fr;
    }
}

.policy-glow-quote {
    margin: 16px 0;
    padding: 14px 16px;
    border-left: none;
    border-radius: 0 14px 14px 14px;
    background: radial-gradient(circle at 0% 0%, rgba(196, 168, 232, 0.12), transparent 55%), rgba(17, 21, 31, 0.55);
    border: 1px solid rgba(196, 168, 232, 0.15);
}

.policy-glow-quote p {
    margin: 0;
    color: var(--muted);
    font-style: italic;
}

@media (max-width: 420px) {
    .nav-card {
        width: 100%;
        border-radius: 18px 0 0 0;
        padding: clamp(58px, 16vw, 72px) 14px 16px;
        max-height: 100dvh;
    }
}

@media (max-width: 379px) {
    .brand {
        max-width: min(160px, 52vw);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-bar {
        padding-inline: 10px;
        gap: 8px;
    }

    .thanks-orbit-ring {
        display: none;
    }
}

@media (max-width: 360px) {
    :root {
        --compact: clamp(13px, 3.55vw, 14px);
    }

    body {
        line-height: 1.52;
        word-break: normal;
        overflow-wrap: anywhere;
        hyphens: auto;
        -webkit-hyphens: auto;
    }

    .shell {
        padding-inline: clamp(10px, 4vw, 14px);
    }

    .site-header {
        padding-inline: clamp(10px, 4vw, 14px);
    }

    .hero-copy h1,
    .page-hero-mini h1 {
        hyphens: none;
        -webkit-hyphens: none;
    }

    .btn,
    button.nav-toggle,
    .nav-toggle {
        min-height: 46px;
    }

    .btn {
        padding-inline: max(13px, 3.4vw);
    }

    .page-hero-mini {
        padding-top: 10px;
        padding-bottom: 4px;
    }

    .card,
    .price-card {
        padding: 11px 10px;
    }

    .map-wrap iframe {
        height: clamp(172px, 48vw, 220px);
    }

    .consent-banner {
        left: 8px;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom, 8px));
        padding: 10px;
    }

    .policy-suite .policy-orbit {
        padding-left: 10px;
    }

    .policy-suite .policy-orbit::before {
        opacity: 0.32;
        width: 3px;
        left: 2px;
        top: clamp(72px, 14vh, 140px);
    }
}

@media (max-width: 320px) {
    :root {
        --compact: 12.5px;
        --narrow: min(1080px, calc(100vw - 14px));
    }

    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    .shell {
        padding-inline: 7px;
    }

    .site-header {
        padding-inline: 7px;
    }

    .header-bar {
        padding: 7px 9px;
    }

    .nav-toggle-bars {
        width: 20px;
        height: 15px;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1),
    .nav-toggle.is-open .nav-toggle-line:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3),
    .nav-toggle.is-open .nav-toggle-line:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .thank-skyshell {
        padding-top: 8px;
    }

    .thanks-prism {
        padding: 14px 12px;
        border-radius: 18px;
    }

    .policy-suite main .section {
        margin: 10px 0;
        padding: 12px 10px;
    }

    .policy-suite .policy-orbit {
        padding-left: 8px;
    }

    .policy-suite .policy-orbit::before {
        display: none;
    }

    .site-footer .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.no-js .js-only-date {
    display: none;
}

.nav-fallback {
    display: none;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding: 0 clamp(12px, 4vw, 20px);
}

.no-js .nav-fallback {
    display: flex;
}

.nav-fallback a {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
}

.nav-fallback a:hover {
    border-color: rgba(125, 211, 192, 0.35);
}

.text-muted {
    color: var(--muted);
    font-size: 11px
}