/* Global Reset and Variables */
* {
    box-sizing: border-box;
}

:root {
    --color-background: #111111;
    --color-surface: #151515;
    --color-panel: #1a1a1a;
    --color-light: #f5f7fa;
    --color-text: var(--color-light);
    --color-muted: rgba(245, 247, 250, 0.72);
    --color-accent: #D4C7B2;
    --color-accent-dark: #a1927f;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-gradient-start: #0d0d0d;
    --color-gradient-end: #181818;
    --max-width: 1120px;
    --transition-base: 0.3s ease;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

a:hover {
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid rgba(212, 199, 178, 0.35);
    outline-offset: 3px;
    border-radius: 12px;
}

button:focus-visible,
.cta-button:focus-visible,
.ghost-button:focus-visible,
.secondary-link:focus-visible,
.cta-button-nav:focus-visible {
    outline: 3px solid rgba(212, 199, 178, 0.45);
    outline-offset: 4px;
}

.container {
    width: min(100% - 3rem, var(--max-width));
    margin-inline: auto;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin: 0.5rem 0 0;
    font-size: clamp(2.2rem, 1.7rem + 1.5vw, 3rem);
    letter-spacing: -0.01em;
}

.eyebrow {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-accent);
}

.lead {
    font-size: clamp(1.1rem, 1rem + 0.8vw, 1.4rem);
    color: var(--color-muted);
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
    background: rgba(212, 199, 178, 0.12);
    border: 1px solid rgba(212, 199, 178, 0.22);
    padding: 0.15rem 0.45rem;
    border-radius: 0.55rem;
    color: rgba(245, 247, 250, 0.92);
}

pre {
    background: rgba(18, 18, 22, 0.85);
    border: 1px solid var(--color-border);
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    overflow: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background: rgba(18, 19, 22, 0.88);
    backdrop-filter: blur(16px);
    border-color: var(--color-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    gap: 1rem;
    position: relative;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    background: rgba(18, 18, 22, 0.55);
}

.logo-mark img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.03);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-muted);
    padding: 0.35rem 0.4rem;
    border-radius: 14px;
    transition: color var(--transition-base);
}

nav ul li a:hover,
nav ul li a:focus-visible {
    color: var(--color-light);
}

.cta-button-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, rgba(22, 24, 30, 0.9), rgba(12, 13, 16, 0.95));
    color: var(--color-light);
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(212, 199, 178, 0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.cta-button-nav img {
    width: 18px;
    height: 18px;
}

.cta-button-nav:hover,
.cta-button-nav:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 199, 178, 0.6);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-light);
    border-radius: 999px;
    position: relative;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-icon::before {
    position: absolute;
    transform: translateY(-7px);
}

.menu-icon::after {
    position: absolute;
    transform: translateY(7px);
}

.menu-toggle.active .menu-icon {
    background: transparent;
}

.menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
}

.menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
}

/* Hero */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    margin-top: -80px;
    padding-top: calc(8rem + 80px);
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, #111111 48%, var(--color-gradient-end) 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(212, 199, 178, 0.22), transparent 50%);
    filter: blur(12px);
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 199, 178, 0.12), transparent 55%),
                radial-gradient(circle at 70% 70%, rgba(212, 199, 178, 0.12), transparent 55%);
    animation: aurora-shift 18s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.6rem, 2.2rem + 1.8vw, 3.6rem);
    margin: 0.75rem 0 1rem;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, rgba(22, 24, 30, 0.92), rgba(12, 13, 16, 0.98));
    color: var(--color-light);
    font-weight: 700;
    border: 1px solid rgba(212, 199, 178, 0.35);
    padding: 1rem 1.8rem;
    border-radius: 999px;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.cta-button.is-loading {
    opacity: 0.9;
    pointer-events: none;
}

.cta-button .spinner {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.85);
    animation: plus-cta-spin 0.8s linear infinite;
    display: none;
}

.cta-button.is-loading .spinner {
    display: inline-block;
}

.cta-button img {
    width: 22px;
    height: 22px;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(212, 199, 178, 0.6);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 199, 178, 0.25), 0 0 24px rgba(212, 199, 178, 0.10);
}

.cta-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transform: none;
}

.cta-button:disabled:hover,
.cta-button:disabled:focus-visible {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.14);
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(22, 24, 30, 0.9), rgba(12, 13, 16, 0.95));
    color: var(--color-light);
    font-weight: 700;
    border: 1px solid rgba(212, 199, 178, 0.35);
    padding: 1rem 1.8rem;
    border-radius: 999px;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.ghost-button img {
    width: 22px;
    height: 22px;
}

.ghost-button:hover,
.ghost-button:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(212, 199, 178, 0.6);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.text-button {
    font-weight: 600;
    color: var(--color-accent);
    padding: 0.4rem 0.2rem;
}

.text-button:hover,
.text-button:focus-visible {
    color: var(--color-light);
}

.hero-subcopy,
.page-subcopy {
    margin-top: 1.2rem;
    color: var(--color-muted);
    font-weight: 500;
}

.page-subcopy-spaced {
    margin-top: 1.6rem;
}

.page-subcopy-compact {
    margin-top: 0.8rem;
}

.helper-subcopy {
    margin-top: 0.85rem;
    color: var(--color-muted);
    font-weight: 500;
    max-width: 760px;
}

