/* ---------------- HERO ---------------- */

.hero {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    padding: 72px 20px 48px;
}

.hero-logo {
    width: 172px;
    max-width: 100%;
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: var(--image-shadow);
}

.hero h1 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.hero p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-muted);
}

.maintenance-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 20px;
    text-align: center;
}

.maintenance-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--radius);
}

.maintenance-page h1 {
    margin: 0;
    font-size: 34px;
}

.maintenance-page p {
    max-width: 520px;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ---------------- HOME BLOCK ICONS ---------------- */

.block-icon {
    width: 168px;
    max-width: 100%;
    margin-bottom: 24px;
    filter: var(--image-shadow-soft);
}

/* ---------------- PUBLIC HOME ---------------- */

.home-shell {
    --home-bg: var(--bg);
    --home-paper: var(--surface-strong);
    --home-ink: var(--text);
    --home-muted: var(--text-muted);
    --home-line: var(--border);
    --home-line-strong: var(--border-strong);
    --home-red: var(--accent-text);
    --home-red-bright: var(--accent-strong);
    --home-red-dark: var(--accent-hover);
    --home-red-soft: var(--accent-soft);
    --home-panel: var(--showcase-bg);
    --home-shadow: var(--shadow-soft);
    position: relative;
    display: flow-root;
    min-height: 100vh;
    isolation: isolate;
    overflow-x: clip;
    color: var(--text);
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--bg) 46%, var(--bg-soft) 100%);
    font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

.home-shell::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-position: 0 -1px, -1px 0;
    background-size: 72px 72px;
    -webkit-mask-image: linear-gradient(to bottom, color-mix(in srgb, var(--text) 28%, transparent), transparent 38%);
    mask-image: linear-gradient(to bottom, color-mix(in srgb, var(--text) 28%, transparent), transparent 38%);
    pointer-events: none;
    content: "";
}

.home-shell button {
    font-family: inherit;
}

.home-shell h1,
.home-shell h2,
.home-shell h3,
.home-shell .brand {
    font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    font-kerning: normal;
}

.home-topbar {
    top: 14px;
    max-width: 1240px;
    margin-top: 14px;
    padding: 9px 10px 9px 12px;
    border-color: var(--border);
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface-strong) 87%, transparent);
    box-shadow: var(--shadow-card);
}

.home-topbar .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 12px;
}

.home-topbar .brand {
    color: var(--text);
    font-size: 18px;
    letter-spacing: 0.01em;
}

.home-topbar .brand-subtitle {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-nav {
    gap: 2px;
}

.home-nav .home-nav-link {
    min-height: 40px;
    padding-inline: 14px;
    border-color: transparent;
    color: var(--text-muted);
    background: transparent;
    box-shadow: none;
}

.home-nav .home-nav-link:hover {
    color: var(--text);
    border-color: var(--border);
    background: var(--accent-soft);
    box-shadow: none;
}

.home-nav .home-nav-cta {
    min-height: 42px;
    margin-left: 8px;
    padding-inline: 20px;
    border-radius: 11px;
}

.home-page {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 42px;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.88fr);
    gap: clamp(42px, 6vw, 84px);
    align-items: center;
    min-height: 720px;
    padding: 74px 0 62px;
}

.home-hero-content {
    max-width: 710px;
}

.home-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--text);
    font-size: clamp(58px, 6.3vw, 88px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
}

.home-hero h1 span {
    display: block;
    margin-top: 8px;
    color: var(--accent-text);
}

.home-hero-text {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--text-muted);
    font-size: 19px;
    line-height: 1.7;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.home-shell .home-primary-action,
.home-shell .home-secondary-action {
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 13px;
    font-size: 15px;
}

.home-primary-action span,
.home-access-button span,
.home-final-button span {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.home-primary-action:hover span,
.home-access-button:hover span,
.home-final-button:hover span {
    transform: translateX(4px);
}

.home-shell .home-secondary-action {
    color: var(--text-soft);
    border-color: var(--border-strong);
    background: var(--surface-strong);
}

.home-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 30px;
}

