:root {
    --bg-gradient: linear-gradient(160deg, #0b1220 0%, #1f2937 35%, #020817 100%);
    --brand-primary: #ff4d4f;
    --brand-primary-dark: #d63637;
    --brand-secondary: #0b1220;
    --brand-green: #22c55e;
    --brand-soft: #f8fafc;
    --brand-muted: #64748b;
    --surface: #ffffff;
    --border-soft: rgba(148, 163, 184, 0.18);
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.18);
    --shadow-card: 0 18px 48px rgba(2, 8, 23, 0.18);
    --container-width: min(1180px, 92vw);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--brand-soft);
    color: var(--brand-secondary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    margin: 0 auto;
    max-width: var(--container-width);
}

.premium-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(2, 8, 23, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 0.9rem 1.2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.88;
}

.brand-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(2, 8, 23, 0.94);
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.nav-links.is-open {
    transform: translateY(0);
}

.nav-links a {
    color: rgba(248, 250, 252, 0.9);
    font-weight: 500;
    font-size: 1.05rem;
}

.nav-links .nav-cta {
    margin-top: 1.4rem;
    color: rgba(248, 250, 252, 0.92);
    font-weight: 600;
    opacity: 0.9;
}

.nav-links .nav-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: var(--brand-primary);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(255, 77, 79, 0.35);
}

.nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    cursor: pointer;
    color: #fff;
}

.nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.hero {
    position: relative;
    padding: 6.5rem 0 5rem;
    background: var(--bg-gradient);
    color: rgba(248, 250, 252, 0.98);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 77, 79, 0.12));
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(0.6px);
    opacity: 0.45;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 77, 79, 0.05) 70%, transparent 100%);
}

.hero-bg::before {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -130px;
}

.hero-bg::after {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -140px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 2.8rem;
    padding: 0 1.2rem;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
    width: fit-content;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 8vw, 3.8rem);
    line-height: 1.08;
    font-weight: 700;
}

.headline-highlight {
    color: #fff7ed;
}

.hero-subtitle {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(248, 250, 252, 0.82);
    max-width: 560px;
}

.typewriter-wrapper {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.6rem;
}

.typewriter-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(248, 250, 252, 0.55);
}

.typewriter {
    display: inline-flex;
    min-height: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(248, 250, 252, 0.14);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    position: relative;
}

.typewriter::after {
    content: "";
    width: 2px;
    background: rgba(248, 250, 252, 0.85);
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.4rem;
    animation: cursor 0.8s linear infinite;
}

@keyframes cursor {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4d4f 0%, #ff784f 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(255, 77, 79, 0.38);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(255, 77, 79, 0.45);
}

.btn-outline {
    border: 1px solid rgba(248, 250, 252, 0.35);
    color: rgba(248, 250, 252, 0.92);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(248, 250, 252, 0.12);
    transform: translateY(-2px);
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.82);
}

.hero-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-benefits i {
    color: var(--brand-green);
}

.hero-visual-card {
    background: rgba(248, 250, 252, 0.96);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
    display: grid;
    gap: 1.5rem;
}

.hero-visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-pill {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(2, 8, 23, 0.08);
    color: var(--brand-secondary);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.hero-metric {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(2, 8, 23, 0.04);
    display: grid;
    gap: 0.4rem;
}

.metric-label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-muted);
}

.hero-metric strong {
    font-size: 1.6rem;
    color: var(--brand-secondary);
}

.metric-badge {
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-weight: 600;
}

.metric-badge.up {
    background: rgba(34, 197, 94, 0.14);
    color: #166534;
}

.metric-badge.neutral {
    background: rgba(37, 99, 235, 0.14);
    color: #1d4ed8;
}

.hero-visual-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-price {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--brand-primary-dark);
}

.hero-visual-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.3rem;
    border-radius: 14px;
    background: var(--brand-secondary);
    color: #fff;
    font-weight: 600;
}

.section {
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    position: relative;
}

.section-muted {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.65) 0%, #fff 100%);
}

.section-header {
    text-align: center;
    display: grid;
    gap: 0.8rem;
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    color: var(--brand-muted);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin: 0;
    color: var(--brand-secondary);
}

.section-header p {
    margin: 0;
    color: var(--brand-muted);
    max-width: 640px;
    justify-self: center;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

.step-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1rem;
}

