/* ==============================
   SureBet — Mentoria Premium
   ID Visual: Vermelho / Dourado / Preto
   ============================== */
:root {
    --bg:          #0a0a0a;
    --bg-2:        #0f0f0f;
    --bg-card:     rgba(15, 15, 15, 0.95);
    --red:         #C0392B;
    --red-light:   #E74C3C;
    --red-dim:     rgba(192, 57, 43, 0.12);
    --red-glow:    rgba(192, 57, 43, 0.3);
    --gold:        #C9A227;
    --gold-light:  #E8B84B;
    --gold-dim:    rgba(201, 162, 39, 0.1);
    --gold-glow:   rgba(201, 162, 39, 0.25);
    --border:      rgba(192, 57, 43, 0.18);
    --border-gold: rgba(201, 162, 39, 0.2);
    --border-dim:  rgba(255, 255, 255, 0.05);
    --text:        #FFFFFF;
    --muted:       #666;
    --muted-2:     #3a3a3a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

.mono { font-family: 'Roboto Mono', monospace; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

/* Brand text style: SURE white + BET red */
.brand-sure  { color: var(--text); }
.brand-bet   { color: var(--red-light); }
.brand-tag   { color: var(--gold); }

/* Red accent text */
.red-text {
    color: var(--red-light);
    text-shadow: 0 0 16px var(--red-glow);
}

/* Gold accent text */
.gold-text {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-mono {
    color: var(--gold-light);
    background: var(--gold-dim);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.88em;
}

/* ==============================
   KEYFRAMES
   ============================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0%   { transform: translateX(-120%) skewX(-15deg); }
    100% { transform: translateX(220%)  skewX(-15deg); }
}
@keyframes glowBreathe {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50%       { opacity: 0.9; transform: translateX(-50%) scale(1.2); }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
@keyframes scanLine {
    0%   { top: -2px; }
    100% { top: 100%; }
}

/* Scroll animations */
.animate { opacity: 0; transform: translateY(28px); }
.fade-in-up {
    animation: fadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.98);
    border-bottom-color: rgba(192, 57, 43, 0.35);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
    padding: 10px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
}

/* Shield SVG logo */
.logo-shield {
    width: 44px; height: 52px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(192, 57, 43, 0.4));
}

.logo-wordmark {
    display: flex; flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.5rem;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border);
    background: var(--red-dim);
    color: var(--red-light);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: rgba(192, 57, 43, 0.2);
    border-color: rgba(192, 57, 43, 0.4);
    box-shadow: 0 0 20px var(--red-glow);
}

.nav-cta-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red-light);
    box-shadow: 0 0 6px var(--red-light);
    animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ==============================
   HERO
   ============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 150px 0 90px;
    overflow: hidden;
}

#particle-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

/* Subtle grid — like a trading terminal */
.hero-grid-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
        linear-gradient(rgba(192, 57, 43, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 57, 43, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 25%, transparent 70%);
}

.hero-glow {
    position: absolute; top: 15%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(192, 57, 43, 0.1) 0%, transparent 65%);
    z-index: 1; pointer-events: none;
    animation: glowBreathe 6s ease-in-out infinite;
}

/* Hero entrance cascade */
.hero .pre-tag   { animation: slideDown 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero h1         { animation: fadeUp   1s   cubic-bezier(0.16,1,0.3,1) 0.4s  both; }
.hero .hero-sub  { animation: fadeUp   0.9s cubic-bezier(0.16,1,0.3,1) 0.68s both; }
.hero .cta-btn   { animation: scaleIn  0.8s cubic-bezier(0.34,1.56,0.64,1) 0.9s both; }
.terminal-card   { animation: fadeUp   1.1s cubic-bezier(0.16,1,0.3,1) 1.15s both, floatCard 6s ease-in-out 2.4s infinite; }

.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    max-width: 900px; margin: 0 auto;
}

/* Pre-tag */
.pre-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(192, 57, 43, 0.07);
    border: 1px solid rgba(192, 57, 43, 0.25);
    color: var(--muted);
    padding: 8px 20px; border-radius: 4px;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 2px; margin-bottom: 32px;
    text-transform: uppercase;
}

