:root {
    --bg: #09131d;
    --bg-soft: #102235;
    --paper: rgba(248, 251, 255, 0.94);
    --paper-strong: #ffffff;
    --ink: #132131;
    --muted: #607287;
    --line: rgba(19, 33, 49, 0.08);
    --brand: #0e4a73;
    --brand-deep: #0a304a;
    --brand-soft: #d9e8f4;
    --accent: #d57525;
    --accent-soft: #f5e3d3;
    --shadow: 0 24px 70px rgba(3, 12, 19, 0.24);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --font-title: "Bahnschrift", "Segoe UI Variable Display", sans-serif;
    --font-body: "Aptos", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(213, 117, 37, 0.18), transparent 22%),
        radial-gradient(circle at top right, rgba(14, 74, 115, 0.32), transparent 28%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 55%, #14314a 100%);
}

a,
button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
}

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

.hidden {
    display: none !important;
}

.page-glow {
    position: fixed;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(88px);
    opacity: 0.36;
    pointer-events: none;
    z-index: 0;
}

.glow-left {
    top: -10rem;
    left: -10rem;
    background: rgba(213, 117, 37, 0.18);
}

.glow-right {
    top: -10rem;
    right: -8rem;
    background: rgba(14, 74, 115, 0.3);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 1.2rem 1.4rem 0;
}

.site-nav {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1rem 1.25rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(9, 19, 29, 0.56);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 32px rgba(5, 14, 21, 0.18);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: white;
    text-decoration: none;
}

.brand-badge {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    font-weight: 800;
}

.brand-text {
    display: grid;
    gap: 0.15rem;
}

.brand-text strong {
    font-size: 0.98rem;
}

.brand-text small,
.nav-links a {
    color: rgba(228, 237, 245, 0.82);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
}

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

.nav-btn,
.hero-btn {
    border-radius: 999px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-btn:hover,
.hero-btn:hover,
.showcase-image-button:hover {
    transform: translateY(-1px);
}

.nav-btn-primary,
.hero-btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: white;
    box-shadow: 0 14px 28px rgba(10, 48, 74, 0.24);
}

.nav-btn-secondary,
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.nav-btn {
    padding: 0.75rem 1rem;
}

.hero-btn {
    padding: 1rem 1.25rem;
}

.hero-btn-full {
    width: 100%;
}

.text-link {
    padding: 0;
    border: none;
    background: transparent;
    color: var(--brand);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
    cursor: pointer;
}

.landing-page {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 1.4rem;
}

.auth-helper-link {
    width: fit-content;
    margin: -0.35rem 0 0.15rem;
    font-weight: 700;
}

.reset-page-body {
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.reset-page-shell {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
}

.reset-card {
    display: grid;
    gap: 1.4rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
}

.reset-brand {
    color: var(--ink);
}

.reset-brand .brand-text small {
    color: var(--muted);
}

.reset-copy {
    display: grid;
    gap: 0.8rem;
}

.reset-copy h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

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

.reset-form {
    gap: 1rem;
}

.reset-back-link {
    width: fit-content;
    font-weight: 700;
}

.hero-section,
.content-section,
.auth-cta,
.trust-strip {
    margin-top: 1.5rem;
}

.hero-section,
.content-section,
.auth-cta {
    border-radius: var(--radius-xl);
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow);
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 2rem;
    padding: 2.4rem;
}

.hero-copy,
.section-copy,
.auth-cta-copy {
    display: grid;
    align-content: start;
    gap: 1.1rem;
}

.hero-pills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(14, 74, 115, 0.08);
    color: var(--brand-deep);
    font-weight: 800;
    font-size: 0.86rem;
}

.hero-pill-warm {
    background: rgba(213, 117, 37, 0.12);
    color: var(--accent);
}

.eyebrow {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-title);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 5vw, 5.1rem);
    line-height: 0.98;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.02;
}

h3 {
    font-size: 1.25rem;
}

.hero-lede,
.section-copy p,
.section-heading p,
.auth-cta-copy p,
.showcase-copy p,
.testimonial-card p,
.faq-card p,
.contact-card p,
.auth-subtitle,
.auth-sale-note span,
.auth-trust span,
.message {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.hero-proof article,
.trust-card,
.info-card,
.testimonial-card,
.faq-card,
.contact-card,
.showcase-card,
.auth-card,
.hero-visual-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 251, 0.84));
}

.hero-proof article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 22px;
}

.hero-proof strong,
.trust-card strong,
.info-card strong,
.contact-card strong,
.auth-sale-note strong {
    font-size: 1rem;
    color: var(--brand-deep);
}

.hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
}

.hero-visual-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(10, 27, 40, 0.16);
}

.hero-visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-main {
    min-height: 620px;
}

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

.trust-card {
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
}

.trust-card span,
.contact-card a {
    color: var(--muted);
}

.content-section {
    padding: 2rem;
}

