@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --color-background: #02000d;
    --color-background-alt: #060425;
    --color-surface: rgba(19, 21, 50, 0.82);
    --color-surface-strong: rgba(26, 29, 72, 0.94);
    --color-surface-soft: rgba(13, 16, 40, 0.72);
    --color-surface-glass: rgba(21, 25, 64, 0.6);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-bright: rgba(94, 238, 255, 0.45);
    --color-brand: #ff3b6a;
    --color-brand-strong: #ff5e8b;
    --color-brand-soft: rgba(255, 59, 106, 0.16);
    --color-accent: #55e4ff;
    --color-accent-soft: rgba(85, 228, 255, 0.18);
    --color-gold: #ffd968;
    --color-success: #3dd4a1;
    --color-danger: #ff6a85;
    --color-text: #f8f7ff;
    --color-muted: #b8b5d8;
    --color-subtle: #8a87ad;
    --shadow-lg: 0 45px 120px -45px rgba(5, 5, 35, 0.85);
    --shadow-md: 0 25px 75px -45px rgba(5, 5, 35, 0.7);
    --shadow-soft: 0 25px 60px -40px rgba(8, 5, 45, 0.55);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --font-display: 'Clash Display', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 220ms ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-background);
    line-height: 1.75;
    letter-spacing: 0.01em;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 10% -10%, rgba(255, 59, 106, 0.24), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(85, 228, 255, 0.22), transparent 50%),
        linear-gradient(160deg, #02000d 0%, #060425 55%, #040019 100%);
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 70%, rgba(21, 14, 60, 0.75), transparent 65%);
    mix-blend-mode: screen;
    opacity: 0.9;
    z-index: -2;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover,
a:focus {
    color: #ffffff;
}

p {
    color: var(--color-muted);
    margin: 0 0 1.25rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-text);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 3.7rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2.1rem, 3vw, 2.8rem);
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

strong {
    color: #ffffff;
    font-weight: 600;
}

code {
    font-family: 'Source Code Pro', monospace;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.2rem 0.4rem;
    color: #fff5d6;
    font-size: 0.85rem;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-frame {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(24px);
    background: linear-gradient(115deg, rgba(3, 2, 22, 0.92), rgba(8, 5, 32, 0.72));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    width: min(1200px, 100% - 3.2rem);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.15rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.32rem;
    text-transform: uppercase;
    font-size: 1rem;
    color: #ffffff;
}

.logo-mark {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-strong));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 16px 40px -20px rgba(255, 59, 106, 0.7);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-link {
    color: var(--color-subtle);
    font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-strong));
    color: #ffffff;
    box-shadow: 0 18px 40px -22px rgba(255, 59, 106, 0.75);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 25px 55px -22px rgba(255, 59, 106, 0.8);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(85, 228, 255, 0.18), rgba(85, 228, 255, 0.38));
    border-color: rgba(85, 228, 255, 0.45);
    color: #ffffff;
    box-shadow: 0 16px 38px -28px rgba(85, 228, 255, 0.75);
}

.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-2px);
    border-color: rgba(85, 228, 255, 0.6);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.btn-ghost:hover,
.btn-ghost:focus {
    border-color: rgba(255, 255, 255, 0.38);
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section {
    position: relative;
    padding: 5.5rem 0;
}

.section-alt {
    background: linear-gradient(160deg, rgba(15, 12, 45, 0.55), rgba(5, 6, 24, 0.4));
}

.inner,
.section .inner,
footer .inner {
    width: min(1200px, 100% - 3.2rem);
    margin: 0 auto;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-eyebrow,
.hero-badge,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    color: var(--color-text);
    background: linear-gradient(135deg, rgba(255, 59, 106, 0.2), rgba(85, 228, 255, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-title {
    margin: 1.2rem 0 1rem;
}

.section-description {
    margin: 0 auto;
    max-width: 680px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0 5.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(255, 59, 106, 0.35), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(85, 228, 255, 0.28), transparent 55%);
    opacity: 0.9;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 3.9rem);
    margin: 0;
}

.hero-lede {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-muted);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.stat-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    box-shadow: var(--shadow-soft);
}

.stat-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-subtle);
}