.info-card {
    background: rgba(40, 40, 40, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 1.4rem 1.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.info-card-spaced {
    margin-top: 1.1rem;
}

.info-card-title {
    margin: 0;
    font-weight: 600;
}

.info-card-note {
    margin: 0.75rem 0 0;
    opacity: 0.85;
}

.info-card ul {
    margin: 0.6rem 0 0;
    padding-left: 1.1rem;
    color: var(--color-muted);
}

.info-card li {
    margin: 0.15rem 0;
}

.page-hero {
    padding: 6rem 0 4rem;
    margin-top: -80px;
    padding-top: calc(6rem + 80px);
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, #111111 55%, var(--color-gradient-end) 100%);
}

.thanks-main {
    flex: 1;
    background: linear-gradient(180deg, #151515 0%, #111111 45%, #151515 100%);
    display: flex;
    align-items: center;
    min-height: calc(100vh - 160px);
    width: 100%;
    padding-bottom: 5rem;
}

.thanks-hero {
    background: transparent;
    padding: 0;
}

.thanks-main > .thanks-hero {
    width: 100%;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.page-actions-centered {
    justify-content: center;
}

.page-section {
    padding: 4.5rem 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.6rem;
}

.feature-list li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list h3 {
    margin: 0 0 0.4rem;
}

.feature-list p {
    margin: 0;
    color: var(--color-muted);
}

.card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 1.8rem;
    border-radius: 1.2rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.card.is-clickable:hover,
.card.is-clickable:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(212, 199, 178, 0.3);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
}

.card.is-clickable {
    cursor: pointer;
}

.is-clickable {
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

.is-clickable:hover,
.is-clickable:focus-visible {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.45);
}

.plus-checkout-card {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    cursor: default;
}

.plus-checkout-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: var(--color-muted);
}

.plus-checkout-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid var(--color-border);
    background: rgba(18, 18, 22, 0.85);
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.plus-checkout-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid var(--color-border);
    background: rgba(18, 18, 22, 0.85);
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.plus-checkout-input::placeholder {
    color: rgba(230, 230, 230, 0.45);
}

.plus-checkout-input:focus {
    outline: none;
    border-color: rgba(212, 199, 178, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 199, 178, 0.2);
}

.plus-checkout-select:focus {
    outline: none;
    border-color: rgba(212, 199, 178, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 199, 178, 0.2);
}

.helper-text {
    margin-top: 0.6rem;
}

.plus-checkout-card .helper-text {
    margin-top: 0.6rem;
}

.plus-auth-banner {
    margin-top: 1.6rem;
    padding: 1rem 1.4rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    background: rgba(18, 18, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.plus-auth-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: var(--color-muted);
    display: block;
}

.plus-auth-user {
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.plus-auth-avatar {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.plus-checkout-error {
    margin-top: 1.6rem;
    padding: 1.4rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    background: rgba(18, 18, 22, 0.7);
    text-align: center;
    color: var(--color-muted);
}

.plus-checkout-error-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.plus-select-section {
    padding-top: 0;
    margin-top: -2rem;
}

.plus-select-section .plus-checkout-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
}

.plus-select-section .plus-checkout-input {
    border-color: rgba(255, 255, 255, 0.18);
}

.plus-select-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 3.2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    display: grid;
    gap: 1.8rem;
}

.plus-select-input {
    font-size: 1.25rem;
    padding: 1.2rem 1.4rem;
}

.plus-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.6rem;
}

.plus-select-grid.is-loading {
    min-height: 180px;
    display: grid;
    gap: 0.8rem;
}

.plus-skeleton {
    height: 70px;
    border-radius: 1.1rem;
    border: 1px solid var(--color-border);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    background-size: 200% 100%;
    animation: plus-skeleton-shimmer 1.2s ease-in-out infinite;
}

.plus-select-summary {
    margin-top: 1.1rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid var(--color-border);
    background: rgba(18, 18, 22, 0.65);
}

.plus-select-summary-title {
    margin: 0;
    font-weight: 800;
    color: var(--color-light);
    letter-spacing: -0.01em;
}

.plus-select-summary-body {
    margin: 0.5rem 0 0;
    color: var(--color-muted);
    line-height: 1.5;
}

.plus-select-grid.flash-outline .plus-select-pill {
    border-color: rgba(255, 107, 107, 0.7);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
    animation: flash-outline 1s ease;
}

.plus-select-grid.flash-outline .plus-select-pill.is-selected {
    border-color: rgba(255, 107, 107, 0.7);
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.plus-select-pill {
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 22, 0.8);
    color: var(--color-text);
    padding: 1.8rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-family: inherit;
    cursor: pointer;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.plus-select-pill:hover,
.plus-select-pill:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(212, 199, 178, 0.35);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.plus-select-pill.is-selected {
    border-color: rgba(212, 199, 178, 0.6);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.45);
}

.plus-select-pill.is-unavailable {
    position: relative;
    transition: none;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
    will-change: auto;
    overflow: hidden;
}

.plus-select-pill.is-unavailable::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 10, 0.72);
    pointer-events: none;
}

.plus-select-pill.is-unavailable .plus-select-pill-icon {
    filter: grayscale(1) brightness(0.65);
    opacity: 0.8;
}

.plus-select-pill.is-unavailable .plus-select-pill-title,
.plus-select-pill.is-unavailable .plus-select-pill-text,
.plus-select-pill.is-unavailable .plus-select-pill-status {
    color: rgba(215, 215, 215, 0.7) !important;
}

.plus-select-pill-title {
    font-size: 1.35rem;
    font-weight: 600;
}

.plus-select-pill-text {
    display: grid;
    gap: 0.35rem;
}

.plus-select-pill-icon {
    width: 72px;
    height: 72px;
    max-width: 72px;
    max-height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.plus-summary-guild {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.2rem;
}

.plus-summary-guild img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.plus-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.plus-success-tools {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.plus-success-tools .ghost-button {
    padding: 0.75rem 1rem;
}

.plus-select-pill-sub {
    font-size: 0.95rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.plus-select-pill-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    width: fit-content;
}

.plus-select-pill-status.is-active {
    border-color: rgba(126, 214, 160, 0.5);
    color: rgba(126, 214, 160, 0.9);
    background: rgba(20, 60, 36, 0.4);
}

.plus-select-pill-status.is-inactive {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--color-muted);
    background: rgba(18, 18, 22, 0.5);
}

.plus-select-pill-status.is-not-in-server {
    background: #2A2A2A;
    border-color: rgba(255, 255, 255, 0.26);
    color: rgba(255, 255, 255, 0.86);
}

.plus-select-pill-status.is-free-version {
    background: #1F2A24;
    border-color: rgba(126, 214, 160, 0.34);
    color: rgba(204, 241, 219, 0.94);
}

.plus-select-pill-status.is-plus-active {
    background: #2A233A;
    border-color: rgba(176, 153, 232, 0.42);
    color: rgba(220, 208, 255, 0.95);
}

.plus-select-pill.is-unavailable:hover,
.plus-select-pill.is-unavailable:focus-visible {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.12);
}