.home-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.home-trust-row span::before {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 17px;
    border: 1px solid var(--trust-border);
    border-radius: 50%;
    color: var(--trust);
    background: var(--trust-soft);
    font-size: 10px;
    content: "✓";
}

.home-hero-visual {
    position: relative;
    min-height: 610px;
    padding: 28px;
    border: 1px solid var(--showcase-border);
    border-radius: 34px;
    isolation: isolate;
    color: var(--showcase-text);
    background:
        var(--showcase-overlay),
        radial-gradient(circle at 50% 28%, var(--accent-glow), transparent 35%),
        url("../../assets/WorldMapHome.png") center 34% / 150% auto no-repeat,
        var(--showcase-bg);
    box-shadow: var(--showcase-shadow);
}

.home-hero-visual::after {
    position: absolute;
    inset: 9px;
    z-index: -1;
    border: 1px solid var(--showcase-border);
    border-radius: 27px;
    pointer-events: none;
    content: "";
}

.home-visual-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: inherit;
    background-image:
        linear-gradient(var(--showcase-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--showcase-grid-line) 1px, transparent 1px);
    background-size: 34px 34px;
    -webkit-mask-image: linear-gradient(to bottom, var(--showcase-text), transparent 78%);
    mask-image: linear-gradient(to bottom, var(--showcase-text), transparent 78%);
}

.home-visual-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.home-visual-code {
    color: var(--showcase-text-subtle);
    font-family: ui-monospace, "Cascadia Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
}