.stat-card strong,
.stat-value {
    display: block;
    margin: 0.65rem 0 0.5rem;
    font-size: 2.1rem;
    font-family: var(--font-display);
}

.hero-panel {
    display: grid;
    gap: 1.5rem;
}

.panel-card {
    background: linear-gradient(145deg, var(--color-surface-strong), rgba(32, 28, 72, 0.88));
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.panel-card.primary {
    border: 1px solid var(--color-border-bright);
    background: linear-gradient(150deg, rgba(85, 228, 255, 0.22), rgba(32, 28, 72, 0.92));
}

.panel-card h3 {
    margin-top: 0.4rem;
    margin-bottom: 0.6rem;
}

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

.panel-stats div {
    background: rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-stats dt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-subtle);
    margin-bottom: 0.35rem;
}

.panel-stats dd {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.panel-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.panel-list li {
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-list strong {
    font-size: 1rem;
}

.panel-meta {
    font-size: 0.78rem;
    color: var(--color-subtle);
}

.collection-strip {
    margin-top: 2.4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.collection-card {
    background: linear-gradient(160deg, rgba(26, 29, 72, 0.9), rgba(15, 12, 45, 0.72));
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0.45rem;
}

.collection-card span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-subtle);
}

.collection-card strong {
    font-size: 1rem;
}

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

.feature-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.8rem;
}

.feature-card h3 {
    margin: 0;
}

.feature-card p {
    margin-bottom: 0.8rem;
}

.feature-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.55rem;
    color: var(--color-muted);
}

.feature-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(85, 228, 255, 0.15);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
    align-items: stretch;
}

.plan-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 2.1rem;
    background: linear-gradient(155deg, var(--color-surface-strong), rgba(15, 12, 45, 0.75));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1rem;
}

.plan-card.plan-highlight {
    border: 1px solid var(--color-border-bright);
    background: linear-gradient(150deg, rgba(85, 228, 255, 0.22), rgba(26, 22, 70, 0.92));
}

.plan-name {
    margin: 0;
}

.plan-price {
    font-size: 2.4rem;
    font-family: var(--font-display);
}

.plan-meta {
    font-size: 0.9rem;
    color: var(--color-subtle);
}

.plan-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--color-muted);
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--color-brand);
}

.plan-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.plan-footnote {
    font-size: 0.8rem;
    color: var(--color-subtle);
}

.membership-meta {
    margin-top: 2.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.membership-meta-card {
    background: rgba(0, 0, 0, 0.24);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.studio-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem;
    display: grid;
    gap: 0.8rem;
}

.studio-card ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
}

.studio-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-accent);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.workflow-card {
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem;
    display: grid;
    gap: 0.6rem;
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.4rem;
    margin-top: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0.4rem;
    bottom: 0.4rem;
    left: 0.55rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 59, 106, 0.4), rgba(85, 228, 255, 0.35));
}

.timeline-item {
    padding-left: 2.5rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: var(--color-brand);
    left: 0.05rem;
    top: 0.6rem;
    box-shadow: 0 0 0 4px rgba(255, 59, 106, 0.15);
}

.timeline-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

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

.architecture-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem;
    display: grid;
    gap: 0.9rem;
}

.billing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin-top: 2.4rem;
}

.billing-card {
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem;
    display: grid;
    gap: 0.7rem;
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-top: 2.4rem;
}

.callout-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.8rem;
    display: grid;
    gap: 0.8rem;
}

.cta-section {
    padding: 0 0 6rem;
}

.cta-card {
    background: linear-gradient(160deg, rgba(255, 59, 106, 0.28), rgba(26, 22, 70, 0.92));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1.4rem;
    text-align: center;
}

footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(160deg, rgba(5, 4, 18, 0.92), rgba(4, 3, 14, 0.8));
}

footer .inner {
    width: min(1200px, 100% - 3.2rem);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
    color: var(--color-subtle);
    font-size: 0.9rem;
}

