:root {
    --bg: #0d0d10;
    --bg-soft: #17171c;
    --panel: rgba(24, 24, 30, 0.92);
    --panel-strong: rgba(33, 33, 40, 0.96);
    --line: rgba(255, 215, 124, 0.14);
    --text: #f4f1e9;
    --muted: #c7bfaf;
    --gold: #f1c96b;
    --gold-strong: #ffdf8e;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    --radius: 24px;
    --radius-sm: 16px;
    --container: min(1120px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(212, 153, 40, 0.18), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(117, 80, 20, 0.16), transparent 24%),
        linear-gradient(180deg, #121216 0%, #09090b 100%);
    line-height: 1.65;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    opacity: 0.35;
}

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

img {
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-shell {
    position: relative;
    z-index: 1;
}

.site-backdrop {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at bottom center, rgba(255, 181, 68, 0.1), transparent 34%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.12) 100%);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(12, 12, 16, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-mark {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--gold-strong), #7b5514);
    box-shadow: 0 0 28px rgba(255, 213, 117, 0.35);
    transform: rotate(45deg);
}

.brand-copy {
    display: grid;
    gap: 0.1rem;
}

.brand-copy strong,
h1,
h2,
h3,
.footer-title,
.tip-number,
.card-kicker,
.eyebrow {
    font-family: "Rajdhani", sans-serif;
    letter-spacing: 0.03em;
}

.brand-copy strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.brand-copy span:last-child {
    color: var(--muted);
    font-size: 0.88rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
}

.site-nav a {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: var(--muted);
    transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(255, 214, 122, 0.1);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

main {
    padding-bottom: 4rem;
}

.page-hero {
    padding: 5rem 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 1.5rem;
    align-items: stretch;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 7vw, 5.4rem);
    line-height: 0.95;
}

.hero-copy {
    max-width: 60ch;
    color: var(--muted);
    font-size: 1.08rem;
    margin-top: 1.2rem;
}

.hero-panel,
.card,
.surface,
.faq-item,
.contact-panel,
.legal-surface {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.hero-panel {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
}

.hero-stat {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 214, 120, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 214, 120, 0.1);
}

.hero-stat span,
.card-kicker,
.tip-number {
    color: var(--gold);
}

.hero-stat strong {
    display: block;
    margin: 0.2rem 0 0.35rem;
    font-size: 1.3rem;
}

.hero-stat p,
.card p,
.footer-copy,
.footer-bottom,
.faq-item p,
.surface p,
.legal-surface p,
.legal-surface li {
    color: var(--muted);
}

section {
    padding: 1.5rem 0;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.2rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.section-head p {
    margin: 0;
    max-width: 56ch;
    color: var(--muted);
}

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

.card,
.surface,
.contact-panel,
.legal-surface {
    border-radius: var(--radius);
}

.card {
    padding: 1.4rem;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover,
.faq-item:hover,
.surface:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 214, 120, 0.18);
}

.card h3,
.surface h3 {
    margin: 0.15rem 0 0.65rem;
    font-size: 1.45rem;
}

.card-kicker {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.92rem;
}

.text-link,
.inline-links a,
.legal-surface a {
    color: var(--gold-strong);
}

.text-link {
    display: inline-flex;
    margin-top: 0.8rem;
}

.surface {
    padding: 1.5rem;
}

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

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

.checklist,
.plain-list,
.legal-surface ul {
    margin: 0.75rem 0 0;
    padding-left: 1.15rem;
}

.checklist li,
.plain-list li,
.legal-surface li {
    margin-bottom: 0.55rem;
}

.tips-grid .card {
    min-height: 100%;
}

.tip-card {
    position: relative;
    overflow: hidden;
}

.tip-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 120, 0.16), transparent 65%);
}

.tip-number {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

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

.faq-item {
    padding: 1.2rem 1.35rem;
    border-radius: 20px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.05rem;
}

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

.faq-item p {
    margin: 0.85rem 0 0;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    margin-top: 1rem;
}

.resource-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.resource-pill {
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.resource-pill strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.12rem;
}

.resource-pill span {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1rem;
}

.contact-panel {
    padding: 1.4rem;
}

.status-message {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 214, 120, 0.08);
}

.status-message.is-error {
    border-color: rgba(255, 118, 118, 0.24);
    background: rgba(255, 118, 118, 0.08);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 0.4rem;
}

.form-row label {
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font: inherit;
}

.form-row textarea {
    min-height: 180px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(255, 214, 120, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 214, 120, 0.08);
}

.field-error {
    color: #ffb5b5;
    font-size: 0.92rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.2rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    color: #16110a;
    background: linear-gradient(135deg, var(--gold-strong), #d4a140);
}

.site-footer {
    padding: 2rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1rem;
}

.footer-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
}

.footer-links {
    display: grid;
    gap: 0.35rem;
}

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

.footer-links a:hover {
    color: var(--gold-strong);
}

.footer-bottom {
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.legal-surface {
    padding: 1.6rem;
}

.legal-surface h1,
.legal-surface h2,
.legal-surface h3 {
    line-height: 1.05;
}

.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
    .hero-grid,
    .card-grid,
    .resource-strip,
    .contact-layout,
    .footer-grid,
    .two-col,
    .three-col {
        grid-template-columns: 1fr;
    }
}

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

    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        right: 1rem;
        left: 1rem;
        padding: 0.8rem;
        border-radius: 24px;
        background: rgba(12, 12, 16, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.9rem 1rem;
    }

    .page-hero {
        padding-top: 3.8rem;
    }

    h1 {
        font-size: clamp(2.3rem, 11vw, 4rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