.pre-tag-icon { font-size: 0.9rem; }
.pre-tag-sep  { color: var(--muted-2); }

/* H1 */
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 800; letter-spacing: -1px;
    margin-bottom: 28px;
    display: flex; flex-direction: column; gap: 4px;
}

/* Typewriter cursor */
@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
.typewriter-cursor {
    display: inline-block;
    color: var(--red-light);
    font-weight: 300;
    animation: cursor-blink 0.8s step-end infinite;
    text-shadow: 0 0 12px var(--red-light);
}
.typewriter-cursor.hidden { display: none; }

/* Sub */
.hero-sub {
    font-size: 1.1rem; color: var(--muted);
    max-width: 680px; margin-bottom: 44px; line-height: 1.75;
}
.hero-sub strong { color: rgba(255,255,255,0.85); }

/* CTA */
.cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none; font-weight: 800;
    font-size: 0.9rem; letter-spacing: 1.5px;
    text-transform: uppercase; border-radius: 6px;
    transition: all 0.3s ease; white-space: nowrap;
}

.cta-primary {
    background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
    color: #fff;
    padding: 18px 44px;
    box-shadow: 0 0 32px rgba(192, 57, 43, 0.35), 0 4px 20px rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}

.cta-primary::after {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 45%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: translateX(-120%) skewX(-15deg);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 56px rgba(192, 57, 43, 0.6), 0 10px 32px rgba(0,0,0,0.65);
}

.cta-primary:hover::after {
    animation: shimmer 0.7s ease forwards;
}

.cta-full { width: 100%; justify-content: center; }

/* Gold CTA variant */
.cta-gold {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    padding: 20px 44px;
    font-size: 1rem;
    box-shadow: 0 0 32px rgba(201, 162, 39, 0.3), 0 4px 20px rgba(0,0,0,0.5);
}

.cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 48px rgba(201, 162, 39, 0.45), 0 8px 28px rgba(0,0,0,0.6);
}

/* Terminal card */
.terminal-card {
    margin-top: 52px; width: 100%; max-width: 560px;
    background: rgba(6, 5, 5, 0.97);
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 0 40px rgba(192, 57, 43, 0.07), 0 20px 60px rgba(0,0,0,0.7);
}

.terminal-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.t-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.t-red    { background: #FF5F56; }
.t-yellow { background: #FFBD2E; }
.t-green  { background: #27C93F; }

.terminal-title { font-size: 0.72rem; color: var(--muted); margin-left: 8px; }

.terminal-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.terminal-body p { font-size: 0.82rem; line-height: 1.4; display: flex; gap: 12px; }

.t-muted  { color: var(--muted); }
.t-red-t  { color: var(--red-light); }
.t-gold   { color: var(--gold); }

@keyframes terminal-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.t-blink { animation: terminal-blink 1s step-end infinite; }

/* ==============================
   SECTION COMMONS
   ============================== */
.section-tag {
    font-size: 0.7rem; color: var(--red-light);
    letter-spacing: 2px; margin-bottom: 16px;
    text-transform: lowercase;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.section-lead {
    color: var(--muted); font-size: 1.05rem;
    max-width: 640px; line-height: 1.75; margin-bottom: 56px;
}
.section-lead strong { color: rgba(255,255,255,0.85); }

/* Section divider — red gradient line */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192,57,43,0.3), transparent);
    max-width: 800px; margin: 0 auto;
}

/* ==============================
   PAIN SECTION
   ============================== */
.pain-section {
    padding: 110px 0; position: relative;
}

.pain-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192,57,43,0.2), transparent);
}

.pain-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}

.pain-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 10px; padding: 28px 24px;
    backdrop-filter: blur(10px);
    transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.pain-card:hover {
    border-color: rgba(192, 57, 43, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(192, 57, 43, 0.12), 0 2px 8px rgba(0,0,0,0.4);
}

.pain-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 8px;
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--red-light);
}

.pain-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; padding-top: 8px; }
.pain-card p strong { color: rgba(255,255,255,0.85); }

/* ==============================
   SOLUTION SECTION
   ============================== */
.solution-section { padding: 110px 0; position: relative; }