.plus-select-actions {
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

body.modal-open {
    overflow: hidden;
}

.plus-select-modal {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.plus-select-modal[hidden] {
    display: none !important;
}

.plus-select-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}

.plus-select-modal-card {
    position: relative;
    width: min(100%, 520px);
    height: auto;
    max-height: 80vh;
    background: #111111;
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    padding: 1.4rem;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
    overflow: auto;
}

@media (min-width: 721px) {
    #plusSelectCheckoutModal {
        padding: 25px 6px;
    }

    #plusSelectCheckoutModal .plus-select-modal-card {
        width: min(100%, 1080px);
        height: auto;
        min-height: 0;
        max-height: calc(100dvh - 50px);
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-plan-stage {
        min-height: 0;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-embed-stage {
        min-height: 700px;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-embed-stage .plus-plan-picker {
        display: none !important;
    }

    #plusSelectCheckoutModal .plus-checkout-layout {
        position: relative;
        min-height: 100%;
        padding-bottom: 0;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-plan-stage .plus-checkout-layout {
        align-content: center;
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-plan-stage .plus-checkout-content {
        min-height: 100%;
        padding-bottom: 0;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-plan-stage .plus-checkout-copy-card {
        margin-top: auto;
        margin-bottom: 15px;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.is-embed-stage:not(.has-embedded-checkout) .plus-checkout-copy-card {
        margin-top: auto;
        margin-bottom: 15px;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.has-embedded-checkout .plus-checkout-copy-card {
        margin-top: 6px;
        margin-bottom: 0;
    }

    #plusSelectCheckoutModal .plus-select-modal-card.has-embedded-checkout .plus-checkout-content {
        justify-content: center;
    }

    #plusSelectCheckoutModal .plus-checkout-footer {
        position: absolute;
        right: 0;
        bottom: 0.2rem;
        width: 420px;
        max-width: 100%;
        margin: 0;
    }
}

.plus-checkout-layout {
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 1.2rem;
    align-items: stretch;
    align-content: start;
}

.plus-checkout-content {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: static;
    top: auto;
    transform: none;
}

.plus-selected-plan-preview {
    margin-bottom: 0.75rem;
    display: grid;
    gap: 0.6rem;
}

.plus-plan-card-left {
    width: 100%;
}

.plus-plan-card-left.is-selected {
    border-color: rgba(212, 198, 163, 0.92);
    box-shadow: 0 0 0 2px rgba(212, 198, 163, 0.24), 0 14px 24px rgba(0, 0, 0, 0.3);
}

.plus-plan-card-left.is-selected.is-popular {
    border-color: rgba(255, 201, 92, 0.95);
    box-shadow: 0 0 0 2px rgba(255, 201, 92, 0.24), 0 14px 24px rgba(0, 0, 0, 0.3);
}

.plus-selected-plan-state {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.74);
}

.plus-selected-plan-savings {
    justify-self: start;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 223, 136, 0.98);
    background: rgba(255, 201, 92, 0.16);
    border: 1px solid rgba(255, 201, 92, 0.4);
    border-radius: 999px;
    padding: 0.14rem 0.42rem;
}

.plus-checkout-copy-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.05rem;
}

.plus-checkout-embed-column {
    min-width: 0;
    display: grid;
    align-self: stretch;
    align-content: center;
}

.plus-plan-picker {
    display: grid;
    gap: 0.95rem;
}

.plus-plan-picker-title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.96);
}

.plus-plan-picker[hidden],
.plus-selected-plan-preview[hidden] {
    display: none !important;
}

.plus-plan-card {
    position: relative;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    padding: 1rem 1.1rem 1.05rem;
    display: grid;
    gap: 0.26rem;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.plus-plan-card:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.26);
}

.plus-plan-card:disabled {
    cursor: default;
    pointer-events: none;
}

.plus-plan-name {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.76);
}

.plus-plan-trial {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 201, 92, 0.95);
    margin-bottom: 0.1rem;
}

.plus-plan-price {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.05;
}

