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

:root {
    --cream:      #F5F0E8;
    --cream-dark: #EDE7D9;
    --navy:       #1A1F3A;
    --red:        #E8323A;
    --red-dark:   #C8272E;
    --red-light:  rgba(232,50,58,0.10);
    --red-brd:    rgba(232,50,58,0.25);
    --text:       #1A1F3A;
    --text-2:     #4A4F6A;
    --text-3:     #8A8FA8;
    --border:     rgba(26,31,58,0.10);
    --border-md:  rgba(26,31,58,0.18);
    --shadow:     rgba(26,31,58,0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.6; }

/* Grain texture overlay */
body::after {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.028;
}

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(245,240,232,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); height: 72px;
    display: flex; align-items: center; justify-content: space-between; padding: 0 48px;
    transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px var(--shadow); }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .04em; color: var(--navy); }
.nav-pill {
    font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    background: var(--red); color: #fff; padding: 3px 9px; border-radius: 20px; margin-left: 4px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    font-size: .85rem; font-weight: 500; color: var(--text-2); text-decoration: none;
    padding: 8px 14px; border-radius: 8px; cursor: pointer;
    transition: color .2s, background .2s; background: none; border: none; font-family: var(--font-body);
}
.nav-link:hover { color: var(--navy); background: var(--cream-dark); }
.nav-cta {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .88rem; font-weight: 700; color: #fff; text-decoration: none;
    background: var(--red); padding: 10px 24px; border-radius: 50px;
    box-shadow: 0 4px 18px rgba(232,50,58,.3); transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(232,50,58,.38); }

/* ── SHARED SECTION TOKENS ── */
.section { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }
.section-label {
    font-size: .63rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em;
    color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--red); border-radius: 1px; }
.section-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: .02em; color: var(--navy); line-height: .97; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 520px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .95rem; font-weight: 700; color: #fff; text-decoration: none;
    background: var(--red); padding: 14px 30px; border-radius: 50px;
    box-shadow: 0 6px 24px rgba(232,50,58,.35); transition: background .2s, transform .22s, box-shadow .22s;
}
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(232,50,58,.42); }

.plan-tab {
    padding: 5px 12px; background: var(--cream-dark);
    border: 1.5px solid var(--border); border-radius: 8px;
    font-size: .74rem; font-weight: 600; color: var(--text-2);
    cursor: pointer; font-family: var(--font-body); transition: all .18s;
}
.plan-tab:hover { border-color: var(--red); color: var(--red); }
.plan-tab.active-plan { background: rgba(232,50,58,.08); border-color: var(--red); color: var(--red); }