.solution-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: 14px; padding: 52px 56px; overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.solution-box:hover {
    border-color: rgba(192, 57, 43, 0.38);
    box-shadow: 0 0 60px rgba(192, 57, 43, 0.08), 0 20px 60px rgba(0,0,0,0.5);
}

.solution-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-light), var(--gold), transparent);
}

.solution-lines {
    position: absolute; right: 40px; top: 0; bottom: 0;
    display: flex; gap: 8px; align-items: stretch;
    opacity: 0.03; pointer-events: none;
}

.sol-line { width: 1px; background: var(--red-light); }

.solution-box > p {
    font-size: 1.15rem; line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 680px; margin-bottom: 44px;
}

.solution-box > p strong { color: var(--text); }

.solution-metrics { display: flex; align-items: center; }

.metric-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 6px;
}

.metric-val { font-size: 2rem; font-weight: 700; letter-spacing: -1px; }

.metric-label {
    font-size: 0.78rem; color: var(--muted);
    text-align: center; text-transform: uppercase; letter-spacing: 1px;
}

.metric-div {
    width: 1px; height: 48px;
    background: var(--border-dim); flex-shrink: 0;
}

/* ==============================
   DELIVERABLES
   ============================== */
.deliverables-section { padding: 110px 0; text-align: center; }

.deliverables-list { margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }

.deliverable-item {
    display: grid;
    grid-template-columns: 56px 64px 1fr auto;
    align-items: center; gap: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 10px; padding: 28px 32px;
    text-align: left;
    transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, background 0.35s ease;
    position: relative; overflow: hidden;
}

.deliverable-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--red-light), var(--gold));
    opacity: 0; transition: opacity 0.3s ease;
}

.deliverable-item:hover {
    border-color: rgba(192, 57, 43, 0.32);
    transform: translateX(6px);
    background: rgba(192, 57, 43, 0.04);
    box-shadow: -4px 0 24px rgba(192, 57, 43, 0.08), 0 8px 32px rgba(0,0,0,0.3);
}

.deliverable-item:hover::before { opacity: 1; }

.del-number { font-size: 1.8rem; font-weight: 700; color: var(--muted-2); line-height: 1; }

.del-icon {
    width: 52px; height: 52px; border-radius: 10px;
    background: var(--red-dim);
    border: 1px solid rgba(192, 57, 43, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--red-light); flex-shrink: 0;
}

.del-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.del-content p  { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.del-tag {
    font-size: 0.68rem; color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 5px 12px; border-radius: 4px;
    letter-spacing: 1px; white-space: nowrap;
    text-transform: lowercase; flex-shrink: 0;
}

/* ==============================
   MENTOR
   ============================== */
.mentor-section { padding: 110px 0; position: relative; }

.mentor-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(192,57,43,0.15), transparent);
}

.mentor-box {
    display: grid; grid-template-columns: 140px 1fr;
    gap: 56px; align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(192, 57, 43, 0.18);
    border-radius: 16px; padding: 56px 52px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.mentor-box:hover {
    border-color: rgba(192, 57, 43, 0.3);
    box-shadow: 0 0 80px rgba(192, 57, 43, 0.07), 0 24px 64px rgba(0,0,0,0.5);
}

.mentor-avatar-large {
    position: relative; width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(192,57,43,0.25), rgba(201,162,39,0.25));
    border: 2px solid rgba(192, 57, 43, 0.4);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.mentor-avatar-large span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem; font-weight: 800;
    color: var(--red-light);
    text-shadow: 0 0 20px var(--red-glow);
}

.mentor-ring {
    position: absolute; inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(192, 57, 43, 0.15);
    animation: ring-pulse 3s ease-in-out infinite;
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50%       { transform: scale(1.06); opacity: 0.1; }
}

.mentor-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; margin-bottom: 4px; letter-spacing: -0.5px;
}

.mentor-title { font-size: 0.78rem; color: var(--gold); letter-spacing: 1px; margin-bottom: 20px; }

.mentor-bio { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; max-width: 600px; }

.mentor-stats { display: flex; gap: 40px; }

.m-stat { display: flex; flex-direction: column; gap: 4px; }

.m-stat-val { font-size: 1.8rem; font-weight: 700; line-height: 1; letter-spacing: -1px; }