.step-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 77, 79, 0.92) 0%, rgba(255, 120, 79, 0.88) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(255, 77, 79, 0.35);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.step-icon img {
    width: 44px;
    height: 44px;
}

.step-card h3 {
    margin: 0;
    font-size: 1.4rem;
}

.step-card p {
    margin: 0;
    color: var(--brand-muted);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.16);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 77, 79, 0.26) 0%, rgba(255, 120, 79, 0.44) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 36px rgba(255, 77, 79, 0.28);
}
.feature-icon img {
    width: 34px;
    height: 34px;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.3rem;
}

.feature-card p {
    margin: 0;
    color: var(--brand-muted);
}

.pricing-section {
    background: linear-gradient(135deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.85) 100%);
    color: #f8fafc;
}

.pricing-card {
    background: rgba(2, 8, 23, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 32px;
    padding: clamp(2.6rem, 6vw, 3.4rem);
    box-shadow: 0 30px 60px rgba(8, 20, 40, 0.45);
    display: grid;
    gap: 2.2rem;
}

.pricing-header h2 {
    color: #fff;
}

.pricing-header p {
    color: rgba(248, 250, 252, 0.7);
    margin: 0.75rem 0 0;
}

.pricing-highlight {
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    padding: 1.8rem;
    border-radius: 26px;
    background: radial-gradient(circle at top, rgba(255, 120, 79, 0.32) 0%, rgba(2, 8, 23, 0.35) 60%, rgba(2, 8, 23, 0.1) 100%);
    border: 1px solid rgba(255, 120, 79, 0.25);
    box-shadow: 0 24px 48px rgba(255, 77, 79, 0.25);
}

.pricing-amount {
    font-size: clamp(2.8rem, 6vw, 3.6rem);
    font-weight: 700;
    color: #ff9a7a;
    letter-spacing: -0.02em;
}

.pricing-frequency {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.68);
}

.pricing-note {
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.72);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.pricing-list li {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    color: rgba(248, 250, 252, 0.85);
}

.pricing-list i {
    color: var(--brand-green);
    font-size: 1.2rem;
}

.pricing-footer {
    display: grid;
    gap: 1rem;
    text-align: center;
}

.pricing-subtext {
    margin: 0;
    color: rgba(248, 250, 252, 0.6);
}

.support-section {
    background: #0b1220;
    color: #f8fafc;
}

.support-grid {
    display: grid;
    gap: 1.2rem;
}

.support-card {
    display: grid;
    gap: 0.5rem;
    padding: 1.6rem;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.06);
    border: 1px solid rgba(248, 250, 252, 0.08);
    color: #f8fafc;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 77, 79, 0.35);
    background: rgba(255, 77, 79, 0.08);
}

.support-icon {
    font-size: 1.9rem;
    color: #fff;
}

.final-cta {
    background: #fff8f6;
}

.final-cta-card {
    background: #fff;
    border-radius: 28px;
    padding: clamp(2.4rem, 6vw, 3.6rem);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.8rem;
}

.final-actions {
    display: grid;
    gap: 0.75rem;
}

.final-subtext {
    color: var(--brand-muted);
}

.site-footer {
    background: #020817;
    color: rgba(248, 250, 252, 0.75);
    padding: 2.6rem 0;
}

.footer-inner {
    padding: 0 1.2rem;
    display: grid;
    gap: 1.5rem;
}

.footer-brand {
    display: inline-flex;
    gap: 0.85rem;
    align-items: center;
}

.footer-links {
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.55);
}

.register-body {
    margin: 0;
    background: var(--bg-gradient);
    color: #f8fafc;
    min-height: 100vh;
}

.register-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 8vw, 5rem) 1.2rem;
}

.register-card {
    width: 100%;
    max-width: 980px;
    background: rgba(2, 8, 23, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 32px;
    padding: clamp(2.4rem, 6vw, 3.2rem);
    box-shadow: 0 40px 80px rgba(8, 20, 40, 0.45);
}

.register-heading {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    display: grid;
    gap: 0.7rem;
}

.register-heading span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: rgba(248, 250, 252, 0.6);
}

.register-heading h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.6rem);
    color: #fff;
}

.register-heading p {
    margin: 0;
    color: rgba(248, 250, 252, 0.7);
}

.register-form {
    display: grid;
    gap: clamp(2rem, 5vw, 2.8rem);
}

.fieldset {
    display: grid;
    gap: 1.2rem;
}

.fieldset legend {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 250, 252, 0.55);
}