footer nav {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.lead {
    font-size: 1.05rem;
    color: var(--color-muted);
}

.support-note {
    font-size: 0.85rem;
    color: var(--color-subtle);
}

.surface-card {
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.surface-dim {
    background: rgba(0, 0, 0, 0.22);
}

.surface-glow {
    background: linear-gradient(145deg, rgba(85, 228, 255, 0.18), rgba(16, 12, 42, 0.9));
    border-color: rgba(85, 228, 255, 0.3);
}

.simple-card {
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.6rem;
}

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

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

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

.form-card {
    background: var(--color-surface-strong);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.45rem;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-subtle);
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    color: #ffffff;
    font: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(85, 228, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(85, 228, 255, 0.25);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.form-footnote {
    font-size: 0.8rem;
    color: var(--color-subtle);
}

.plan-choice {
    position: relative;
    display: block;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.plan-choice:hover {
    transform: translateY(-4px);
    border-color: rgba(85, 228, 255, 0.4);
    box-shadow: 0 20px 40px -30px rgba(85, 228, 255, 0.6);
}

.plan-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-choice-body {
    display: grid;
    gap: 0.5rem;
}

.plan-choice input:checked ~ .plan-choice-body {
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(85, 228, 255, 0.18), rgba(0, 0, 0, 0));
    padding: 0.4rem 0.2rem 0.2rem;
}

.alert {
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(61, 212, 161, 0.12);
    border-color: rgba(61, 212, 161, 0.35);
    color: #daf8ee;
}

.alert-danger {
    background: rgba(255, 106, 133, 0.12);
    border-color: rgba(255, 106, 133, 0.4);
    color: #ffe6ea;
}

.hidden {
    display: none !important;
}

.dashboard-shell {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 2.2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.4rem;
}

.dashboard-card {
    background: rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem;
    display: grid;
    gap: 0.45rem;
}

.metric {
    font-family: var(--font-display);
    font-size: 2.1rem;
}

.membership-card {
    background: linear-gradient(150deg, rgba(255, 59, 106, 0.2), rgba(26, 22, 70, 0.92));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2rem;
    display: grid;
    gap: 0.8rem;
}

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

.kanban-column {
    background: rgba(0, 0, 0, 0.18);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.kanban-column h3 {
    margin: 0;
}

.kanban-list {
    display: grid;
    gap: 0.8rem;
}

.kanban-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: grid;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-state {
    font-size: 0.9rem;
    color: var(--color-subtle);
}

.billing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    color: var(--color-muted);
}

table thead {
    background: rgba(0, 0, 0, 0.22);
}

table th,
table td {
    text-align: left;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 999px;
    background: rgba(85, 228, 255, 0.18);
    color: #ffffff;
}

.callout {
    background: linear-gradient(150deg, rgba(85, 228, 255, 0.18), rgba(255, 59, 106, 0.22));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.4rem;
    box-shadow: var(--shadow-lg);
}

.badge.gold {
    background: linear-gradient(135deg, rgba(255, 217, 104, 0.2), rgba(255, 217, 104, 0.4));
    border-color: rgba(255, 217, 104, 0.45);
    color: #fff7d1;
}

/* Legacy support pages */
.header {
    background: linear-gradient(115deg, rgba(3, 2, 22, 0.92), rgba(8, 5, 32, 0.72));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
}

.header-content {
    width: min(1100px, 100% - 3rem);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.header-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    display: inline-flex;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.container {
    width: min(900px, 100% - 3rem);
    margin: 0 auto;
    padding: 3rem 0;
}

.container h1,
.container h2 {
    font-family: var(--font-display);
}

.container ul {
    padding-left: 1.2rem;
    list-style: disc;
}

footer p {
    margin: 0.4rem 0;
}

@media (max-width: 1024px) {
    .header-inner,
    .section .inner,
    footer .inner {
        width: min(100%, 100% - 2.4rem);
    }

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

    .hero-panel {
        order: -1;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
    }

    .section {
        padding: 4.5rem 0;
    }

    .cta-card {
        padding: 2.2rem 1.6rem;
    }

    footer .inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .plan-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

@media (max-width: 520px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .plan-card {
        padding: 1.8rem;
    }

    .panel-card {
        padding: 1.6rem;
    }

    .form-card {
        padding: 1.8rem;
    }
}
