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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #0e0e0e;
    --bg2: #161616;
    --bg3: #1e1e1e;
    --bg4: #252525;
    --g: #C49A2A;
    --gl: #2a2310;
    --gm: #8a6a18;
    --glight: #f5d87a;
    --text: #f0ece0;
    --muted: #888;
    --muted2: #aaa;
    --border: #2a2a2a;
    --border2: #333;
}

html {
    background: #0e0e0e;
    overflow-x: hidden
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    width: 100%;
    overflow-x: hidden
}

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

/* Ensure all block sections never exceed viewport width */
.nav, .trust-bar, .section, .why-section, .features-section,
.pricing-section, .compare, .faq, .cta-strip, .footer {
    max-width: 100%
}

/* NAV */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(14, 14, 14, 0.96);
    backdrop-filter: blur(10px);
    z-index: 100
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-door {
    width: 28px;
    height: 28px
}

.logo em {
    font-style: normal;
    color: var(--g)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.nav-right a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s
}

.nav-right a:hover {
    color: var(--text)
}

/* LOCALE PICKER */
.locale-picker {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-left: 1px solid var(--border2);
    padding-left: 1rem;
    margin-left: -0.5rem
}

.locale-sel {
    background: var(--bg3);
    border: 1px solid var(--border2);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    padding: 0.3rem 1.6rem 0.3rem 0.55rem;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.45rem center;
    transition: border-color 0.2s
}

.locale-sel:hover {
    border-color: var(--gm)
}

.locale-sel:focus {
    border-color: var(--g)
}

.locale-sel option {
    background: var(--bg3);
    color: var(--text)
}

/* Country + Currency custom dropdowns */
#lp-country-dd {
    width: 260px
}

.lp-curr-wrap {
    position: relative
}

.lp-curr-btn {
    cursor: pointer;
    white-space: nowrap
}

.lp-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 300;
    width: 230px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 0.5rem;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5)
}

.lp-dropdown.lp-open {
    display: block
}

.lp-search {
    width: 100%;
    background: var(--bg4);
    border: 1px solid var(--border2);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    padding: 0.35rem 0.55rem;
    border-radius: 7px;
    outline: none;
    margin-bottom: 0.4rem
}

.lp-search:focus {
    border-color: var(--g)
}

.lp-list {
    list-style: none;
    max-height: 210px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border2) transparent
}

.lp-list li {
    font-size: 13px;
    padding: 0.38rem 0.55rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--muted2);
    display: flex;
    align-items: center;
    gap: 0.3rem
}

.lp-list li:hover {
    background: var(--bg4);
    color: var(--text)
}

.lp-list li.lp-active {
    color: var(--g)
}

.lp-code {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.04em
}

.lp-unavailable {
    opacity: 0.4;
    cursor: default !important
}

.lp-unavailable:hover {
    background: transparent !important;
    color: var(--muted2) !important
}

.lp-soon {
    margin-left: auto;
    font-size: 10px;
    color: var(--muted);
    font-style: italic
}

.btn-nav {
    background: var(--g);
    color: #0e0e0e !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700
}

.btn-nav:hover {
    background: var(--glight) !important
}

/* HERO */
.hero {
    padding: 6rem 2.5rem 5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--g);
    font-weight: 600;
    margin-bottom: 1.25rem
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--text)
}

.hero h1 em {
    font-style: normal;
    color: var(--g)
}

.hero p {
    font-size: 17px;
    color: var(--muted2);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 2.5rem
}

.preorder-banner {
    background: var(--gl);
    border: 1px solid var(--gm);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2.5rem
}

.preorder-banner svg {
    width: 14px;
    height: 14px;
    stroke: var(--g);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.preorder-banner span {
    font-size: 13px;
    color: var(--glight);
    font-weight: 600
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-gold {
    background: var(--g);
    color: #0e0e0e;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 700;
    font-family: inherit;
    transition: background 0.2s
}

.btn-gold:hover {
    background: var(--glight)
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border2);
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s
}

.btn-outline:hover {
    border-color: var(--g);
    background: var(--gl)
}

.hero-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 1rem
}

/* TRUST BAR */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: var(--bg2)
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted2)
}

.trust-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--g);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

/* SECTIONS */
.section {
    padding: 5rem 2.5rem
}

.section-inner {
    max-width: 900px;
    margin: 0 auto
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--g);
    font-weight: 600;
    margin-bottom: 0.75rem
}

.section h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text)
}

.section-sub {
    font-size: 16px;
    color: var(--muted2);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 3.5rem
}

/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem
}

.step {
    padding: 1.5rem;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--gl);
    border: 1px solid var(--gm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--g);
    margin-bottom: 1rem
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text)
}