.plus-plan-value-row {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.plus-plan-meta {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.plus-plan-savings {
    justify-self: start;
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 223, 136, 0.98);
    background: rgba(255, 201, 92, 0.18);
    border: 1px solid rgba(255, 201, 92, 0.42);
    border-radius: 999px;
    padding: 0.16rem 0.45rem;
}

.plus-plan-card.is-popular {
    border-color: rgba(255, 201, 92, 0.72);
    background: linear-gradient(180deg, rgba(255, 201, 92, 0.12), rgba(255, 255, 255, 0.05));
}

.plus-plan-card.is-preselected {
    border-color: rgba(255, 201, 92, 0.92);
    background: linear-gradient(180deg, rgba(255, 201, 92, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow: 0 0 0 2px rgba(255, 201, 92, 0.22), 0 14px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
    animation: plus-plan-preselected-pulse 4.2s ease-in-out infinite;
    will-change: transform, box-shadow, border-color;
}

.plus-plan-card.is-preselected:hover {
    border-color: rgba(255, 220, 126, 0.98);
    background: linear-gradient(180deg, rgba(255, 216, 118, 0.25), rgba(255, 255, 255, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(255, 201, 92, 0.28), 0 16px 28px rgba(0, 0, 0, 0.34);
}

.plus-plan-badge {
    position: absolute;
    top: -0.6rem;
    right: 0.95rem;
    background: #ffc95c;
    color: #111111;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.33);
}

.plus-select-checkout-loader {
    margin: 0;
    min-height: 620px;
    display: grid;
    gap: 0.7rem;
    align-content: center;
    align-self: stretch;
    padding-top: 0;
}

.plus-select-checkout-loader:not([hidden]) + .plus-embedded-checkout-shell {
    display: none;
}

.plus-select-checkout-loader[hidden] {
    display: none;
}

.plus-plan-picker:not([hidden]) ~ .plus-embedded-checkout-shell {
    display: none;
}

.plus-checkout-skeleton {
    border-radius: 0.8rem;
    border: 1px solid var(--color-border);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    background-size: 200% 100%;
    animation: plus-skeleton-shimmer 1.2s ease-in-out infinite;
}

.plus-checkout-skeleton.is-title {
    width: 58%;
    height: 1.1rem;
}

.plus-checkout-skeleton.is-row {
    width: 100%;
    height: 2.5rem;
}

.plus-checkout-skeleton.is-block {
    width: 100%;
    height: 20rem;
    margin-top: 0.2rem;
}

.plus-checkout-benefits {
    margin: 0.7rem 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
}

.plus-checkout-benefits li {
    margin: 0;
}

.plus-checkout-pricing {
    margin: 0.85rem 0 0;
    display: grid;
    gap: 0.2rem;
}

.plus-checkout-pricing p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.plus-checkout-price-emphasis {
    font-weight: 700;
}

.plus-checkout-title {
    font-size: 1.4rem;
    font-weight: 800;
}

.plus-checkout-subline {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 1.08rem;
}

.plus-checkout-target {
    margin: 0.9rem 0 0;
    display: grid;
    gap: 0.2rem;
}

.plus-checkout-target p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.plus-checkout-social-proof {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 600;
    font-size: 0.95rem;
}

.plus-checkout-footer {
    margin: 0.8rem 0 0;
    grid-column: 2;
    justify-self: center;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
    text-align: center;
}

#plusSelectOfferModal .plus-select-modal-card {
    max-width: 420px;
}

.plus-select-offer-card {
    display: grid;
    gap: 0.75rem;
}

.plus-select-offer-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.plus-select-offer-list {
    margin: 0.1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.plus-select-offer-price {
    margin: 0.2rem 0 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
}

.plus-select-offer-cancel {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 500;
}

.plus-select-offer-unlock {
    width: 100%;
    justify-content: center;
    font-size: 1.08rem;
    margin-top: 0.4rem;
}

.plus-embedded-checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.plus-embedded-checkout-shell {
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    background: rgba(18, 18, 22, 0.7);
    padding: 0.8rem;
    min-height: 620px;
}

.plus-embedded-checkout-shell iframe {
    border-radius: 0.9rem;
}

.plus-select-modal .plus-embedded-checkout-shell {
    border: 0;
    border-top: 0;
    border-radius: 0;
    background: transparent;
    margin-top: 0;
    padding: 0;
}

.plus-select-modal .plus-embedded-checkout-shell iframe {
    border-radius: 0;
}

.plus-select-hero .lead {
    max-width: 680px;
}

@media (max-width: 720px) {
    .plus-select-section .container {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .plus-select-card {
        width: min(100%, 560px);
        padding: 2.2rem 1.6rem;
        margin-inline: auto;
        justify-items: center;
        align-items: center;
    }

    .plus-select-section .plus-checkout-label {
        text-align: center;
    }

    .plus-select-input {
        width: 100%;
    }

    .plus-select-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100%;
        justify-content: center;
    }

    .plus-select-pill {
        width: 100%;
        max-width: 520px;
    }

    .plus-select-actions {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .plus-checkout-error {
        width: min(100%, 560px);
        margin: 0.8rem auto 0;
    }

    .plus-checkout-error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .plus-select-modal {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        padding: 0;
        place-items: stretch;
    }

    .plus-select-modal-card {
        width: 100vw;
        height: 100dvh;
        max-width: 100vw;
        max-height: 100dvh;
        border-radius: 0;
        border: 0;
        padding: 0.9rem;
        display: flex;
        flex-direction: column;
        overflow: auto;
        box-shadow: none;
    }

    .plus-checkout-layout {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        height: 100%;
    }

    .plus-checkout-embed-column {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 0.85rem;
        display: block;
    }

    .plus-select-checkout-loader {
        margin: 0 0 0.7rem;
        min-height: 0;
        gap: 0.6rem;
        padding-top: 0;
    }

    .plus-plan-picker {
        gap: 0.8rem;
    }

    .plus-plan-card {
        padding: 0.9rem 1rem;
    }

    .plus-select-checkout-loader:not([hidden]) + .plus-embedded-checkout-shell {
        display: block;
    }

    #plusSelectOfferModal {
        place-items: center;
        padding: 1rem;
    }

    #plusSelectOfferModal .plus-select-modal-card {
        width: min(100%, 420px);
        height: auto;
        max-width: 420px;
        max-height: calc(100dvh - 2rem);
        border-radius: 1rem;
        border: 1px solid var(--color-border);
        padding: 1rem;
        display: grid;
        overflow: auto;
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
    }

    .plus-checkout-content {
        display: block;
        position: static;
        transform: none;
        padding-top: 0.55rem;
    }

    .plus-checkout-copy-card {
        padding: 0.9rem;
    }

    .plus-embedded-checkout-header {
        justify-content: space-between;
        align-items: center;
    }

    .plus-embedded-checkout-shell {
        flex: 1;
        border-top: 0;
        min-height: 0;
        width: 100%;
        padding: 0;
    }

    .plus-checkout-footer {
        grid-column: auto;
        margin-top: auto;
        margin-right: 0;
        justify-self: auto;
        text-align: center;
        padding-top: 0.35rem;
    }

    #plusSelectCheckoutModalMount {
        width: 100%;
    }

    .plus-select-card .plus-checkout-input,
    .plus-select-card .plus-checkout-label,
    .plus-select-card .helper-text {
        width: 100%;
        max-width: 520px;
        text-align: center;
    }

    .plus-select-card .plus-checkout-input {
        margin-inline: auto;
    }
}

.status-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
    margin-bottom: 2rem;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
    margin-top: 1.2rem;
}

.status-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    padding: 1.6rem;
    border-radius: 1.2rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 0.6rem;
}

.status-card-operational {
    background: rgba(61, 220, 132, 0.08);
    border-color: rgba(61, 220, 132, 0.24);
}

.status-card-degraded {
    background: rgba(242, 201, 76, 0.08);
    border-color: rgba(242, 201, 76, 0.24);
}

.status-card-offline {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.24);
}

.status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.status-card-loading {
    text-align: center;
    color: var(--color-muted);
}

.status-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-muted);
}

.status-value {
    font-size: clamp(2rem, 1.7rem + 1vw, 2.6rem);
    font-weight: 700;
    margin: 0;
}