/* ── TGF FOOTER ── */
.tgf-footer { background: #141923; position: relative; color: rgba(255,255,255,.75); font-family: var(--font-body); }
.tgf-footer::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.055;
}
.tgf-footer > * { position: relative; z-index: 1; }
.tgf-footer-top { padding: 56px 0 44px; }
.tgf-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.tgf-footer-top .tgf-footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.tgf-footer-logo { margin-bottom: 26px; }
.tgf-logo-the    { font-family: var(--font-display); font-size: 1rem; letter-spacing: .2em; color: rgba(255,255,255,.8); }
.tgf-logo-gym    { font-family: var(--font-display); font-size: 2rem; letter-spacing: .08em; color: var(--red); line-height: 1; }
.tgf-logo-faction{ font-family: var(--font-display); font-size: 2rem; letter-spacing: .08em; color: rgba(255,255,255,.9); line-height: 1; }
.tgf-footer-brand-col { flex: 1; min-width: 280px; max-width: 500px; }
.tgf-newsletter-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tgf-newsletter-sub { font-size: .81rem; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.tgf-newsletter-field {
    display: flex; border-radius: 10px; overflow: hidden;
    border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); max-width: 400px;
}
.tgf-newsletter-input { flex: 1; padding: 12px 16px; background: transparent; border: none; outline: none; font-size: .88rem; color: #fff; font-family: var(--font-body); }
.tgf-newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.tgf-newsletter-btn { padding: 0 18px; background: var(--red); border: none; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; transition: background .2s; flex-shrink: 0; }
.tgf-newsletter-btn:hover { background: #C8272E; }
.tgf-newsletter-legal { font-size: .7rem; color: rgba(255,255,255,.28); margin-top: 9px; }
.tgf-contact-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tgf-contact-sep { color: rgba(255,255,255,.22); }
.tgf-contact-link { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.tgf-contact-link:hover { color: #fff; }
.tgf-socials { display: flex; gap: 9px; margin-top: 20px; flex-wrap: wrap; }
.tgf-social { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); text-decoration: none; transition: all .2s; }
.tgf-social:hover { background: var(--red); border-color: var(--red); color: #fff; }
.tgf-footer-download-col { flex-shrink: 0; }
.tgf-download-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.tgf-store-badges { display: flex; flex-direction: column; gap: 12px; }
.tgf-store-badge { display: flex; align-items: center; gap: 12px; background: #0d1117; border: 1.5px solid rgba(255,255,255,.1); color: #fff; text-decoration: none; padding: 12px 22px; border-radius: 12px; min-width: 190px; transition: border-color .2s, background .2s; }
.tgf-store-badge:hover { border-color: rgba(255,255,255,.28); background: #1a1f3a; color: #fff; }
.tgf-store-badge small { display: block; font-size: .56rem; opacity: .5; text-transform: uppercase; letter-spacing: .04em; }
.tgf-store-badge strong { display: block; font-size: .88rem; font-weight: 700; }
.tgf-footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.tgf-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.tgf-footer-copy { font-size: .77rem; color: rgba(255,255,255,.35); }
.tgf-footer-copy a { color: rgba(255,255,255,.5); text-decoration: none; }
.tgf-footer-copy a:hover { color: #fff; }
.tgf-footer-nav { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.tgf-footer-nav a { font-size: .77rem; color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s; }
.tgf-footer-nav a:hover { color: #fff; }
.tgf-footer-nav span { color: rgba(255,255,255,.18); font-size: .68rem; }
.tgf-footer-legal { text-align: center; padding: 12px 48px; border-top: 1px solid rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.tgf-footer-legal a { font-size: .75rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.tgf-footer-legal a:hover { color: rgba(255,255,255,.65); }
.tgf-footer-legal span { color: rgba(255,255,255,.18); }




/* ── HERO ── */
.hero {
    min-height: 100vh; padding: 130px 48px 80px;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
    max-width: 1280px; margin: 0 auto; position: relative;
}
.hero-blob { position: absolute; pointer-events: none; z-index: 0; }
.hero-blob-1 {
    right: -60px; top: 50%; transform: translateY(-50%);
    width: 500px; height: 500px; background: var(--red);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; opacity: .13; filter: blur(2px);
}
.hero-blob-2 {
    left: 44%; top: 14%; width: 160px; height: 160px; background: var(--red);
    border-radius: 50% 60% 40% 70% / 45% 55% 65% 35%; opacity: .08;
}
.star { position: absolute; pointer-events: none; color: var(--navy); opacity: .5; line-height: 1; animation: starPulse 3s ease-in-out infinite; }
.star-1 { top: 22%; right: 38%; font-size: 2rem; }
.star-2 { bottom: 28%; right: 11%; font-size: 1rem; animation-delay: 1.2s; }
.star-3 { top: 40%; left: 7%; font-size: .9rem; animation-delay: .6s; opacity: .28; }
@keyframes starPulse { 0%,100%{transform:scale(1) rotate(0deg);opacity:.5} 50%{transform:scale(1.2) rotate(15deg);opacity:.8} }

.hero-left { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
    color: var(--red); background: var(--red-light); border: 1px solid var(--red-brd);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
    animation: fadeUp .5s ease both;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem); line-height: .95; letter-spacing: .02em;
    color: var(--navy); margin-bottom: 22px; animation: fadeUp .55s .06s ease both;
}
.hero-title .red { color: var(--red); }
.hero-sub { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; max-width: 440px; margin-bottom: 36px; animation: fadeUp .6s .12s ease both; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; animation: fadeUp .65s .18s ease both; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .9rem; font-weight: 600; color: var(--navy); text-decoration: none;
    background: transparent; padding: 13px 26px; border-radius: 50px;
    border: 2px solid var(--border-md); cursor: pointer; font-family: var(--font-body);
    transition: border-color .2s, background .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 40px; animation: fadeUp .7s .24s ease both; }
.avatars { display: flex; }
.avatar {
    width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--cream);
    margin-left: -10px; display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.avatar:first-child { margin-left: 0; }
.sp-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--navy); }
.sp-text span { font-size: .78rem; color: var(--text-3); }

/* Hero right card */
.hero-right { position: relative; z-index: 1; animation: fadeUp .7s .1s ease both; }
.hero-card { background: #fff; border-radius: 24px; padding: 32px; border: 1px solid var(--border); box-shadow: 0 20px 60px var(--shadow); }
.hero-card-label { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); margin-bottom: 6px; }
.hero-card-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .04em; color: var(--navy); margin-bottom: 24px; }
.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.kpi { background: var(--cream); border-radius: 14px; padding: 16px; border: 1px solid var(--border); transition: transform .2s; }
.kpi:hover { transform: translateY(-2px); }
.kpi-val { font-family: var(--font-display); font-size: 2rem; line-height: 1; letter-spacing: .02em; margin-bottom: 4px; }
.kpi-lbl { font-size: .7rem; color: var(--text-3); }
.kpi-bar-row { margin-bottom: 18px; }
.kpi-bar-label { display: flex; justify-content: space-between; font-size: .75rem; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.kpi-bar-track { height: 8px; background: var(--cream-dark); border-radius: 4px; overflow: hidden; }
.kpi-bar-fill { height: 100%; border-radius: 4px; }
.card-cta {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--navy); color: #fff; border-radius: 14px; padding: 14px 18px;
    text-decoration: none; font-weight: 600; font-size: .85rem; transition: background .2s, transform .2s;
}
.card-cta:hover { background: #2D3258; color: #fff; transform: scale(1.01); }
.card-cta-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: .8rem; }
.hero-float {
    position: absolute; right: -24px; bottom: 28px;
    background: #fff; border-radius: 16px; padding: 14px 18px;
    border: 1px solid var(--border); box-shadow: 0 12px 40px var(--shadow);
    display: flex; align-items: center; gap: 12px; min-width: 180px;
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-icon { width: 38px; height: 38px; border-radius: 10px; background: #ECFDF5; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #16a34a; flex-shrink: 0; }
.float-val { font-family: var(--font-display); font-size: 1.4rem; color: #16a34a; line-height: 1; }
.float-lbl { font-size: .66rem; color: var(--text-3); margin-top: 2px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── TRUST BAND ── */
.trust-band { background: var(--navy); padding: 22px 48px; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.6); }
.trust-item i { color: var(--red); }
.trust-item strong { color: #fff; }

/* ── HOW IT WORKS ── */
.how-header { text-align: center; margin-bottom: 60px; }
.how-header .section-label { justify-content: center; }
.how-header .section-sub { margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.how-step { background: #fff; border-radius: 20px; padding: 28px 22px; border: 1px solid var(--border); position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.how-step:hover { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); }
.how-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.how-step:hover::before { transform: scaleX(1); }
.how-step-num { font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--cream-dark); margin-bottom: 14px; transition: color .2s; }
.how-step:hover .how-step-num { color: rgba(232,50,58,.15); }
.how-icon { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.how-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-desc { font-size: .8rem; color: var(--text-3); line-height: 1.65; }

/* ── EARNINGS ── */
.earn-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.earn-features { margin-top: 36px; }
.earn-feat { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.earn-feat:last-child { border-bottom: none; }
.earn-num { font-family: var(--font-display); font-size: 1rem; color: var(--red); opacity: .7; width: 28px; flex-shrink: 0; padding-top: 2px; }
.earn-feat-title { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.earn-feat-desc { font-size: .8rem; color: var(--text-3); line-height: 1.6; }
.earn-card { background: #fff; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 16px 56px var(--shadow); overflow: hidden; }
.earn-card-head { background: var(--navy); padding: 24px 28px; }
.earn-card-head-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .04em; color: #fff; }
.earn-card-head-sub { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.earn-card-body { padding: 24px 28px; }
.earn-tiers { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.earn-tier { display: flex; align-items: center; gap: 12px; background: var(--cream); border-radius: 12px; padding: 12px 16px; border: 1.5px solid transparent; transition: border-color .2s, background .2s; cursor: default; }
.earn-tier:hover { border-color: var(--red); background: rgba(232,50,58,.04); }
.tier-icon { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.tier-name { flex: 1; font-size: .82rem; font-weight: 600; color: var(--text-2); }
.tier-rate { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .03em; line-height: 1; }
.tier-per { font-size: .62rem; color: var(--text-3); }
.sim { background: var(--cream); border-radius: 16px; padding: 20px; border: 1px solid var(--border); }
.sim-title { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 14px; }
.sim-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .82rem; }
.sim-key { color: var(--text-2); }
.sim-val { font-weight: 700; color: var(--navy); }
.sim-slider { width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: var(--cream-dark); border-radius: 2px; outline: none; cursor: pointer; margin: 10px 0 14px; }
.sim-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--red); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(232,50,58,.4); }
.sim-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border-md); }
.sim-total-key { font-size: .82rem; font-weight: 600; color: var(--text-2); }
.sim-total-val { font-family: var(--font-display); font-size: 2rem; letter-spacing: .03em; color: var(--red); line-height: 1; }

/* ── FEATURES ── */
.feat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card { background: #fff; border-radius: 20px; padding: 28px; border: 1px solid var(--border); transition: transform .22s, box-shadow .22s, border-color .22s; position: relative; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); border-color: var(--red); }
.feat-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 20px; }
.feat-title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-desc { font-size: .8rem; color: var(--text-3); line-height: 1.65; }
.feat-new { position: absolute; top: 18px; right: 18px; font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: var(--red); color: #fff; padding: 2px 8px; border-radius: 20px; }

/* ── DASHBOARD PREVIEW ── */
.preview-wrap { background: var(--navy); border-radius: 28px; padding: 48px; position: relative; overflow: hidden; }
.preview-wrap::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: var(--red); border-radius: 50%; opacity: .07; pointer-events: none; }
.preview-head { text-align: center; margin-bottom: 36px; }
.preview-head .section-label { justify-content: center; color: rgba(232,50,58,.75); }
.preview-head .section-label::before { background: rgba(232,50,58,.75); }
.preview-head .section-title { color: #fff; }
.preview-head .section-sub { color: rgba(255,255,255,.45); margin: 0 auto; }
.preview-frame { background: #0d1117; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.preview-chrome { background: #1b2230; height: 36px; display: flex; align-items: center; padding: 0 14px; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
.pdot { width: 10px; height: 10px; border-radius: 50%; }
.preview-url { margin-left: 10px; flex: 1; max-width: 260px; background: rgba(255,255,255,.06); border-radius: 5px; height: 22px; display: flex; align-items: center; padding: 0 10px; font-size: .6rem; color: rgba(255,255,255,.3); }
.preview-body { display: grid; grid-template-columns: 190px 1fr; min-height: 310px; }
.preview-sb { background: #1b2a3b; padding: 14px 0; border-right: 1px solid rgba(255,255,255,.06); }
.psb-sect { font-size: .5rem; color: rgba(90,122,150,.65); text-transform: uppercase; letter-spacing: .12em; padding: 10px 14px 4px; }
.psb-link { display: flex; align-items: center; gap: 7px; padding: 7px 14px; font-size: .68rem; color: rgba(168,189,208,.5); }
.psb-link.active { background: rgba(55,138,221,.12); color: #fff; border-left: 2px solid #378ADD; padding-left: 12px; }
.psb-link i { font-size: .72rem; }
.preview-content { padding: 18px; }
.preview-pg-title { font-family: var(--font-display); font-size: .9rem; color: rgba(230,237,243,.9); letter-spacing: .05em; margin-bottom: 14px; }
.preview-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.preview-stat { background: #1b2230; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 10px 12px; }
.preview-stat-val { font-size: .88rem; font-weight: 800; margin-bottom: 2px; }
.preview-stat-lbl { font-size: .56rem; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .06em; }
.preview-charts { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px; }
.preview-chart { background: #1b2230; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 12px; height: 120px; }
.preview-chart-title { font-size: .62rem; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.preview-bars-wrap { display: flex; align-items: flex-end; gap: 3px; height: 76px; }
.pbar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(55,138,221,.5); }
.pbar.hi { background: rgba(55,138,221,.9); }
.pbar.rd { background: rgba(232,50,58,.6); }
.src-row { display: flex; align-items: center; gap: 8px; font-size: .6rem; color: rgba(255,255,255,.45); margin-bottom: 7px; }
.src-bar { height: 4px; border-radius: 2px; }

/* ── FAQ ── */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 100px; }
.faq-items { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: #fff; border-radius: 14px; padding: 22px 24px; border: 1px solid var(--border); cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: var(--border-md); }
.faq-item.open { border-color: var(--red); box-shadow: 0 4px 20px rgba(232,50,58,.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: .9rem; font-weight: 700; color: var(--navy); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--text-3); flex-shrink: 0; transition: background .2s, color .2s, transform .25s; }
.faq-item.open .faq-icon { background: var(--red); color: #fff; border-color: var(--red); transform: rotate(45deg); }
.faq-a { font-size: .82rem; color: var(--text-2); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s ease, margin .35s ease; }
.faq-item.open .faq-a { max-height: 200px; margin-top: 12px; }

/* ── CTA BANNER ── */
.cta-wrap { padding: 80px 48px 100px; max-width: 1280px; margin: 0 auto; }
.cta-banner { background: var(--navy); border-radius: 28px; padding: 72px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-blob { position: absolute; background: var(--red); opacity: .12; pointer-events: none; border-radius: 50%; }
.cta-blob-1 { width: 400px; height: 400px; top: -150px; left: -100px; }
.cta-blob-2 { width: 300px; height: 300px; bottom: -120px; right: -80px; }
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { display: inline-block; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(232,50,58,.8); margin-bottom: 16px; }
.cta-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5rem); letter-spacing: .02em; color: #fff; line-height: .95; margin-bottom: 18px; }
.cta-title .red { color: var(--red); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.5); max-width: 460px; margin: 0 auto 38px; line-height: 1.75; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 700; color: var(--navy); text-decoration: none; background: #fff; padding: 14px 30px; border-radius: 50px; box-shadow: 0 6px 24px rgba(0,0,0,.2); transition: transform .2s, box-shadow .2s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,.3); color: var(--navy); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.65); text-decoration: none; background: rgba(255,255,255,.08); padding: 14px 28px; border-radius: 50px; border: 1px solid rgba(255,255,255,.15); transition: background .2s, color .2s; }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.store-badges { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12); color: #fff; text-decoration: none; padding: 10px 20px; border-radius: 12px; transition: border-color .2s, background .2s; }
.store-badge:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; }
.store-badge i { font-size: 1.4rem; }
.store-badge small { display: block; font-size: .56rem; opacity: .55; }
.store-badge strong { font-size: .82rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 40px; padding: 110px 32px 60px; }
    .hero-right { display: none; }
    .earn-grid { grid-template-columns: 1fr; gap: 48px; }
    .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
    .faq-sticky { position: static; }
    .preview-body { grid-template-columns: 1fr; }
    .preview-sb { display: none; }
}
@media (max-width: 768px) {
    .how-steps { grid-template-columns: 1fr 1fr; }
    .feat-grid { grid-template-columns: 1fr 1fr; }
    .cta-wrap { padding: 48px 24px 72px; }
    .cta-banner { padding: 48px 28px; }
    .trust-band { padding: 20px 24px; gap: 16px; }
    .preview-stats { grid-template-columns: 1fr 1fr; }
    .preview-wrap { padding: 32px 24px; }
    .nav { padding: 0 16px; gap: 8px; }
    .nav-links { display: none; }
    .nav-brand { flex-shrink: 0; min-width: 0; }
    .nav-name { font-size: 1.1rem; }
    .nav-cta { padding: 8px 14px; font-size: .78rem; gap: 5px; white-space: nowrap; flex-shrink: 0; }
    .section { padding: 64px 24px; }
    .tgf-footer-inner { padding: 0 24px; }
    .tgf-footer-top .tgf-footer-inner { flex-direction: column; gap: 36px; }
    .tgf-footer-download-col { width: 100%; }
    .tgf-store-badges { flex-direction: row; flex-wrap: wrap; }
    .tgf-footer-bottom-inner { flex-direction: column; text-align: center; }
    .tgf-footer-legal { padding: 12px 24px; }
}
@media (max-width: 540px) {
    .hero { padding: 100px 20px 48px; }
    .how-steps, .feat-grid { grid-template-columns: 1fr; }
    .preview-charts { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
    .nav { padding: 0 10px; gap: 5px; }
    .nav-pill { display: none; }
    .nav-name { font-size: 1rem; }
    .nav-cta { padding: 7px 12px; font-size: .68rem; gap: 4px; }
}