.step p {
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.65
}

/* WHY DIFFERENT */
.why-section {
    padding: 5rem 2.5rem;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.why-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 2px;
    margin-top: 3rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden
}

.why-col {
    padding: 2.5rem
}

.why-col.bad {
    background: var(--bg3)
}

.why-col.good {
    background: var(--gl)
}

.why-col-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem
}

.why-col.bad .why-col-label {
    color: var(--muted)
}

.why-col.good .why-col-label {
    color: var(--g)
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.25rem
}

.why-item:last-child {
    margin-bottom: 0
}

.why-item svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px
}

.why-col.bad .why-item svg {
    stroke: #555
}

.why-col.good .why-item svg {
    stroke: var(--g)
}

.why-item p {
    font-size: 14px;
    line-height: 1.6
}

.why-col.bad .why-item p {
    color: var(--muted)
}

.why-col.good .why-item p {
    color: var(--glight)
}

.why-quote {
    margin-top: 3.5rem;
    padding: 2rem;
    background: var(--bg3);
    border-left: 3px solid var(--g);
    border-radius: 0 12px 12px 0;
    max-width: 640px
}

.why-quote p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic
}

.why-quote span {
    font-size: 13px;
    color: var(--muted);
    margin-top: 0.75rem;
    display: block
}

/* FEATURES */
.features-section {
    padding: 5rem 2.5rem
}

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

.feat-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.2s
}

.feat-card:hover {
    border-color: var(--gm)
}

.feat-card.gold-border {
    border-color: var(--gm)
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: var(--gl);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem
}

.feat-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.5;
    stroke: var(--g)
}

.feat-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text)
}

.feat-card p {
    font-size: 13px;
    color: var(--muted2);
    line-height: 1.65
}

/* PRICING */
.pricing-section {
    padding: 5rem 2.5rem;
    background: var(--bg2);
    border-top: 1px solid var(--border)
}

.pricing-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center
}

.toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 2rem 0 3rem;
    flex-wrap: wrap
}

.toggle-label {
    font-size: 14px;
    color: var(--muted);
    cursor: pointer
}

.toggle-label.active {
    color: var(--text);
    font-weight: 600
}

.toggle {
    width: 46px;
    height: 26px;
    background: var(--border2);
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    border: none;
    transition: background 0.2s;
    flex-shrink: 0
}

.toggle.on {
    background: var(--g)
}

.toggle-thumb {
    width: 20px;
    height: 20px;
    background: var(--bg);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left 0.2s
}

.toggle.on .toggle-thumb {
    left: 23px;
    background: #0e0e0e
}

.save-pill {
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid var(--border2);
    transition: background 0.2s, color 0.2s, border-color 0.2s
}

.save-pill.show {
    background: var(--gl);
    color: var(--glight);
    border-color: var(--gm)
}

.plans {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    grid-template-rows: repeat(8, auto);
    gap: 1.25rem;
    text-align: left
}

.plan {
    grid-row: span 8;
    display: grid;
    grid-template-rows: subgrid;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform 0.2s, border-color 0.2s
}

.plan:hover {
    transform: translateY(-3px)
}

.plan.popular {
    border: 2px solid var(--g)
}

.plan.premium {
    border: 2px solid var(--gm)
}

.popular-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--g);
    color: #0e0e0e;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap
}

.tier-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gl);
    color: var(--glight);
    border: 1px solid var(--gm)
}

.plan h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text)
}

.plan .desc {
    font-size: 13px;
    color: var(--muted2);
    margin-bottom: 1.5rem;
    line-height: 1.55
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.2rem
}

.amt {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text)
}

.per {
    font-size: 14px;
    color: var(--muted)
}

.first-note {
    font-size: 12px;
    color: var(--g);
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 18px
}

.install-fee {
    font-size: 11px;
    color: var(--muted2);
    margin-bottom: 1.25rem;
    padding: 5px 10px;
    background: var(--bg4);
    border-radius: 6px;
    border: 1px solid var(--border2)
}

.install-fee strong {
    color: var(--text)
}

.plan-features {
    list-style: none;
    margin-bottom: 1.75rem
}

.plan-features li {
    font-size: 13px;
    color: var(--muted2);
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5
}

.plan-features li:last-child {
    border-bottom: none
}

.plan-features li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: none;
    stroke-width: 2
}

.plan-features li.inc svg {
    stroke: var(--g)
}

.plan-features li.gold svg {
    stroke: var(--glight)
}

.plan-features li.out {
    opacity: 0.35
}

.plan-features li.out svg {
    stroke: var(--muted)
}

.btn-plan {
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    transition: all 0.2s;
    border: 1.5px solid var(--gm);
    background: transparent;
    color: var(--g)
}