.status-meta {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.status-micro {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.85rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid transparent;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-pill-operational {
    color: #d2f7e6;
    background: rgba(61, 220, 132, 0.15);
    border-color: rgba(61, 220, 132, 0.4);
}

.status-pill-degraded {
    color: #ffe5a6;
    background: rgba(242, 201, 76, 0.15);
    border-color: rgba(242, 201, 76, 0.4);
}

.status-pill-offline {
    color: #ffc4c4;
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.4);
}

.status-legend {
    margin-top: 1.2rem;
    padding: 1.4rem 1.6rem;
    text-align: left;
    cursor: default;
}

.status-legend h2 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

.status-legend ul {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.7;
    color: var(--color-muted);
}

.status-legend p {
    margin: 0.75rem 0 0;
    color: var(--color-muted);
}

.status-legend:hover,
.status-legend:focus-visible {
    transform: none;
    border-color: var(--color-border);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.status-updated {
    margin-bottom: 1.4rem;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.status-help {
    text-align: left;
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.status-help p {
    margin: 0;
    color: var(--color-muted);
}

.status-help .cta-button {
    margin-left: auto;
}

.status-help-text {
    display: grid;
    gap: 0.2rem;
}

@media (max-width: 720px) {
    .status-help {
        align-items: flex-start;
    }

    .status-help .cta-button {
        margin-left: 0;
    }
}

.card-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--color-light);
    display: grid;
    gap: 0.4rem;
}

.card-list li {
    margin: 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-top: 1rem;
    background: rgba(212, 199, 178, 0.15);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    max-width: fit-content;
}

.reliability-section {
    padding: 4.5rem 0;
    background: rgba(17, 17, 17, 0.7);
}

.reliability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.privacy-section {
    padding: 4.5rem 0;
}

.credits-section {
    padding-bottom: 2.6rem;
}

.invite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.commands-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.commands-search {
    display: grid;
    gap: 0.5rem;
}

.commands-search-row {
    position: relative;
    display: grid;
}

.commands-search-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 600;
}

.commands-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.commands-chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 22, 0.75);
    color: var(--color-muted);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform var(--transition-base), border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
    font-family: inherit;
}

.commands-chip:hover,
.commands-chip:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(212, 199, 178, 0.35);
    color: var(--color-light);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35);
}

.commands-chip.is-active {
    border-color: rgba(212, 199, 178, 0.55);
    color: var(--color-light);
    background: rgba(50, 50, 56, 0.9);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.4);
}

.command-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.command-meta .tag {
    margin-top: 0;
}

.command-empty {
    text-align: center;
    color: var(--color-muted);
    padding: 1.8rem;
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    background: rgba(18, 18, 22, 0.65);
    margin-top: 1.2rem;
}

.commands-group-title {
    margin: 2.2rem 0 1rem;
    color: var(--color-light);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.commands-group-title:first-of-type {
    margin-top: 1.2rem;
}

.commands-chip,
.plus-select-pill,
.faq-item,
.card.is-clickable {
    will-change: transform;
}

@media (min-width: 860px) {
    .commands-toolbar {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
        align-items: end;
    }
}

.credits-controls {
    position: relative;
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(160px, 220px);
    gap: 1rem 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}

.credits-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 0.4rem;
}

.credits-input,
.credits-select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid var(--color-border);
    background: var(--color-panel);
    color: var(--color-light);
    font-size: 0.95rem;
}

.credits-clear {
    position: absolute;
    right: 1rem;
    top: 2.9rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
}

.credits-clear:hover {
    color: var(--text-primary);
}

.credits-status {
    color: var(--color-muted);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 900px) {
    .credits-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.credits-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 1.2rem;
    padding: 1.6rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.credits-card h3 {
    margin-top: 0;
}

.thanks-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.2rem 1.5rem;
    border-radius: 1.2rem;
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.thanks-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
}

.thanks-label {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.thanks-name {
    margin: 0.2rem 0 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-light);
}

.credits-meta {
    color: var(--color-muted);
    margin: 0.4rem 0;
}

.credits-attribution {
    margin-top: 1rem;
}

.credits-list {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--color-muted);
}

.credits-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.secondary-link {
    font-weight: 600;
    color: var(--color-muted);
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color var(--transition-base), color var(--transition-base);
    background: rgba(255, 255, 255, 0.03);
}

.secondary-link:hover,
.secondary-link:focus-visible {
    color: var(--color-light);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.social-proof {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-muted);
}

.server-count-value {
    font-size: 2.2rem;
    color: var(--color-light);
    font-weight: 700;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}

.device-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, #111111 48%, var(--color-gradient-end) 100%);
    border: 1px solid rgba(212, 199, 178, 0.18);
    border-radius: 28px;
    padding: 3.1rem 2.6rem;
    max-width: 420px;
    width: 70%;
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.55);
    animation: float-card 9s ease-in-out infinite;
    transform-style: preserve-3d;
    will-change: transform;
}

.device-card::before {
    content: '';
    position: absolute;
    inset: -18% -12% auto;
    height: 80%;
    background: radial-gradient(circle at top, rgba(212, 199, 178, 0.28), transparent 65%);
    opacity: 0.6;
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.device-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.device-card-content {
    position: relative;
    z-index: 1;
}

.device-card img {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    margin-bottom: 1.5rem;
}

.device-card-title {
    margin: 0;
    margin-bottom: -0.3rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.device-card-track {
    margin: 0.45rem 0 0;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.device-card-track.is-switching {
    animation: track-swap 420ms ease;
}

@keyframes track-swap {
    0% {
        opacity: 0.4;
        transform: translateY(4px);
    }
    60% {
        opacity: 1;
        transform: translateY(-1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.device-card-artist {
    margin: 0 0 1.25rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.device-card-wave {
    position: relative;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 21, 24, 0.8), rgba(12, 13, 16, 0.9));
    border: 1px solid rgba(212, 199, 178, 0.25);
    box-shadow: inset 0 0 22px rgba(212, 199, 178, 0.12);
}

.device-card-wave::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 199, 178, 0.95), rgba(212, 199, 178, 0.35));
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 220 60" preserveAspectRatio="none"><path d="M0 34 C 14 24 28 44 42 34 C 56 24 70 44 84 34 C 98 24 112 44 126 34 C 140 24 154 44 168 34 C 182 24 196 44 210 34" stroke="%23ffffff" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/><path d="M0 40 C 18 30 36 50 54 40 C 72 30 90 50 108 40 C 126 30 144 50 162 40 C 180 30 198 50 216 40" stroke="%23ffffff" stroke-width="1.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/140% 100%;
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 220 60" preserveAspectRatio="none"><path d="M0 34 C 14 24 28 44 42 34 C 56 24 70 44 84 34 C 98 24 112 44 126 34 C 140 24 154 44 168 34 C 182 24 196 44 210 34" stroke="%23ffffff" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/><path d="M0 40 C 18 30 36 50 54 40 C 72 30 90 50 108 40 C 126 30 144 50 162 40 C 180 30 198 50 216 40" stroke="%23ffffff" stroke-width="1.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/140% 100%;
    opacity: 0.95;
}

.device-card-wave::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 199, 178, 0.35), transparent);
    transform: translateX(-120%);
    animation: wave-scan 5.6s linear infinite;
    mix-blend-mode: screen;
}