.fieldset-grid {
    display: grid;
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    border: 1px solid rgba(248, 250, 252, 0.16);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    background: rgba(2, 8, 23, 0.45);
    color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 248, 246, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.25);
}

.form-helper {
    font-size: 0.82rem;
    color: rgba(248, 250, 252, 0.55);
}

.form-actions {
    display: grid;
    gap: 1rem;
}

.btn-register {
    border: none;
    border-radius: 18px;
    padding: 1rem 1.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    color: #0b1220;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.35);
}

.btn-link {
    justify-content: center;
    color: rgba(248, 250, 252, 0.72);
}

.checkbox-field {
    display: grid;
    gap: 0.4rem;
}

.checkbox-control {
    display: inline-flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: rgba(248, 250, 252, 0.78);
    font-size: 0.95rem;
}

.checkbox-control input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    accent-color: var(--brand-primary);
}

.register-alerts {
    display: grid;
    gap: 0.75rem;
}

.form-alert {
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 77, 79, 0.18);
    border: 1px solid rgba(255, 77, 79, 0.35);
    color: #ffb4b4;
}

.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.spinner-overlay.active {
    display: flex;
}

.spinner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid rgba(248, 250, 252, 0.2);
    border-top-color: #f8fafc;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.register-overlay-text {
    text-align: center;
    color: rgba(248, 250, 252, 0.85);
    margin-top: 1.1rem;
    display: grid;
    gap: 0.3rem;
}

.auth-shell {
    min-height: 100vh;
    background: var(--bg-gradient);
    color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5rem) 1.4rem;
}

.auth-layout {
    width: 100%;
    max-width: 1080px;
    display: grid;
    gap: clamp(2rem, 5vw, 3rem);
    background: rgba(2, 8, 23, 0.78);
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 36px 72px rgba(8, 20, 40, 0.45);
    padding: clamp(2.4rem, 5vw, 3.4rem);
}

.auth-info {
    display: grid;
    gap: 1.2rem;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.12);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}

.auth-info h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.2;
}

.auth-info p {
    margin: 0;
    color: rgba(248, 250, 252, 0.75);
    max-width: 520px;
}

.auth-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    color: rgba(248, 250, 252, 0.85);
}

.auth-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.auth-benefits i {
    font-size: 1.15rem;
    color: var(--brand-primary);
}

.auth-form-card {
    background: rgba(1, 10, 24, 0.92);
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: clamp(2rem, 5vw, 2.6rem);
    display: grid;
    gap: 1.5rem;
}

.auth-form-header {
    display: grid;
    gap: 0.6rem;
    text-align: center;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.12);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    justify-self: center;
}

.auth-form-header h2 {
    margin: 0;
    font-size: 1.6rem;
}

.auth-form-header p {
    margin: 0;
    color: rgba(248, 250, 252, 0.65);
}

.auth-form {
    display: grid;
    gap: 1.2rem;
}

.auth-form .btn {
    width: 100%;
}

.auth-alerts {
    display: grid;
    gap: 0.75rem;
}

.auth-alert {
    border-radius: 14px;
    padding: 0.85rem 1rem;
    background: rgba(255, 77, 79, 0.16);
    border: 1px solid rgba(255, 77, 79, 0.28);
    color: #ffd5d5;
    font-weight: 500;
}

.auth-support {
    display: grid;
    gap: 0.35rem;
    text-align: center;
    color: rgba(248, 250, 252, 0.6);
    font-size: 0.95rem;
}

.auth-support a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-bg span {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(248, 250, 252, 0.14);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }

    .hero-actions .btn {
        min-width: 220px;
    }

    .pricing-footer {
        grid-template-columns: auto;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        padding: 0;
        gap: 1.8rem;
        background: transparent;
        transform: none;
    }

    .nav-links a {
        font-size: 0.95rem;
        color: rgba(248, 250, 252, 0.75);
        transition: color 0.2s ease;
    }

    .nav-links a:hover {
        color: #fff;
    }

    .nav-links .nav-cta {
        margin-top: 0;
    }

    .nav-links .nav-primary {
        box-shadow: 0 16px 32px rgba(255, 77, 79, 0.3);
    }

    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

    .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fieldset-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: auto auto auto;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .auth-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: center;
    }

    .auth-info {
        gap: 1.6rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 0 6rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fieldset-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .support-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .final-cta-card {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
}

@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