.m-stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ==============================
   PRICING
   ============================== */
.pricing-section { padding: 120px 0; position: relative; }

.pricing-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(192,57,43,0.05) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
}

.pricing-box { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }

.pricing-alert {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(192, 57, 43, 0.08);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: var(--red-light);
    font-size: 0.7rem; letter-spacing: 2px;
    padding: 8px 18px; border-radius: 4px; margin-bottom: 28px;
}

.alert-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--red-light);
    box-shadow: 0 0 6px var(--red-light);
    animation: dot-pulse 1s ease-in-out infinite;
}

.pricing-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; margin-bottom: 20px;
    letter-spacing: -0.5px; line-height: 1.2;
}

.pricing-anchor {
    font-size: 1rem; color: var(--muted);
    line-height: 1.75; margin-bottom: 44px;
    max-width: 560px; margin-left: auto; margin-right: auto;
}

.pricing-anchor strong { color: rgba(255,255,255,0.85); }

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 14px; padding: 48px 44px;
    position: relative; overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.price-card:hover {
    border-color: rgba(192, 57, 43, 0.45);
    box-shadow: 0 0 80px rgba(192, 57, 43, 0.1), 0 32px 80px rgba(0,0,0,0.6);
}

/* Scan line on price card */
.price-card::after {
    content: '';
    position: absolute; left: 0; right: 0;
    height: 2px; top: -2px;
    background: linear-gradient(90deg, transparent, rgba(192, 57, 43, 0.5), transparent);
    animation: scanLine 4s linear infinite;
    pointer-events: none;
}

.price-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-light), var(--gold), transparent);
}

.price-label { font-size: 0.68rem; color: var(--muted); letter-spacing: 3px; margin-bottom: 12px; display: block; }

.price-main {
    display: flex; align-items: flex-start;
    justify-content: center; gap: 4px;
    margin-bottom: 8px; line-height: 1;
}

.price-currency {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--gold); margin-top: 12px;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem; font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
    letter-spacing: -2px;
}

.price-cents {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 700;
    color: var(--gold); margin-top: 20px; opacity: 0.7;
}

.price-installment { font-size: 0.85rem; color: var(--muted); margin-bottom: 36px; }
.price-installment strong { color: rgba(255,255,255,0.7); }

.price-includes { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; text-align: left; }

.pi-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.92rem; color: rgba(255,255,255,0.7);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dim);
}

.pi-item:last-child { border-bottom: none; }

.pi-check { color: var(--gold); font-weight: 700; font-size: 1rem; flex-shrink: 0; width: 20px; }

.price-note { margin-top: 20px; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.5px; line-height: 1.6; }

/* ==============================
   SEXY CANVAS — Dream State
   ============================== */
.canvas-section { padding: 110px 0; position: relative; }

.canvas-quote {
    background: var(--bg-card);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 14px; padding: 52px 56px;
    position: relative; overflow: hidden;
    margin-bottom: 40px;
}

.canvas-quote::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.canvas-quote-mark {
    font-size: 7rem; line-height: 1;
    color: var(--gold); opacity: 0.06;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    position: absolute; top: 16px; left: 32px;
    pointer-events: none;
}

.canvas-quote p {
    font-size: 1.2rem; line-height: 1.95;
    color: rgba(255,255,255,0.72);
    max-width: 740px;
    position: relative; z-index: 1;
}

.canvas-quote p strong { color: var(--text); font-weight: 700; }

.canvas-quote p .gold-highlight {
    color: var(--gold-light);
    font-weight: 600;
}

.canvas-features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.canvas-feat {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 12px; padding: 32px 24px;
    text-align: center;
    transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.canvas-feat:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.1), 0 4px 16px rgba(0,0,0,0.4);
}

.canvas-feat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.18);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-light); font-size: 1.3rem;
}

.canvas-feat h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.canvas-feat p  { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ==============================
   SOCIAL PROOF SECTION
   ============================== */
.proof-section { padding: 110px 0; position: relative; }

.proof-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,162,39,0.15), transparent);
}

.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 12px; padding: 32px 26px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative; overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.testimonial-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.1), 0 4px 16px rgba(0,0,0,0.4);
}