@keyframes wave-scan {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

/* Trust strip */
.trust-strip {
    background: rgba(17, 17, 17, 0.9);
    padding: 4.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 3rem;
}

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

.trust-metrics article {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 180px;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.trust-metrics h3 {
    margin: 0 0 0.75rem;
}

.trust-metrics p {
    color: var(--color-muted);
    margin: 0;
}

/* Features */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.45), transparent 45%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card img {
    width: 60px;
    height: 60px;
}

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

.numeric {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* How it works */
.how-section {
    padding: 6rem 0;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.steps li {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 22px;
    padding: 2.4rem 2rem;
    position: relative;
    counter-increment: step;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.steps h3 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.steps p {
    color: var(--color-muted);
    margin: 0;
}

/* Testimonial */
.testimonial-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(212, 199, 178, 0.08), transparent 60%);
}

.testimonial-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    align-items: center;
}

.testimonial-copy blockquote {
    margin: 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-light);
}

.testimonial-copy cite {
    font-style: normal;
    color: var(--color-muted);
}

.testimonial-card {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.4rem 2rem;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card .card-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
}

.testimonial-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.testimonial-card li {
    color: var(--color-muted);
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
}

.faq-item.is-clickable:hover,
.faq-item.is-clickable:focus-visible {
    border-color: rgba(212, 199, 178, 0.35);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--color-accent);
    transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 2rem;
    color: var(--color-muted);
    overflow: hidden;
    transition: grid-template-rows 0.45s ease, padding 0.35s ease;
}

.faq-content-inner {
    overflow: hidden;
    padding-bottom: 1.6rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.32s ease, transform 0.32s ease;
    transition-delay: 0s;
}

.faq-item[open] .faq-content {
    grid-template-rows: 1fr;
}

.faq-item[open] .faq-content-inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.06s;
}

.faq-item:not([open]) .faq-content {
    padding-bottom: 0;
}

.faq-item:not([open]) .faq-content-inner {
    opacity: 0;
    transform: translateY(-6px);
    transition-delay: 0s;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.faq-grid article {
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem 2rem;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-grid h3 {
    margin: 0 0 1rem;
}

.faq-grid p {
    margin: 0;
    color: var(--color-muted);
}

.faq-grid a {
    color: var(--color-accent);
    text-decoration: underline;
}

.policy-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.policy-hero {
    padding: 6rem 0 3.5rem;
    background: linear-gradient(135deg, rgba(212, 199, 178, 0.12), rgba(21, 21, 21, 0.85));
    border-bottom: 1px solid var(--color-border);
}

.policy-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.policy-hero-copy h1 {
    margin: 0.5rem 0 1rem;
    font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3rem);
}

.policy-meta {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.1rem 1.5rem;
    border-radius: 18px;
    background: rgba(13, 13, 13, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 220px;
}

.updated-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 247, 250, 0.6);
}

.policy-meta time {
    font-weight: 600;
    color: var(--color-light);
}

.policy-body {
    padding: 4.5rem 0 6rem;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.92), rgba(21, 21, 21, 0.85));
}

.policy-article {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: clamp(2.5rem, 2rem + 1vw, 3.2rem);
    display: grid;
    gap: 2.2rem;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.55);
}

.policy-article > p {
    color: var(--color-muted);
    margin: 0;
}

.policy-block {
    display: grid;
    gap: 0.8rem;
}

.policy-block h2 {
    margin: 0;
    font-size: 1.45rem;
}

.policy-block p {
    margin: 0;
    color: var(--color-muted);
}

.policy-list {
    margin: 0.2rem 0 0 1.2rem;
    padding: 0;
    color: var(--color-muted);
    display: grid;
    gap: 0.4rem;
}

.policy-separator {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.policy-block a {
    color: var(--color-accent);
    text-decoration: underline;
}

.policy-block a:hover,
.policy-block a:focus-visible {
    color: var(--color-light);
}

@media (max-width: 860px) {
    .policy-meta {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .policy-body {
        padding: 3.5rem 0 5rem;
    }

    .policy-article {
        padding: 2rem;
    }
}

/* Invite */
.invite-section {
    padding: 6rem 0 6.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 199, 178, 0.12), rgba(18, 18, 18, 0.65));
}

.invite-section .cta-button {
    animation: fade-up 0.9s ease 0.3s both;
}

.invite-section h2 {
    font-size: clamp(2rem, 1.6rem + 1.5vw, 2.8rem);
    margin: 0 0 1.5rem;
}

.invite-section p {
    margin: 0 0 2.2rem;
    color: var(--color-muted);
}

/* Homepage compact layout */
main#top .hero-section {
    padding: 6.25rem 0 3.6rem;
    padding-top: calc(6.25rem + 80px);
}

main#top .hero-content {
    gap: 2.4rem;
}

main#top .hero-actions {
    margin: 1.3rem 0 0.9rem;
    gap: 0.8rem;
}

main#top .page-subcopy {
    margin-top: 0.8rem;
}

main#top .section-heading {
    margin-bottom: 2rem;
}

main#top .page-subcopy-spaced {
    margin-top: 1rem;
}

main#top .trust-strip {
    padding: 3rem 0;
}

main#top .trust-strip-inner {
    gap: 1.8rem;
}

main#top .trust-metrics {
    gap: 1.2rem;
}

main#top .trust-metrics article {
    padding: 1.35rem;
    min-height: 0;
}

main#top .features-section {
    padding: 4rem 0;
}

main#top .feature-grid {
    gap: 1.2rem;
}

main#top .feature-card {
    padding: 1.6rem 1.4rem;
    gap: 0.65rem;
}

main#top .reliability-section,
main#top .privacy-section,
main#top .status-section {
    padding: 3.4rem 0;
}

main#top .reliability-grid {
    gap: 1.2rem;
}

main#top .invite-section {
    padding: 4.2rem 0 4.6rem;
}

main#top .invite-section h2 {
    margin-bottom: 1rem;
}

main#top .invite-section p {
    margin-bottom: 1.4rem;
}