.section-heading {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.4rem;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 1.5rem;
    align-items: center;
}

.split-section.reverse {
    grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.95fr);
}

.split-section.reverse .section-copy {
    order: 2;
}

.split-section.reverse .section-visual {
    order: 1;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--ink);
    font-weight: 600;
}

.feature-list li::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--brand));
    flex: 0 0 auto;
}

.section-visual,
.dual-visual {
    display: grid;
    gap: 1rem;
}

.section-visual img,
.dual-visual img {
    width: 100%;
    border-radius: 28px;
    border: 1px solid var(--line);
    object-fit: cover;
    box-shadow: 0 18px 34px rgba(10, 27, 40, 0.14);
}

.showcase-grid,
.cards-grid {
    display: grid;
    gap: 1rem;
}

.showcase-grid,
.cards-grid.three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid.two-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.showcase-card,
.testimonial-card,
.faq-card,
.contact-card,
.info-card {
    border-radius: 26px;
    padding: 1rem;
    min-width: 0;
}

.showcase-card {
    display: grid;
    gap: 1rem;
}

.showcase-image-button {
    padding: 0;
    border-radius: 22px;
    background: transparent;
    overflow: hidden;
}

.showcase-image-button img {
    width: 100%;
    min-height: 240px;
    object-fit: cover;
}

.showcase-copy {
    display: grid;
    gap: 0.45rem;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(213, 117, 37, 0.12);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.84rem;
}

.contact-card {
    display: grid;
    gap: 0.7rem;
    align-content: start;
    overflow: hidden;
}

.contact-card a {
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.5;
}

.contact-card-highlight {
    background: linear-gradient(135deg, rgba(14, 74, 115, 0.96), rgba(10, 48, 74, 0.98));
    color: white;
}

.contact-card-highlight p,
.contact-card-highlight a,
.contact-card-highlight strong {
    color: rgba(244, 248, 251, 0.94);
}

.auth-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: 1.4rem;
    padding: 2rem;
}

.auth-card {
    border-radius: 30px;
    padding: 1.35rem;
}

.auth-card-header,
.auth-sale-note,
.auth-form,
.auth-trust,
.form-grid {
    display: grid;
    gap: 0.9rem;
}

.auth-card-header {
    gap: 0.4rem;
}

.auth-card-header h3 {
    font-size: 1.6rem;
}

.auth-sale-note {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(14, 74, 115, 0.08), rgba(213, 117, 37, 0.08));
}

.tab-strip {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(14, 74, 115, 0.08);
    margin: 1rem 0;
}

.tab {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-weight: 700;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.tab.active {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: white;
    box-shadow: 0 10px 24px rgba(10, 48, 74, 0.22);
}

.auth-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

input,
select {
    width: 100%;
    border: 1px solid rgba(19, 33, 49, 0.12);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

input:focus,
select:focus {
    outline: none;
    border-color: rgba(14, 74, 115, 0.34);
    box-shadow: 0 0 0 4px rgba(14, 74, 115, 0.08);
}

.auth-trust article {
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: rgba(14, 74, 115, 0.05);
}

.auth-trust strong {
    font-size: 0.94rem;
}

.auth-trust span {
    text-align: right;
}

.message {
    min-height: 1.4rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 16, 0.72);
}

.lightbox-dialog {
    position: relative;
    width: min(1180px, 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(3, 12, 19, 0.45);
    z-index: 1;
}

.lightbox-dialog img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    background: #071018;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-deep);
    font-weight: 900;
    z-index: 2;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 1160px) {
    .hero-section,
    .split-section,
    .auth-cta {
        grid-template-columns: 1fr;
    }

    .split-section.reverse .section-copy,
    .split-section.reverse .section-visual {
        order: initial;
    }

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

    .showcase-grid,
    .cards-grid.three-cols,
    .cards-grid.two-cols,
    .trust-strip,
    .hero-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .site-nav {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 1rem;
        gap: 0.9rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.75rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        flex: 0 0 auto;
        padding: 0.7rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-actions,
    .hero-actions,
    .auth-trust article {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-actions {
        width: 100%;
    }

    .nav-btn {
        width: 100%;
    }

    .hero-section,
    .content-section,
    .auth-cta {
        padding: 1.3rem;
    }

    .form-grid.two {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 640px) {
    .site-header {
        position: static;
        padding: 0.85rem 0.85rem 0;
    }

    .site-nav {
        border-radius: 20px;
        padding: 0.85rem;
    }

    .brand-text small {
        display: none;
    }

    .brand-text strong {
        font-size: 0.92rem;
    }

    .landing-page {
        padding: 0.85rem;
    }

    .hero-section,
    .content-section,
    .auth-cta {
        border-radius: 24px;
        padding: 1rem;
    }

    h1 {
        font-size: 2.15rem;
        line-height: 1.02;
    }

    h2 {
        font-size: 1.65rem;
    }
}
