@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --ink: #1c120e;
    --coffee: #3b241a;
    --espresso: #160d0a;
    --cream: #f7f0e5;
    --paper: #fffdf8;
    --sand: #ead9c3;
    --caramel: #bd7b36;
    --gold: #e6af59;
    --gold-soft: #f2cf91;
    --sage: #6f7d6b;
    --danger: #a74633;
    --muted: #77665c;
    --line: rgba(72, 43, 29, .14);
    --shadow: 0 24px 70px rgba(34, 18, 12, .14);
    --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.65;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .25;
    background-image: radial-gradient(rgba(54, 31, 21, .22) .55px, transparent .55px);
    background-size: 5px 5px;
    z-index: 20;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", Arial, sans-serif; letter-spacing: -.045em; line-height: 1.07; }
h1 { font-size: clamp(3rem, 6vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.8rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
.eyebrow {
    color: var(--caramel);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ee6e43;
    box-shadow: 0 0 0 0 rgba(238, 110, 67, .6);
    animation: pulse 1.8s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(238,110,67,0); } }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: wait; opacity: .7; }
.button-gold {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    box-shadow: 0 12px 30px rgba(174, 112, 45, .28);
}
.button-dark { background: var(--coffee); color: #fff8ed; }
.button-wide { width: 100%; }
.text-link, .header-cta {
    color: inherit;
    font-weight: 800;
    text-decoration: none;
}
.text-link span { display: inline-block; margin-left: 7px; transition: transform .2s; }
.text-link:hover span { transform: translateY(4px); }
.flash-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: 44px;
    padding: 6px 5vw;
    color: #fff5e7;
    background: var(--espresso);
    font-size: .78rem;
    letter-spacing: .03em;
}
.flash-strip div { display: flex; align-items: center; gap: 9px; }
.flash-lock {
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 99px;
    color: var(--espresso);
    background: var(--gold);
    font-size: .73rem;
    font-weight: 800;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5vw;
    border-bottom: 1px solid rgba(70, 42, 30, .09);
    background: rgba(248, 241, 230, .88);
    backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: .86rem; font-weight: 800; line-height: 1.2; text-decoration: none; }