.testimonial-card::after {
    content: '"';
    position: absolute; top: 10px; right: 18px;
    font-size: 6rem; line-height: 1;
    color: var(--gold); opacity: 0.05;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800; pointer-events: none;
}

.testimonial-stars { display: flex; gap: 3px; color: var(--gold); font-size: 0.85rem; }

.testimonial-text { font-size: 0.93rem; color: var(--muted); line-height: 1.75; flex: 1; }
.testimonial-text strong { color: rgba(255,255,255,0.88); }

.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-dim);
}

.testimonial-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(201,162,39,0.2));
    border: 1px solid rgba(201, 162, 39, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 0.88rem; color: var(--gold); flex-shrink: 0;
}

.testimonial-meta { display: flex; flex-direction: column; gap: 4px; }
.testimonial-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }

.testimonial-result {
    font-size: 0.67rem; color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(201, 162, 39, 0.18);
    padding: 2px 8px; border-radius: 3px;
    letter-spacing: 0.5px;
    font-family: 'Roboto Mono', monospace;
    width: fit-content;
}

/* Guarantee badge */
.guarantee-badge {
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 10px; padding: 22px 28px;
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 32px; text-align: left;
}

.guarantee-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: 10px; background: var(--gold-dim);
    border: 1px solid rgba(201, 162, 39, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.guarantee-text h4 { font-size: 0.88rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.guarantee-text p  { font-size: 0.81rem; color: var(--muted); line-height: 1.6; }
.guarantee-text p strong { color: rgba(255,255,255,0.72); }

/* ==============================
   FOOTER
   ============================== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-dim);
    background: #060606;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }

.footer-links a { color: var(--gold); text-decoration: none; font-size: 0.82rem; font-weight: 600; opacity: 0.6; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }

.footer-copy { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.5px; }

/* ==============================
   RESPONSIVE — 768px
   ============================== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    /* Navbar */
    .navbar { padding: 12px 0; }
    .logo { gap: 10px; }
    .logo-name { font-size: 1.25rem; }
    .logo-shield { width: 34px; height: 40px; }
    .logo-tagline { font-size: 0.44rem; letter-spacing: 2px; }
    .nav-cta { font-size: 0.72rem; padding: 9px 14px; letter-spacing: 0; }
    .nav-cta-dot { width: 5px; height: 5px; }

    /* Hero */
    .hero { padding: 100px 0 64px; min-height: 100svh; }
    .hero-content { padding: 0; }
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.2rem);
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }
    .hero-sub { font-size: 0.97rem; margin-bottom: 28px; max-width: 100%; }
    .pre-tag {
        font-size: 0.6rem; flex-wrap: wrap;
        justify-content: center; gap: 6px;
        padding: 8px 14px; text-align: center;
    }
    .pre-tag-sep { display: none; }
    .cta-btn {
        padding: 16px 22px; font-size: 0.8rem;
        width: 100%; justify-content: center;
        letter-spacing: 0.8px;
    }
    .terminal-card { max-width: 100%; margin-top: 36px; }
    .terminal-body { padding: 16px 18px; gap: 8px; }
    .terminal-body p { font-size: 0.73rem; gap: 8px; }

    /* Sections padding */
    .pain-section,
    .solution-section,
    .canvas-section,
    .deliverables-section,
    .mentor-section,
    .proof-section,
    .pricing-section { padding: 72px 0; }

    /* Section typography */
    .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 20px; }
    .section-lead { font-size: 0.97rem; margin-bottom: 40px; max-width: 100%; }

    /* Pain */
    .pain-grid { grid-template-columns: 1fr; gap: 12px; }
    .pain-card { padding: 22px 18px; gap: 14px; }
    .pain-icon { width: 36px; height: 36px; flex-shrink: 0; }

    /* Solution */
    .solution-box { padding: 32px 22px; }
    .solution-box > p { font-size: 0.97rem; margin-bottom: 32px; }
    .solution-metrics { flex-direction: column; gap: 20px; align-items: center; }
    .metric-div { width: 48px; height: 1px; }
    .metric-val { font-size: 1.7rem; }

    /* Canvas */
    .canvas-quote { padding: 32px 22px; }
    .canvas-quote p { font-size: 0.97rem; line-height: 1.85; }
    .canvas-features { grid-template-columns: 1fr; gap: 12px; }
    .canvas-feat { padding: 26px 20px; }

    /* Deliverables */
    .deliverables-section { text-align: left; }
    .deliverable-item {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        gap: 12px 16px; padding: 22px 18px;
    }
    .del-number { display: none; }
    .del-icon { width: 44px; height: 44px; grid-row: 1; grid-column: 1; }
    .del-content { grid-row: 1 / 3; grid-column: 2; }
    .del-tag { grid-row: 2; grid-column: 1; width: fit-content; font-size: 0.62rem; }
    .del-content h3 { font-size: 0.97rem; }
    .del-content p { font-size: 0.84rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimonial-card { padding: 26px 20px; }

    /* Mentor */
    .mentor-box {
        grid-template-columns: 1fr; text-align: center;
        gap: 24px; padding: 36px 22px;
    }
    .mentor-avatar-large { margin: 0 auto; width: 100px; height: 100px; }
    .mentor-avatar-large span { font-size: 2rem; }
    .mentor-bio { max-width: 100%; font-size: 0.9rem; }
    .mentor-stats { justify-content: center; gap: 28px; flex-wrap: wrap; }
    .m-stat { align-items: center; }
    .m-stat-val { font-size: 1.5rem; }

    /* Pricing */
    .pricing-box h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .price-card { padding: 32px 18px; }
    .price-amount { font-size: 3.8rem; }
    .price-includes { gap: 0; }
    .pi-item { font-size: 0.88rem; padding: 11px 0; }
    .guarantee-badge { padding: 18px 16px; gap: 14px; }
    .cta-gold { padding: 17px 22px; font-size: 0.88rem; }
}