.btn-plan:hover {
    background: var(--gl)
}

.btn-plan.primary {
    background: var(--g);
    color: #0e0e0e;
    border-color: var(--g)
}

.btn-plan.primary:hover {
    background: var(--glight)
}

.preorder-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 1.5rem
}

/* COMPARE */
.compare {
    padding: 0 2.5rem 5rem;
    max-width: 960px;
    margin: 0 auto
}

.compare h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    color: var(--text)
}

.ctable {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: fixed
}

.ctable th {
    padding: 0.85rem 0.75rem;
    color: var(--muted);
    font-weight: 700;
    border-bottom: 1px solid var(--border2);
    text-align: center
}

.ctable th:first-child {
    text-align: left;
    width: 38%
}

.ctable td {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    color: var(--muted2)
}

.ctable td:first-child {
    text-align: left;
    color: var(--muted);
    font-size: 13px
}

.ctable tr:last-child td {
    border-bottom: none
}

.ctable .hl {
    background: var(--bg2)
}

.ctable .hlg {
    background: var(--gl)
}

.tick-g {
    color: var(--g);
    font-weight: 700;
    font-size: 15px
}

.dash {
    color: var(--border2)
}

/* FAQ */
.faq {
    padding: 5rem 2.5rem;
    max-width: 720px;
    margin: 0 auto
}

.faq h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: var(--text)
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    cursor: pointer
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem
}

.faq-q svg {
    width: 15px;
    height: 15px;
    stroke: var(--muted);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform 0.2s
}

.faq-item.open .faq-q svg {
    transform: rotate(45deg);
    stroke: var(--g)
}

.faq-a {
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.2s
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 0.85rem
}

/* CTA */
.cta-strip {
    padding: 5rem 2.5rem;
    text-align: center;
    background: var(--bg2);
    border-top: 1px solid var(--border)
}

.cta-strip h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem
}

.cta-strip h2 em {
    font-style: normal;
    color: var(--g)
}

.cta-strip p {
    font-size: 16px;
    color: var(--muted2);
    margin-bottom: 2rem;
    line-height: 1.7
}

.cta-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 1rem
}

/* FOOTER */
.footer {
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--bg)
}

.footer p {
    font-size: 13px;
    color: var(--muted)
}

.footer a {
    font-size: 13px;
    color: var(--g);
    text-decoration: none
}

/* Nav locale row — desktop: inline; mobile: own full-width row */
.nav-locale-row {
    display: contents
}

@media (max-width: 900px) {
    .nav {
        padding: 0.85rem 1rem;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.4rem 0.75rem
    }

    .nav-right {
        display: contents
    }

    .nav-locale-row {
        display: block;
        width: 100%;
        border-top: 1px solid var(--border);
        padding-top: 0.5rem
    }

    .locale-picker {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        flex-wrap: wrap
    }

    .lp-dropdown {
        left: 0;
        right: auto
    }

}

@media (max-width: 900px) {
    .plans {
        grid-template-columns:repeat(2, 1fr);
        grid-template-rows: repeat(7, auto) repeat(7, auto)
    }

    .plan {
        grid-row: span 7
    }
}

@media (max-width: 600px) {
    .compare {
        overflow-x: auto
    }

    .why-grid {
        grid-template-columns:1fr
    }

    .plans {
        grid-template-columns:1fr;
        grid-template-rows: none
    }

    .plan {
        grid-row: auto;
        display: flex;
        flex-direction: column
    }

    .hero h1 {
        font-size: 36px
    }
}

/* ── Currency mismatch modal ─────────────────────────────────────────────── */
.curr-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000
}
.curr-modal {
    background: var(--bg2);
    border: 1px solid var(--gm);
    border-radius: 12px;
    padding: 2rem;
    max-width: 420px;
    width: calc(100% - 2rem);
    box-shadow: 0 8px 40px rgba(0,0,0,0.8)
}
.curr-modal p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.5rem
}
.curr-modal-btns {
    display: flex;
    flex-direction: column;
    gap: 0.6rem
}
.curr-modal-btns button {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.15s
}
.curr-modal-btns .btn-default {
    background: var(--g);
    color: #0e0e0e
}
.curr-modal-btns .btn-default:hover {
    background: var(--glight)
}
.curr-modal-btns .btn-chosen {
    background: var(--gl);
    border-color: var(--gm);
    color: var(--g)
}
.curr-modal-btns .btn-chosen:hover {
    background: var(--bg3);
    border-color: var(--g)
}
.curr-modal .btn-return-pricing {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 13px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s
}
.curr-modal .btn-return-pricing:hover {
    opacity: 1
}