.brand small { display: block; margin-top: 3px; color: var(--caramel); font-size: .58rem; letter-spacing: .14em; }
.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    background: var(--coffee);
    font-family: "Playfair Display";
    font-size: 1.45rem;
}
.header-cta { font-size: .8rem; text-transform: uppercase; }
.hero {
    display: grid;
    min-height: 84vh;
    grid-template-columns: 1.05fr .95fr;
    gap: 38px;
    align-items: center;
    max-width: 1500px;
    margin: auto;
    padding: 76px 5vw 82px;
}
.hero-copy h1 { max-width: 760px; margin-bottom: 21px; color: var(--coffee); }
.hero-lead { max-width: 710px; color: #5d493f; font-size: 1.15rem; }
.hero-lead em { color: var(--caramel); font-family: "Playfair Display"; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin: 29px 0; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; max-width: 730px; }
.hero-trust span, .academy-tags span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--muted);
    background: rgba(255,255,255,.33);
    font-size: .72rem;
    font-weight: 700;
}
.hero-media { position: relative; }
.hero-frame {
    position: relative;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, .55);
    border-radius: 31px;
    background: #24130f;
    box-shadow: var(--shadow);
    transform: rotate(1.4deg);
}
.hero-frame img { display: block; width: 100%; aspect-ratio: 1 / 1.28; object-fit: contain; background: #050505; }
.hero-frame-glow { position: absolute; inset: auto 8% 0; height: 2px; background: var(--gold); box-shadow: 0 0 50px 14px var(--gold); opacity: .68; }
.float-note {
    position: absolute;
    right: -16px;
    bottom: -23px;
    display: grid;
    width: 132px;
    height: 132px;
    place-content: center;
    border-radius: 50%;
    color: #fffaf2;
    background: var(--coffee);
    text-align: center;
    box-shadow: var(--shadow);
}
.float-note b { color: var(--gold); font-size: 2rem; line-height: .9; }
.float-note span { max-width: 80px; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.metric-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 25px 5vw;
    color: #f9eede;
    background: var(--coffee);
}
.metric-ribbon div { padding: 8px 26px; border-right: 1px solid rgba(255,255,255,.14); }
.metric-ribbon div:last-child { border-right: 0; }
.metric-ribbon strong { display: block; color: var(--gold); font-size: 1.8rem; }
.metric-ribbon span { color: #e9d8c1; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.section { padding: 118px 5vw; }
.section-intro { max-width: 780px; }
.section-intro.narrow { margin: 0 auto 44px; text-align: center; }
.section-intro p:last-child { font-size: 1.04rem; }
.split-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; max-width: 1320px; margin: auto; }
.story-copy { max-width: 720px; }
.rich-copy p { margin: 0 0 15px; }
.rich-copy ul,.rich-copy ol { color: var(--muted); }
.story-copy.has-drop-cap .rich-copy::first-letter { float: left; padding: 10px 12px 1px 0; color: var(--caramel); font-family: "Playfair Display"; font-size: 6rem; font-weight: 700; line-height: .68; text-shadow: 2px 2px 0 rgba(230,175,89,.17); }
.quote-card { margin-top: 28px; padding: 22px 25px; border-left: 4px solid var(--gold); color: var(--coffee); background: #efe0cd; font-family: "Playfair Display"; font-size: 1.5rem; }
.evidence-section { background: #fffaf2; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; max-width: 1320px; margin: auto; }
.proof-card, .testimonial-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 17px;
    background: #2a1712;
    box-shadow: 0 10px 34px rgba(41, 23, 16, .13);
}
.proof-card img { display: block; width: 100%; aspect-ratio: 1.1 / 1; object-fit: cover; transition: transform .5s ease; }
.proof-card:hover img, .testimonial-card:hover img { transform: scale(1.045); }
.proof-card span, .testimonial-card span { position: absolute; right: 10px; bottom: 10px; padding: 6px 9px; border-radius: 99px; color: #fff4e5; background: rgba(25,14,10,.76); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.dark-section { color: #fff3e5; background: var(--espresso); }
.dark-section h2 { color: #fff5e9; }
.dark-section p { color: #d6beaa; }
.testimonial-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 1450px; margin: auto; }
.testimonial-card img { display: block; width: 100%; aspect-ratio: .72 / 1; object-fit: cover; transition: transform .5s ease; }
.curriculum-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1320px; margin: auto; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 990px; margin: auto; }
.curriculum-card, .bonus-card {
    min-height: 300px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.36);
}
.curriculum-card span, .bonus-card span { display: block; margin-bottom: 52px; color: var(--caramel); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.curriculum-card p, .bonus-card p { font-size: .9rem; }
.bonus-section { color: #fff7ec; background: var(--coffee); }
.bonus-section h2, .bonus-section h3 { color: #fff8ef; }
.bonus-card { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.055); }
.bonus-card p { color: #dec6b0; }
.fit-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; max-width: 1320px; margin: auto; }
.fit-list { border-top: 1px solid var(--line); }
.fit-list div { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10px; padding: 22px 4px; border-bottom: 1px solid var(--line); }
.fit-list span { color: var(--muted); }
.academy-note { padding-top: 20px; }
.academy-card { max-width: 1100px; margin: auto; padding: 50px; border-radius: var(--radius); color: #fff4e8; background: linear-gradient(135deg, #42271d, #1c100d); box-shadow: var(--shadow); }
.academy-card h2 { color: #fff8ee; }
.academy-card p { max-width: 800px; color: #e4cfbc; }
.academy-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.academy-tags span { color: #f3dfc9; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.07); }
.offer-section { padding-top: 38px; }
.offer-card { display: grid; grid-template-columns: 1fr 380px; gap: 50px; max-width: 1170px; margin: auto; padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); background: #fffaf3; box-shadow: var(--shadow); }
.timer-box { display: flex; align-items: center; justify-content: space-between; max-width: 570px; margin: 25px 0; padding: 14px 16px; border-radius: 12px; color: #fff8ee; background: var(--coffee); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.timer-box strong { color: var(--gold); font-size: 1.25rem; }
.offer-list { display: grid; gap: 9px; padding: 0; list-style: none; }
.offer-list li::before { content: "✓"; margin-right: 10px; color: var(--caramel); font-weight: 800; }
.price-panel { display: flex; flex-direction: column; justify-content: center; padding: 27px; border-radius: 18px; color: #fff7ec; background: var(--coffee); text-align: center; }
.price-panel span, .price-panel em { color: #dec6b0; font-size: .77rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.price-panel s { margin: 3px 0; color: #d19b76; font-size: 1.55rem; }
.price-panel small { width: max-content; margin: 14px auto; padding: 5px 8px; border-radius: 4px; color: var(--espresso); background: var(--gold); font-size: .66rem; font-weight: 800; }
.price-panel strong { color: #fff9ed; font-size: 4.8rem; letter-spacing: -.09em; line-height: 1; }
.price-panel .button { margin: 23px 0 10px; }
.price-panel p { margin: 0; color: #dec6b0; font-size: .74rem; }
.support-section { padding-top: 10px; }
.support-card { max-width: 1100px; margin: auto; text-align: center; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.support-grid span { padding: 14px; border: 1px solid var(--line); border-radius: 99px; color: var(--coffee); font-size: .85rem; font-weight: 800; }
.policy-section { padding-top: 15px; }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; max-width: 1100px; margin: auto; }
.policy-grid article { padding: 27px; border-top: 2px solid var(--gold); background: rgba(255,255,255,.33); }
.policy-grid p { font-size: .85rem; }
.final-cta { padding: 110px 5vw; color: #fff8ee; background: linear-gradient(120deg, #21110d, #4c2d21); text-align: center; }
.final-cta h2 { max-width: 950px; margin: 0 auto 28px; color: #fff8ee; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px 5vw; color: #b9a18d; background: #180d0a; font-size: .72rem; }
dialog { border: 0; }
dialog::backdrop { background: rgba(19, 10, 8, .72); backdrop-filter: blur(7px); }
.checkout-modal { width: min(520px, calc(100vw - 30px)); padding: 34px; border-radius: 20px; color: var(--ink); background: var(--paper); box-shadow: var(--shadow); }
.checkout-modal h2 { font-size: 2rem; }
.checkout-modal form { display: grid; gap: 13px; margin-top: 20px; }
.checkout-modal label { color: var(--coffee); font-size: .77rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.checkout-modal input, .unlock-form input { width: 100%; margin-top: 7px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: #fffdfa; }
.checkout-modal input:focus, .unlock-form input:focus { border-color: var(--caramel); box-shadow: 0 0 0 3px rgba(189,123,54,.13); }
.checkout-modal small { display: block; margin-top: 13px; color: var(--muted); font-size: .7rem; }
.checkout-modal .button span { margin-left: 6px; }
.crypto-link { display: block; margin: 12px auto 0; border: 0; color: var(--caramel); background: transparent; font-size: .78rem; font-weight: 800; text-decoration: underline; cursor: pointer; }
.modal-close { position: absolute; top: 12px; right: 15px; border: 0; color: var(--muted); background: transparent; font-size: 2rem; line-height: 1; }
.lightbox { max-width: min(1000px, calc(100vw - 30px)); padding: 12px; border-radius: 13px; background: #1b0e0a; }
.lightbox img { display: block; max-width: 100%; max-height: 86vh; border-radius: 7px; object-fit: contain; }
.flash-modal { width: min(480px,calc(100vw - 24px)); padding: 34px; border-radius: 22px; color: #fff7ec; background: linear-gradient(145deg,#3d241b,#1b0e0b); box-shadow: 0 28px 80px rgba(0,0,0,.34); text-align: center; }
.flash-modal h2 { margin: 10px 0; color: #fff8ee; font-size: 2.4rem; }
.flash-modal p { color: #e2c8b4; }
.flash-kicker { color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.flash-price { display: grid; margin: 17px 0 10px; }
.flash-price s { color: #cfad93; }
.flash-price strong { color: var(--gold); font-size: 4rem; letter-spacing: -.08em; line-height: 1; }
.flash-modal small { display: block; margin: 0 0 17px; color: #ddc4ae; }
.crypto-modal { width: min(820px, calc(100vw - 24px)); max-height: calc(100vh - 24px); overflow: auto; padding: 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; color: #f8f2ec; background: linear-gradient(135deg,#181818,#0e0e0e); box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.crypto-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(5px); }
.crypto-modal p { color: #aaa; }
.crypto-title, .crypto-success-title { margin: 0 0 20px; color: #ef3430 !important; font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.crypto-success-title { color: #27d46e !important; }
.crypto-modal h3 { margin-top: 30px; color: #ddd; }
.crypto-wallet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 15px; }
.crypto-wallet-grid button { display: grid; gap: 3px; place-items: center; padding: 25px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; color: #f6f4f1; background: rgba(255,255,255,.06); cursor: pointer; }
.crypto-wallet-grid button.active { border-color: #e7a400; background: linear-gradient(135deg,rgba(230,166,0,.2),rgba(255,255,255,.06)); }
.crypto-wallet-grid i { color: #5fd58d; font-size: 2.1rem; font-style: normal; font-weight: 800; }
.crypto-wallet-grid b { font-size: 1.05rem; }
.crypto-wallet-grid span { color: #929292; }
.crypto-wallet-detail { margin-top: 24px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.025); text-align: center; }
.crypto-wallet-detail img { display: block; width: 190px; max-width: 100%; margin: 0 auto 20px; border-radius: 12px; background: #fff; }
.crypto-address { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; background: rgba(255,255,255,.035); text-align: left; }
.crypto-address code { overflow: auto; flex: 1; color: #d3d3d3; white-space: nowrap; }
.crypto-address button { padding: 7px 12px; border: 0; border-radius: 7px; color: #ddd; background: #101010; }
.crypto-copy-status { display: block; margin-top: 9px; color: #83d99b; font-size: .84rem; font-weight: 700; text-align: center; animation: toast-in .25s ease; }
.crypto-copy-status[hidden] { display: none; }
.crypto-wallet-detail strong, .crypto-wallet-detail small { display: block; margin-top: 17px; color: #f5ad27; }
.crypto-wallet-detail small { color: #a7a7a7; }
.crypto-confirm, .crypto-submit-button { width: 100%; margin-top: 26px; padding: 18px; border: 0; border-radius: 14px; color: #fff; background: #ed2828; font-size: 1rem; font-weight: 800; cursor: pointer; }
.crypto-wait-modal { max-width: 720px; padding: 70px 50px; text-align: center; }
.crypto-wait-modal h2 { margin-top: 25px; color: #f4f4f4; }
.crypto-loader { width: 76px; height: 76px; margin: auto; border: 7px solid rgba(255,255,255,.12); border-top-color: #ed2828; border-radius: 50%; animation: spin .9s linear infinite; }
.crypto-submit-modal { max-width: 720px; }
.crypto-submit-modal form { display: grid; gap: 17px; margin-top: 28px; }
.crypto-submit-modal label { color: #ccc; font-weight: 800; }
.crypto-submit-modal input { width: 100%; margin-top: 8px; padding: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: #f4f4f4; background: rgba(255,255,255,.06); outline: 0; }
.crypto-form-error { margin: 0; padding: 12px 14px; border: 1px solid rgba(255,108,99,.4); border-radius: 9px; color: #ffaaa4 !important; background: rgba(180,35,28,.18); font-size: .86rem; font-weight: 700; }
.crypto-form-error[hidden] { display: none; }
.crypto-submit-button { margin-top: 4px; color: #102315; background: #20d76d; }
.crypto-success-modal { max-width: 650px; }
.crypto-success-modal h2 { color: #f4f4f4; }
.flash-midnight { background: #151014; }
.flash-gold { color: #2a170f; background: linear-gradient(135deg,#f4d18b,#d89d3d); }
.flash-gold h2,.flash-gold p,.flash-gold small,.flash-gold .flash-kicker { color: #2a170f; }
.flash-scarcity { background: linear-gradient(135deg,#5b241d,#25100d); }
.flash-clean { color: var(--coffee); background: #fffaf3; }
.flash-clean h2,.flash-clean p,.flash-clean small { color: var(--coffee); }
.toast-stack { position: fixed; right: 18px; bottom: 18px; z-index: 50; display: grid; gap: 9px; width: min(360px, calc(100vw - 36px)); }
.toast { padding: 13px 15px; border-left: 4px solid var(--gold); border-radius: 9px; color: #fff8ef; background: #2f1a14; box-shadow: 0 15px 35px rgba(0,0,0,.22); font-size: .85rem; animation: toast-in .25s ease; }
.toast.error { border-color: #ec7d68; }
.spinner { display: inline-block; width: 14px; height: 14px; margin-right: 8px; border: 2px solid rgba(37,20,14,.25); border-top-color: #25140e; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.portal-body { min-height: 100vh; padding: 28px; background: radial-gradient(circle at top left, #6a4530, #23120e 68%); }
.portal-shell, .vault-shell { max-width: 1100px; margin: auto; }
.portal-topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 3px; color: #f7e5d1; }
.portal-brand { display: flex; align-items: center; gap: 10px; color: #fff8ee; text-decoration: none; }
.portal-brand span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--espresso); background: linear-gradient(135deg,var(--gold-soft),var(--gold)); font-weight: 800; }
.portal-brand b,.portal-brand small { display: block; }
.portal-brand small { color: #d3b9a3; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.secure-pill { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 99px; color: #d9ebd8; background: rgba(77,123,85,.25); font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.portal-card { max-width: 730px; margin: 5vh auto; padding: 40px; border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); }
.success-mark { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 18px; border-radius: 50%; color: #fff; background: var(--sage); font-size: 1.7rem; font-weight: 800; }
.muted { color: var(--muted); }
.delivery-note { margin-top: 15px; padding: 12px 14px; border-left: 3px solid var(--gold); border-radius: 8px; color: #684b39; background: #fbf2e4; font-size: .84rem; }
.receipt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 10px; margin: 24px 0 12px; padding: 18px; border-radius: 12px; background: #f4eadc; font-size: .86rem; }
.receipt-grid span { color: var(--muted); }
.text-button { border: 0; color: var(--caramel); background: transparent; font-size: .78rem; font-weight: 800; text-decoration: underline; }
.unlock-panel { margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); }
.unlock-form { display: flex; gap: 9px; }
.unlock-form input { margin: 0; max-width: 190px; font-size: 1.5rem; font-weight: 800; letter-spacing: .27em; text-align: center; }
.portal-assurance { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; max-width: 850px; margin: 0 auto 25px; }
.portal-assurance div { padding: 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.065); }
.portal-assurance b,.portal-assurance span { display: block; }
.portal-assurance b { color: #f8eadb; font-size: .83rem; }
.portal-assurance span { margin-top: 4px; color: #cdb39e; font-size: .73rem; }
.vault-shell { padding: 30px 0; }
.vault-header { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 23px; padding: 29px; border-radius: 20px; background: var(--paper); }
.vault-header h1 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 4rem); }
.vault-header p { margin-bottom: 0; }
.product-library { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.library-card { padding: 25px; border-radius: 17px; background: var(--paper); }
.library-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 23px; }
.library-number { color: var(--gold); font-size: 2.2rem; font-weight: 800; }
.tag, .coming-soon { padding: 6px 9px; border-radius: 99px; color: var(--caramel); background: #f4e4d1; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.video-shell { position: relative; overflow: hidden; min-height: 230px; border-radius: 12px; background: #1d100d; }
.video-poster { position: absolute; inset: 0; z-index: 3; display: grid; place-content: center; gap: 13px; color: #f6e5d1; background: radial-gradient(circle, rgba(105,65,43,.8), #1b0d0a); text-align: center; }
.video-poster span { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.video-play { padding: 10px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: #24130f; background: var(--gold); font-weight: 800; }
.video-shell iframe { width: 100%; height: 230px; border: 0; }
.vault-footer { padding: 20px; color: #ddc4ae; font-size: .76rem; text-align: center; }
.vault-footer a, .portal-actions a { color: #f1c875; }
.portal-actions { display: flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 800; }
.logout-link { display: inline-flex; align-items: center; gap: 5px; }
.logout-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.vault-support { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 16px; padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; color: #fff8ee; background: linear-gradient(135deg,#253a2b,#17251c); box-shadow: var(--shadow); }
.portal-support { max-width: 850px; margin: 0 auto 25px; }
.vault-support h2 { margin-bottom: 5px; color: #fff8ee; font-size: 1.7rem; }
.vault-support p { margin-bottom: 0; color: #cce0d1; }
.whatsapp-mark { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; color: #17341f; background: #83d99b; font-size: .85rem; font-weight: 800; }
.whatsapp-button { color: #16331e; background: #83d99b; }
@media print {
    body { background: #fff; }
    .print-hide { display: none !important; }
    .portal-card { margin: 0; box-shadow: none; }
}
@media (max-width: 950px) {
    .hero { grid-template-columns: 1fr; padding-top: 56px; }
    .hero-media { max-width: 690px; }
    .metric-ribbon, .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-row { grid-template-columns: repeat(2, 1fr); }
    .split-story, .fit-section, .offer-card { grid-template-columns: 1fr; }
    .offer-card { gap: 24px; }
    .section { padding-top: 88px; padding-bottom: 88px; }
}
@media (max-width: 620px) {
    h1 { font-size: 3.35rem; }
    h2 { font-size: 2.45rem; }
    .flash-strip { align-items: stretch; flex-direction: column; gap: 4px; padding: 7px 14px; }
    .flash-strip div { display: block; }
    .flash-strip span { margin-right: 6px; }
    .flash-lock { width: 100%; }
    .site-header { padding: 12px 16px; }
    .header-cta { padding: 8px 10px; border-radius: 99px; color: #fff8ee; background: var(--coffee); font-size: .62rem; }
    .hero, .section { padding-right: 18px; padding-left: 18px; }
    .hero { min-height: auto; gap: 30px; padding-top: 42px; padding-bottom: 55px; }
    .hero-copy h1 { font-size: clamp(3rem,15vw,4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions,.hero-actions .button { width: 100%; }
    .hero-frame { border-width: 6px; border-radius: 21px; }
    .float-note { right: -4px; width: 104px; height: 104px; }
    .metric-ribbon { grid-template-columns: 1fr 1fr; padding: 15px 8px; }
    .metric-ribbon div { padding: 12px 10px; }
    .metric-ribbon strong { font-size: 1.4rem; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
    .curriculum-grid, .bonus-grid, .policy-grid, .support-grid, .product-library { grid-template-columns: 1fr; }
    .curriculum-card, .bonus-card { min-height: auto; }
    .curriculum-card span, .bonus-card span { margin-bottom: 28px; }
    .academy-card, .offer-card { padding: 26px; }
    .price-panel strong { font-size: 4rem; }
    .site-footer, .vault-header { align-items: flex-start; flex-direction: column; }
    .portal-body { padding: 12px; }
    .portal-card { padding: 25px; }
    .unlock-form { flex-direction: column; }
    .unlock-form input { max-width: none; }
    .vault-support { grid-template-columns: 1fr; }
    .portal-assurance { grid-template-columns: 1fr; }
    .fit-list div { grid-template-columns: 1fr; }
    .receipt-grid { grid-template-columns: 1fr; }
    .checkout-modal { padding: 27px 20px; }
    .crypto-modal { padding: 27px 20px; }
    .crypto-wallet-grid { grid-template-columns: 1fr; }
}