/* ==============================
   RESPONSIVE — 480px
   ============================== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Navbar */
    .navbar { padding: 10px 0; }
    .logo-name { font-size: 1.1rem; }
    .logo-shield { width: 30px; height: 36px; }
    .logo-tagline { display: none; }
    .nav-cta { font-size: 0.68rem; padding: 8px 12px; gap: 6px; }

    /* Hero */
    .hero { padding: 88px 0 56px; }
    .hero h1 { font-size: clamp(1.75rem, 9vw, 2.6rem); gap: 2px; }
    .hero-sub { font-size: 0.9rem; line-height: 1.7; }
    .pre-tag { font-size: 0.56rem; padding: 6px 12px; letter-spacing: 1px; }
    .terminal-body p { font-size: 0.68rem; }

    /* Sections */
    .pain-section,
    .solution-section,
    .canvas-section,
    .deliverables-section,
    .mentor-section,
    .proof-section,
    .pricing-section { padding: 56px 0; }

    .section-title { font-size: clamp(1.45rem, 7.5vw, 2rem); }
    .section-lead { font-size: 0.9rem; }

    /* Pain */
    .pain-card { padding: 18px 14px; }

    /* Solution */
    .solution-box { padding: 26px 18px; }
    .metric-val { font-size: 1.5rem; }

    /* Canvas */
    .canvas-quote { padding: 26px 18px; }
    .canvas-quote p { font-size: 0.9rem; }
    .canvas-feat { padding: 22px 16px; }

    /* Deliverables */
    .deliverable-item { padding: 18px 14px; gap: 10px 12px; }
    .del-icon { width: 38px; height: 38px; }
    .del-content h3 { font-size: 0.92rem; }
    .del-content p { font-size: 0.8rem; }

    /* Mentor */
    .mentor-stats { gap: 18px; }
    .m-stat-val { font-size: 1.3rem; }

    /* Pricing */
    .price-card { padding: 26px 14px; }
    .price-amount { font-size: 3.2rem; }
    .price-currency { font-size: 1.3rem; margin-top: 10px; }
    .price-cents { font-size: 1.5rem; margin-top: 16px; }
    .pricing-box h2 { font-size: clamp(1.4rem, 7vw, 1.9rem); }
    .pi-item { font-size: 0.84rem; }
    .guarantee-badge { padding: 14px 12px; }
}