@media (max-width: 640px) {
    main#top .hero-section {
        padding: 5.6rem 0 3.1rem;
    }

    main#top .trust-strip {
        padding: 2.4rem 0;
    }

    main#top .features-section,
    main#top .reliability-section,
    main#top .privacy-section,
    main#top .status-section,
    main#top .invite-section {
        padding-top: 2.8rem;
        padding-bottom: 3.1rem;
    }
}

.plus-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.6rem;
}

.plus-cta-note {
    margin: 0;
}

.plus-cta-stack .cta-button {
    justify-content: center;
    text-align: center;
    width: fit-content;
    align-self: center;
}

/* Footer */
.site-footer {
    padding: 2.5rem 0 3rem;
    background: rgba(13, 13, 13, 0.92);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.footer-inner p {
    margin: 0;
    color: var(--color-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: var(--color-muted);
    font-weight: 500;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--color-light);
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        gap: 1rem;
    }

    .hero-content {
        gap: 3rem;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
    }

    .trust-metrics {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

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

    .nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 50%;
        right: auto;
        width: 100vw;
        background: var(--color-panel);
        border: 1px solid var(--color-border);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
        padding: 1.2rem 1.5rem;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: translate(-50%, -12px);
        pointer-events: none;
        visibility: hidden;
        transition: opacity var(--transition-base), transform var(--transition-base), visibility 0s linear var(--transition-base);
        z-index: 200;
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        width: 100%;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li a,
    .cta-button-nav {
        justify-content: center;
        width: 100%;
        border-radius: 999px;
        padding: 0.75rem 1.1rem;
        text-align: center;
        display: flex;
        align-items: center;
    }

    .nav ul li a {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid var(--color-border);
        color: var(--color-light);
    }

    .cta-button-nav {
        background: linear-gradient(135deg, rgba(22, 24, 30, 0.95), rgba(12, 13, 16, 0.98));
        border-color: rgba(212, 199, 178, 0.45);
        box-shadow: inset 0 0 0 1px rgba(212, 199, 178, 0.45), 0 12px 26px rgba(0, 0, 0, 0.55);
    }

    .nav.show {
        opacity: 1;
        transform: translate(-50%, 0);
        pointer-events: auto;
        visibility: visible;
        transition: opacity var(--transition-base), transform var(--transition-base), visibility 0s;
    }

    .testimonial-inner,
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        justify-content: center;
    }

    .device-card {
        width: 100%;
    }

    .page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-actions a {
        justify-content: center;
    }

    .credits-controls {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 2rem, var(--max-width));
    }

    .hero-section {
        padding: 7rem 0 4.5rem;
    }

    .hero-text h1 {
        font-size: clamp(2.2rem, 2rem + 1.2vw, 2.6rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        justify-content: center;
    }

    .social-proof {
        flex-wrap: wrap;
        gap: 0.2rem;
    }

    .steps {
        gap: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

html {
    scroll-behavior: smooth;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-card {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes aurora-shift {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0.75;
    }
    50% {
        transform: translate3d(3%, -2%, 0) rotate(2deg);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
        opacity: 0.75;
    }
}

@keyframes plus-skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes plus-plan-preselected-pulse {
    0%,
    100% {
        transform: translateY(-1px);
        border-color: rgba(255, 201, 92, 0.85);
        box-shadow: 0 0 0 1px rgba(255, 201, 92, 0.2), 0 12px 24px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-3px);
        border-color: rgba(255, 201, 92, 1);
        box-shadow: 0 0 0 3px rgba(255, 201, 92, 0.32), 0 18px 32px rgba(0, 0, 0, 0.36);
    }
}

@keyframes flash-outline {
    0% {
        border-color: rgba(255, 107, 107, 0.85);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.35);
    }
    60% {
        border-color: rgba(255, 107, 107, 0.85);
        box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.18);
    }
    100% {
        border-color: rgba(255, 107, 107, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .device-card,
    .plus-plan-card.is-preselected,
    .plus-trial-badge {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.site-header + main,
main {
    flex: 1;
}

/* Plus Landing */
.plus-page {
    --plus-bg: var(--color-background);
    --plus-panel: rgba(26, 26, 26, 0.88);
    --plus-panel-2: rgba(26, 26, 26, 0.66);
    --plus-stroke: var(--color-border);
    --plus-stroke-2: rgba(255, 255, 255, 0.06);
    --plus-text: var(--color-light);
    --plus-muted: var(--color-muted);
    --plus-accent: var(--color-accent);
    --plus-accent-dark: var(--color-accent-dark);
    --plus-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    --plus-radius: 16px;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, #111111 48%, var(--color-gradient-end) 100%);
    color: var(--plus-text);
    padding-bottom: 92px;
    font-size: 1.06rem;
    line-height: 1.75;
}

.plus-page .plus-main {
    padding-top: 44px;
}

.plus-page h1 {
    margin: 0 0 10px;
    font-size: clamp(2.35rem, 4.8vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.plus-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--plus-stroke-2);
    background: rgba(212, 199, 178, 0.12);
    font-weight: 800;
    letter-spacing: -0.01em;
    width: fit-content;
    color: rgba(245, 247, 250, 0.9);
    margin-bottom: 12px;
    text-transform: none;
}

.plus-page .lead {
    margin: 0 0 14px;
    color: var(--plus-muted);
    font-size: 1.2rem;
    line-height: 1.65;
    max-width: 66ch;
}

.plus-page .hero {
    padding: 0 0 22px;
}

.plus-page .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: start;
}

.plus-page .pill-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin: 14px 0 0;
}

.plus-page .pill {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 1 auto;
    min-width: 0;
    gap: 11px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--plus-stroke-2);
    background: rgba(212, 199, 178, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.plus-page .dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 201, 92, 0.85);
    flex-shrink: 0;
}

.plus-page .hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.plus-page .micro {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.65;
}

.plus-page .plus-micro-spaced {
    margin-top: 12px;
}

.plus-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border: 1px solid rgba(212, 199, 178, 0.35);
    background: linear-gradient(135deg, rgba(22, 24, 30, 0.92), rgba(12, 13, 16, 0.98));
    color: var(--plus-text);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), opacity 120ms ease;
    user-select: none;
    cursor: pointer;
}

.plus-page .btn:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 199, 178, 0.6);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
}