.home-logo-stage {
    position: relative;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-logo {
    position: relative;
    z-index: 2;
    width: 184px;
    max-width: 48%;
    display: block;
    border-radius: 22px;
    filter: var(--image-shadow-soft);
    animation: home-logo-float 6s ease-in-out infinite;
}

.home-logo-orbit {
    position: absolute;
    border: 1px solid var(--showcase-border);
    border-radius: 50%;
}

.home-logo-orbit::before {
    position: absolute;
    top: 50%;
    right: -5px;
    width: 9px;
    height: 9px;
    border: 2px solid var(--home-panel);
    border-radius: 50%;
    background: var(--home-red-bright);
    box-shadow: 0 0 16px var(--accent-glow-strong);
    content: "";
}

.home-logo-orbit-one {
    width: 246px;
    height: 246px;
    animation: home-orbit-spin 18s linear infinite;
}

.home-logo-orbit-two {
    width: 310px;
    height: 310px;
    border-style: dashed;
    opacity: 0.5;
    animation: home-orbit-spin 28s linear infinite reverse;
}

.home-connection-card,
.home-panel-grid > div {
    border: 1px solid var(--showcase-border);
    background: var(--showcase-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-connection-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 16px 17px;
    border-radius: 16px;
}

.home-connection-card span,
.home-panel-grid span {
    display: block;
    margin-bottom: 5px;
    color: var(--showcase-text-subtle);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-connection-card strong,
.home-panel-grid strong {
    display: block;
    color: var(--showcase-text);
    font-size: 16px;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.home-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.home-panel-grid > div {
    min-width: 0;
    padding: 14px 16px;
    border-radius: 14px;
}

.home-floating-note {
    position: absolute;
    z-index: 4;
    min-width: 126px;
    padding: 12px 14px;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    color: var(--home-ink);
    background: var(--home-paper);
    box-shadow: var(--home-shadow);
}

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

.home-floating-note small {
    margin-bottom: 3px;
    color: var(--home-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-floating-note strong {
    font-size: 15px;
}

.home-floating-note-left {
    top: 39%;
    left: -44px;
    transform: rotate(-4deg);
}

.home-floating-note-right {
    right: -34px;
    bottom: 112px;
    transform: rotate(3deg);
}

.home-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 12px 0 0;
    border-top: 1px solid var(--home-line-strong);
    border-bottom: 1px solid var(--home-line-strong);
}

.home-facts article {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 28px;
}

.home-facts article + article {
    border-left: 1px solid var(--home-line-strong);
}

.home-facts strong {
    color: var(--home-red);
    font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    font-size: 42px;
    line-height: 1;
}

.home-facts span {
    max-width: 240px;
    color: var(--home-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.home-section {
    margin-top: 118px;
    scroll-margin-top: 112px;
}

.home-section-head {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 42px;
}

.home-section-head > div {
    max-width: 760px;
}

.home-section-head-compact > div {
    max-width: 650px;
}

.home-section-index {
    display: inline-flex;
    padding-top: 10px;
    color: var(--home-red);
    font-family: ui-monospace, "Cascadia Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-section-index-light {
    color: var(--accent-on-dark);
}

.home-section-head h2,
.home-locations-head h2,
.home-faq-intro h2,
.home-final-cta h2 {
    margin: 0;
    color: var(--home-ink);
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.015em;
}

.home-section-head p,
.home-locations-head p,
.home-faq-intro p {
    max-width: 670px;
    margin: 18px 0 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.65;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-feature-card {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 22px;
    background: var(--home-paper);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-feature-card:hover {
    border-color: var(--home-line-strong);
    box-shadow: var(--home-shadow);
    transform: translateY(-6px);
}

.home-feature-card-accent {
    color: var(--showcase-text);
    border-color: var(--showcase-border);
    background: var(--accent-panel-background);
}

.home-feature-number {
    align-self: flex-end;
    color: var(--home-muted);
    font-family: ui-monospace, "Cascadia Mono", monospace;
    font-size: 11px;
}

.home-feature-card-accent .home-feature-number {
    color: var(--showcase-text);
}

.home-feature-mark {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    border: 1px solid var(--home-line-strong);
    border-radius: 18px;
    color: var(--home-red);
    background: var(--home-red-soft);
    font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    font-size: 27px;
    font-weight: 900;
}

.home-feature-card-accent .home-feature-mark {
    color: var(--showcase-text);
    border-color: var(--showcase-border-strong);
    background: var(--showcase-surface-hover);
}

.home-feature-card h3 {
    margin: auto 0 10px;
    color: var(--home-ink);
    font-size: 25px;
    line-height: 1.1;
}

.home-feature-card p {
    margin: 0;
    color: var(--home-muted);
    line-height: 1.62;
}

.home-feature-card-accent h3,
.home-feature-card-accent p {
    color: var(--showcase-text);
}

.home-feature-card-accent p {
    opacity: 1;
}

.home-access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    gap: 16px;
}

.home-access-card {
    min-height: 470px;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    border: 1px solid var(--home-line);
    border-radius: 26px;
    background: var(--home-paper);
    box-shadow: var(--shadow-card);
}

.home-access-premium {
    position: relative;
    color: var(--showcase-text);
    border-color: var(--showcase-border);
    background: var(--accent-panel-background);
}

.home-access-premium::after {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid var(--showcase-border);
    border-radius: 50%;
    box-shadow:
        0 0 0 52px color-mix(in srgb, var(--showcase-text) 4%, transparent),
        0 0 0 104px color-mix(in srgb, var(--showcase-text) 3%, transparent);
    pointer-events: none;
    content: "";
}

.home-access-topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.home-access-label {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid var(--home-line-strong);
    border-radius: 999px;
    color: var(--home-red);
    background: var(--home-red-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-access-premium .home-access-label {
    color: var(--showcase-text);
    border-color: var(--showcase-border-strong);
    background: var(--showcase-surface-hover);
}

.home-access-price,
.home-access-symbol {
    color: inherit;
    font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    font-size: 24px;
    font-weight: 900;
}

.home-access-price small {
    color: var(--text-muted);
    font-family: "Trebuchet MS", sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.home-access-premium .home-access-price small {
    color: var(--showcase-text);
}

.home-access-card h3 {
    position: relative;
    z-index: 1;
    max-width: 610px;
    margin: 76px 0 14px;
    color: var(--home-ink);
    font-family: "Trebuchet MS", "Gill Sans", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-kerning: normal;
    line-height: 1.1;
    letter-spacing: 0.005em;
}

.home-access-card > p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.65;
}

.home-access-premium h3,
.home-access-premium > p {
    color: var(--showcase-text);
}

.home-access-premium > p {
    opacity: 1;
}

.home-access-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.home-access-list li {
    padding: 8px 10px;
    border: 1px solid var(--showcase-border-strong);
    border-radius: 999px;
    background: var(--showcase-surface);
    font-size: 12px;
    font-weight: 700;
}

.home-shell .home-access-button {
    position: relative;
    z-index: 1;
    width: max-content;
    max-width: 100%;
    min-height: 50px;
    margin-top: auto;
    padding: 12px 18px;
    border-radius: 12px;
}

.home-access-premium .home-access-button {
    color: var(--home-red-dark);
    border-color: transparent;
    background: var(--showcase-text);
    box-shadow: var(--button-shadow-hover);
}

.home-access-premium .home-access-button:hover {
    color: var(--home-red-dark);
    background: var(--on-primary);
}

.home-access-free h3 {
    margin-top: auto;
}

.home-access-symbol {
    color: var(--home-red);
}

.home-locations-section {
    position: relative;
    padding: clamp(30px, 5vw, 58px);
    overflow: hidden;
    border: 1px solid var(--showcase-border);
    border-radius: 30px;
    color: var(--showcase-text);
    background:
        var(--showcase-map-overlay),
        url("../../assets/WorldMapHome.png") right center / 72% auto no-repeat,
        var(--showcase-bg);
    box-shadow: var(--showcase-shadow);
}

.home-locations-section::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 16%, var(--accent-glow), transparent 30%),
        linear-gradient(90deg, var(--showcase-grid-line) 1px, transparent 1px);
    background-size: auto, 72px 100%;
    pointer-events: none;
    content: "";
}

.home-locations-head,
.home-locations {
    position: relative;
    z-index: 1;
}

.home-locations-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.home-locations-head > div:first-child {
    max-width: 720px;
}

.home-locations-head h2 {
    margin-top: 12px;
    color: var(--showcase-text);
}

.home-locations-head p {
    color: var(--showcase-text-muted);
}

.home-locations {
    justify-content: flex-start;
    gap: 12px;
}

.home-locations .home-location-card {
    width: auto;
    max-width: none;
    min-width: 174px;
    min-height: 170px;
    flex: 1 1 174px;
    padding: 18px;
    border-color: var(--showcase-border);
    border-radius: 18px;
    color: var(--showcase-text);
    background: var(--showcase-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-locations .home-location-card:hover {
    border-color: var(--showcase-border-strong);
    background: var(--showcase-surface-hover);
    transform: translateY(-4px);
}

.home-locations .home-location-card img {
    width: 72px;
    height: 46px;
    border-color: var(--showcase-border-strong);
}

.home-locations .home-location-card .location-city {
    color: var(--showcase-text-subtle);
}

.home-locations .data-loading-spinner {
    border-color: var(--showcase-border-strong);
    border-top-color: var(--accent-on-dark);
}

.home-locations-state {
    width: 100%;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    color: var(--showcase-text-muted);
    text-align: center;
}

.home-locations-state p {
    margin: 0;
}

.home-locations-state .btn-outline {
    color: var(--showcase-text);
    border-color: var(--showcase-border-strong);
    background: var(--showcase-surface);
}

.home-access-premium .home-access-button:focus-visible,
.home-locations-state .btn-outline:focus-visible,
.home-final-cta .home-final-button:focus-visible {
    outline-color: var(--showcase-text);
}

.home-step-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-step-card {
    position: relative;
    z-index: 1;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 0 24px 26px 0;
}

.home-step-card:not(:last-child)::after {
    position: absolute;
    top: 34px;
    right: -16px;
    left: 68px;
    height: 1px;
    z-index: 0;
    background: var(--home-line-strong);
    content: "";
}

.home-step-number {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    border: 1px solid var(--home-line-strong);
    border-radius: 50%;
    color: var(--home-red);
    background: var(--home-bg);
    box-shadow: 0 0 0 10px var(--home-bg);
    font-family: ui-monospace, "Cascadia Mono", monospace;
    font-size: 13px;
    font-weight: 900;
}

.home-step-card h3 {
    margin: 0 0 10px;
    color: var(--home-ink);
    font-size: 24px;
    line-height: 1.15;
}

.home-step-card p {
    max-width: 330px;
    margin: 0;
    color: var(--home-muted);
    line-height: 1.65;
}

.home-faq {
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(44px, 8vw, 110px);
    align-items: start;
    padding: clamp(28px, 5vw, 60px);
    border: 1px solid var(--home-line);
    border-radius: 28px;
    background: var(--home-paper);
    box-shadow: var(--home-shadow);
}

.home-faq-intro {
    position: sticky;
    top: 120px;
}

.home-faq-intro h2 {
    margin-top: 18px;
}

.home-faq-intro .btn-primary {
    min-height: 48px;
    margin-top: 26px;
    border-radius: 12px;
}

.home-faq-list {
    border-top: 1px solid var(--home-line-strong);
}

.home-faq-list details {
    border-bottom: 1px solid var(--home-line-strong);
}

.home-faq-list summary {
    position: relative;
    padding: 25px 50px 25px 0;
    color: var(--home-ink);
    cursor: pointer;
    font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    list-style: none;
}

.home-faq-list summary:hover {
    color: var(--accent-text);
}

.home-faq-list summary:focus-visible {
    color: var(--accent-text);
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.home-faq-list summary:active {
    color: var(--accent-text);
    background: var(--accent-soft);
}

.home-faq-list summary::-webkit-details-marker {
    display: none;
}

.home-faq-list summary::before,
.home-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 9px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--home-red);
    transform: translateY(-50%);
    transition: transform 0.22s ease;
    content: "";
}

.home-faq-list summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.home-faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
}

.home-faq-list details p {
    max-width: 650px;
    margin: -8px 0 0;
    padding: 0 50px 25px 0;
    color: var(--home-muted);
    line-height: 1.65;
}

.home-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 118px;
    padding: clamp(34px, 5vw, 62px);
    overflow: hidden;
    border-radius: 30px;
    color: var(--showcase-text);
    background: var(--accent-panel-background);
    box-shadow: var(--accent-panel-shadow);
}

.home-final-cta > div {
    max-width: 760px;
}

.home-final-cta .home-section-index-light {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--showcase-text);
    background: transparent;
    text-shadow: 0 1px 10px color-mix(in srgb, var(--accent-active) 55%, transparent);
}

.home-final-cta h2 {
    margin-top: 15px;
    color: var(--showcase-text);
}

.home-shell .home-final-button {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 14px 20px;
    border-color: transparent;
    border-radius: 13px;
    color: var(--home-red-dark);
    background: var(--showcase-text);
    box-shadow: var(--button-shadow-hover);
}

.home-shell .home-final-button:hover {
    color: var(--home-red-dark);
    background: var(--on-primary);
}

.home-footer {
    width: min(1240px, calc(100% - 40px));
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(310px, 1fr);
    gap: 28px;
    align-items: center;
    margin: 54px auto 0;
    padding: 30px 0 36px;
    border-top: 1px solid var(--home-line-strong);
    color: var(--home-muted);
    text-align: left;
}

.home-footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.home-footer-brand .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
}

.home-footer-brand strong,
.home-footer-brand span {
    display: block;
}

.home-footer-brand strong {
    color: var(--home-ink);
    font-family: "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    font-size: 16px;
}

.home-footer-brand span {
    margin-top: 2px;
    font-size: 11px;
}

.home-footer p {
    margin: 0;
    font-size: 12px;
    text-align: center;
}

.home-footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.home-footer-links a {
    color: var(--home-muted);
    font-size: 12px;
    text-decoration: none;
}

.home-footer-links a:hover {
    color: var(--home-ink);
}

.home-motion-ready .home-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-motion-ready .home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-motion-ready .home-delay-1 {
    transition-delay: 90ms;
}

.home-motion-ready .home-delay-2 {
    transition-delay: 180ms;
}

@keyframes home-logo-float {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes home-orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-shell *,
    .home-shell *::before,
    .home-shell *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .home-motion-ready .home-reveal {
        opacity: 1;
        transform: none;
    }
}