.plus-page .btn.primary {
    border-color: rgba(212, 199, 178, 0.45);
    background: linear-gradient(135deg, rgba(22, 24, 30, 0.92), rgba(12, 13, 16, 0.98));
}

.plus-page .btn.primary:hover {
    border-color: rgba(212, 199, 178, 0.6);
}

.plus-page .btn.ghost {
    background: transparent;
    border-color: var(--plus-stroke);
}

.plus-page .btn.ghost:hover {
    background: rgba(212, 199, 178, 0.08);
    border-color: rgba(212, 199, 178, 0.35);
}

.plus-page .btn.is-loading {
    opacity: 0.92;
    pointer-events: none;
}

.plus-page .btn .spinner {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.85);
    animation: plus-cta-spin 0.8s linear infinite;
    display: none;
}

.plus-page .btn.is-loading .spinner {
    display: inline-block;
}

.plus-page .card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(22, 20, 16, 0.97) 0%, rgba(16, 16, 20, 0.97) 100%);
    border-radius: var(--plus-radius);
    padding: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.plus-page .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 201, 92, 0.85) 40%, rgba(255, 220, 120, 1) 50%, rgba(255, 201, 92, 0.85) 60%, transparent 100%);
    pointer-events: none;
}

.plus-trial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 220, 120, 0.6);
    background: linear-gradient(135deg, #ffcc3e 0%, #f5a800 100%);
    color: #3a2400;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(255, 185, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(255, 240, 180, 0.4);
    animation: badge-pulse 2.8s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 3px 14px rgba(255, 185, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 4px 22px rgba(255, 185, 0, 0.72), 0 1px 3px rgba(0, 0, 0, 0.3); }
}

.plus-page .price {
    display: flex;
    align-items: baseline;
    column-gap: 8px;
    row-gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.plus-page .price .num {
    font-weight: 900;
    font-size: 2.6rem;
    letter-spacing: -0.04em;
}

.plus-page .price .per {
    color: var(--plus-muted);
    font-weight: 700;
}

.plus-page .plus-price-badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 201, 92, 0.45);
    background: rgba(255, 201, 92, 0.16);
    color: rgba(255, 223, 136, 0.98);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    vertical-align: baseline;
}

.plus-page .fine {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.88rem;
    line-height: 1.6;
}

.plus-page .checklist {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.plus-page .checklist li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.97rem;
}

.plus-page .check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(55, 214, 155, 0.16);
    border: 1px solid rgba(55, 214, 155, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.plus-page .check svg {
    width: 12px;
    height: 12px;
}

.plus-page .section {
    padding: 44px 0;
}

.plus-page .section h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.03em;
    font-weight: 900;
}

.plus-page .section p.sub {
    margin: 0 0 24px;
    color: var(--plus-muted);
    line-height: 1.7;
    font-size: 1.08rem;
    max-width: 68ch;
}

.plus-page .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.plus-page #features .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    width: 100%;
}

.plus-page #features .tile {
    grid-column: auto;
}

.plus-page .tile {
    grid-column: span 6;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(22, 22, 26, 0.7);
    border-radius: var(--plus-radius);
    padding: 20px 22px 22px;
}



.plus-page .tile h3 {
    margin: 6px 0 8px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
}

.plus-page .tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

.plus-page .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--plus-stroke-2);
    background: rgba(212, 199, 178, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 5px 0 5px;
}

.plus-page .divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    margin: 4px 0;
}

.plus-page .compare {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--plus-radius);
    overflow: hidden;
    background: rgba(20, 20, 24, 0.75);
}

.plus-page .row {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 0.7fr;
    gap: 10px;
    padding: 14px 18px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.plus-page .row:first-child {
    border-top: none;
    background: rgba(212, 199, 178, 0.08);
    font-weight: 900;
}

.plus-page .row:first-child span:last-child {
    color: rgba(255, 201, 92, 0.95);
}

.plus-page .row span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
}

.plus-page .row .muted {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 650;
}

.plus-page .row.row-highlight {
    background: rgba(212, 199, 178, 0.05);
}

.plus-page .yes {
    color: rgba(55, 214, 155, 0.95);
    font-weight: 900;
}

.plus-page .no {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.plus-page details {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(22, 22, 26, 0.7);
    border-radius: var(--plus-radius);
    padding: 16px 20px;
    grid-column: span 12;
    transition: border-color 0.18s ease;
}

.plus-page details:hover {
    border-color: rgba(255, 255, 255, 0.13);
}

.plus-page details[open] {
    border-color: rgba(255, 255, 255, 0.12);
}

.plus-page summary {
    cursor: pointer;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.plus-page summary::-webkit-details-marker {
    display: none;
}

.plus-page .chev {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    border: 1px solid var(--plus-stroke-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    flex: 0 0 auto;
}

.plus-page details[open] .chev {
    transform: rotate(180deg);
}

.plus-page details p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 1rem;
}

.plus-page .sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    border-top: 1px solid var(--plus-stroke);
    background: rgba(18, 19, 22, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.35);
}

.plus-page .sticky-inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.plus-page .sticky .left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plus-page .sticky .left .top {
    font-weight: 950;
    letter-spacing: -0.02em;
}

.plus-page .sticky .left .sub {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 650;
    font-size: 1rem;
}

.plus-page .plus-inline-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.plus-page .plus-inline-actions-spaced {
    margin-top: 16px;
}

.plus-sticky-trial-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.45rem;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 220, 120, 0.5);
    background: linear-gradient(135deg, #ffcc3e 0%, #f5a800 100%);
    color: #3a2400;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(255, 185, 0, 0.35);
    white-space: nowrap;
}

.plus-page .plus-sticky-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 920px) {
    .plus-page .plus-main {
        padding-top: 28px;
    }

    .plus-page .hero-grid {
        grid-template-columns: 1fr;
    }

    .plus-page .card {
        box-shadow: none;
    }

    .plus-page .pill-row {
        flex-wrap: wrap;
    }

    .plus-page .tile {
        grid-column: span 12;
    }

    .plus-page #features .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plus-page #features .tile {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .plus-page {
        padding-bottom: 118px;
    }

    .plus-page .row {
        grid-template-columns: 1.25fr 0.75fr 0.75fr;
        padding: 12px;
    }

    .plus-page #features .grid {
        grid-template-columns: 1fr;
    }
}

@keyframes plus-cta-spin {
    to {
        transform: rotate(360deg);
    }
}
