/* =====================================================================
   StockPickr.in  -  Home page stylesheet
   Aesthetic: editorial finance journal meets modern study lab
   Theme    : deep navy + parchment + emerald accent
   ===================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

/* ---------- Variables ---------- */
:root {
    --ink:        #0b1b2b;       /* deep navy ink   */
    --ink-soft:   #1f3247;
    --paper:      #f6f1e7;       /* warm parchment  */
    --paper-2:    #efe7d4;
    --line:       #d9cdb3;
    --accent:     #0f8a5f;       /* emerald         */
    --accent-2:   #b8902a;       /* mustard / gold  */
    --danger:     #b4332a;
    --muted:      #57657a;
    --white:      #ffffff;

    --serif:  'Fraunces', Georgia, serif;
    --sans:   'Inter', -apple-system, system-ui, sans-serif;
    --mono:   'JetBrains Mono', Menlo, monospace;

    --radius:  14px;
    --radius-sm: 8px;
    --shadow: 0 30px 60px -25px rgba(11,27,43,.25);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { padding: 0; margin: 0; list-style: none; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =====================================================================
   EDU STRIP  (top warning)
   ===================================================================== */
.edu-strip {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .03em;
    text-align: center;
    padding: 10px 16px;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.edu-dot {
    width: 8px; height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(184,144,42,.25);
    animation: edupulse 2s infinite;
}
@keyframes edupulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(184,144,42,.45); }
    50%     { box-shadow: 0 0 0 7px rgba(184,144,42,0); }
}
.edu-text strong { color: #ffd57a; letter-spacing: .12em; }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(6px);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
}
.brand-mark {
    width: 42px; height: 42px;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-family: var(--serif);
    border-radius: 10px;
    font-size: 17px;
    letter-spacing: -.02em;
    transform: rotate(-3deg);
    box-shadow: 3px 3px 0 var(--accent-2);
}
.brand-mark.sm { width: 36px; height: 36px; font-size: 14px; }
.brand-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1;
    display: flex;
    flex-direction: column;
}
.brand-dot { color: var(--accent); }
.brand-tag {
    font-family: var(--mono);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .25em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}
.main-nav a {
    color: var(--ink-soft);
    transition: color .2s;
    position: relative;
}
.main-nav a:hover { color: var(--accent); }

.nav-cta {
    background: var(--ink);
    color: var(--paper) !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--accent); color: var(--white) !important; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background:
        radial-gradient(1100px 500px at 80% -20%, rgba(15,138,95,.10), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(184,144,42,.10), transparent 60%),
        var(--paper);
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .25;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15,138,95,.10);
    border: 1px solid rgba(15,138,95,.30);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--mono);
    letter-spacing: .04em;
}
.pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(15,138,95,.6);
    animation: ping 1.6s infinite;
}
@keyframes ping {
    0%   { box-shadow: 0 0 0 0   rgba(15,138,95,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(15,138,95,0); }
    100% { box-shadow: 0 0 0 0   rgba(15,138,95,0); }
}

.hero-title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(36px, 5.2vw, 64px);
    line-height: 1.05;
    letter-spacing: -.025em;
    margin: 22px 0 18px;
    color: var(--ink);
}
.hero-title .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
    position: relative;
    white-space: nowrap;
}
.hero-title .accent::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 6px;
    height: 10px;
    background: rgba(184,144,42,.30);
    z-index: -1;
    border-radius: 4px;
}
.hero-lead {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .25s ease;
    font-family: var(--sans);
}
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-primary {
    background: var(--ink);
    color: var(--paper);
}
.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -10px rgba(15,138,95,.5);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--paper);
}

.hero-stats {
    display: flex;
    gap: 36px;
    border-top: 1px dashed var(--line);
    padding-top: 22px;
}
.hero-stats li strong {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--ink);
}
.hero-stats li span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
    display: block;
}

/* Hero right - mock card */
.mock-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;
    transform: rotate(1.5deg);
    transition: transform .4s ease;
}
.mock-card:hover { transform: rotate(0deg) translateY(-4px); }

.mock-head {
    background: var(--ink);
    color: var(--paper);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff6058; }
.dot.yellow { background: #ffbe2e; }
.dot.green { background: #28c93f; }
.mock-title {
    margin-left: 14px;
    color: rgba(255,255,255,.65);
    letter-spacing: .04em;
}
.mock-body { padding: 22px; }
.mock-row {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}
.mock-row:last-of-type { border-bottom: 0; }
.mock-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .08em;
}
.mock-val {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}
.mock-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.mock-badge.up   { background: rgba(15,138,95,.12); color: var(--accent); }
.mock-badge.edu  { background: rgba(184,144,42,.15); color: var(--accent-2); }
.mock-bar {
    grid-column: 1 / -1;
    height: 6px;
    background: var(--paper-2);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 4px;
}
.mock-bar i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 999px;
}
.mock-note {
    margin: 16px 0 0;
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
    font-family: var(--mono);
}

/* =====================================================================
   SECTION COMMON
   ===================================================================== */
.section { padding: 90px 0; }
.section-head { margin-bottom: 50px; max-width: 720px; }
.section-head.center { margin: 0 auto 50px; text-align: center; }
.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    color: var(--ink);
}
.section-sub {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================================
   ABOUT
   ===================================================================== */
.section-about { background: var(--paper); border-top: 1px solid var(--line); }
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}
.about-text p {
    font-size: 16px;
    color: var(--ink-soft);
    margin: 0 0 18px;
}
.about-text strong { color: var(--ink); }
.check-list li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-size: 15px;
    color: var(--ink-soft);
    border-bottom: 1px dashed var(--line);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 4px; top: 8px;
    color: var(--accent);
    font-weight: 800;
}
.about-note {
    margin-top: 26px !important;
    background: rgba(184,144,42,.10);
    border-left: 3px solid var(--accent-2);
    padding: 16px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 15px;
}

.about-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}
.about-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    margin: 0 0 16px;
    color: #ffd57a;
    font-weight: 600;
}
.about-card h3.mt { margin-top: 28px; }
.yes-list li, .no-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: rgba(246,241,231,.85);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.yes-list li::before {
    content: "+";
    position: absolute;
    left: 6px;
    color: var(--accent);
    font-weight: 800;
}
.no-list li::before {
    content: "×";
    position: absolute;
    left: 6px;
    color: #ff8a7e;
    font-weight: 800;
    font-size: 16px;
}

/* =====================================================================
   FEATURES
   ===================================================================== */
.section-features { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.feature-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: auto -40% -40% auto;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(15,138,95,.10), transparent 70%);
    transition: transform .5s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -20px rgba(11,27,43,.20);
    border-color: var(--accent);
}
.feature-card:hover::before { transform: scale(1.5); }
.feature-ico {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--paper);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 18px;
}
.feature-card h3 {
    font-family: var(--serif);
    font-size: 19px;
    margin: 0 0 10px;
    color: var(--ink);
}
.feature-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.section-how { background: var(--paper); }
.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.steps li {
    padding: 26px 24px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
    transition: all .3s ease;
}
.steps li:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-4px);
}
.steps li:hover h3 { color: #ffd57a; }
.steps li:hover p { color: rgba(246,241,231,.7); }
.steps li:hover .step-no { color: rgba(255,213,122,.4); }
.step-no {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    opacity: .55;
    transition: color .3s;
}
.steps h3 {
    font-family: var(--serif);
    font-size: 18px;
    margin: 14px 0 8px;
    color: var(--ink);
    transition: color .3s;
}
.steps p {
    margin: 0;
    font-size: 13.5px;
    color: var(--ink-soft);
    transition: color .3s;
}

/* =====================================================================
   DISCLAIMER
   ===================================================================== */
.section-disclaimer {
    background:
        linear-gradient(180deg, var(--paper-2), var(--paper));
    border-top: 1px solid var(--line);
}
.disclaimer-box {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 50px 50px 46px;
    box-shadow: 8px 8px 0 var(--accent-2);
    position: relative;
}
.disclaimer-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--line);
}
.warn-ico {
    width: 48px; height: 48px;
    background: var(--danger);
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 900;
    flex-shrink: 0;
}
.disclaimer-head h2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    color: var(--ink);
}
.disc-lead {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin: 0 0 24px;
}
.disc-list {
    display: grid;
    gap: 14px;
}
.disc-list li {
    background: var(--paper);
    padding: 16px 20px;
    border-left: 3px solid var(--accent-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.65;
}
.disc-list li strong { color: var(--ink); }
.disc-foot {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px dashed var(--line);
    font-style: italic;
    color: var(--ink-soft);
    text-align: center;
    font-size: 14px;
}

/* =====================================================================
   CTA
   ===================================================================== */
.section-cta {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    padding: 80px 0;
}
.section-cta h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 42px);
    margin: 0 0 14px;
    color: var(--paper);
}
.section-cta p {
    color: rgba(246,241,231,.7);
    max-width: 600px;
    margin: 0 auto 28px;
    font-size: 16px;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.section-cta .btn-primary {
    background: var(--accent);
    color: var(--white);
}
.section-cta .btn-primary:hover { background: var(--accent-2); }
.section-cta .btn-ghost {
    color: var(--paper);
    border-color: rgba(255,255,255,.4);
}
.section-cta .btn-ghost:hover {
    background: var(--paper);
    color: var(--ink);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: #061320;
    color: rgba(246,241,231,.7);
    padding: 50px 0 30px;
    border-top: 4px solid var(--accent);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 30px;
    align-items: start;
}
.foot-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.foot-brand strong {
    display: block;
    color: var(--paper);
    font-family: var(--serif);
    font-size: 20px;
}
.foot-brand span {
    font-size: 12px;
    color: rgba(246,241,231,.55);
    font-family: var(--mono);
    letter-spacing: .04em;
}
.foot-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.foot-links a {
    color: rgba(246,241,231,.7);
    font-size: 14px;
    transition: color .2s;
}
.foot-links a:hover { color: var(--accent-2); }
.foot-copy {
    font-size: 12.5px;
    text-align: right;
    line-height: 1.7;
    color: rgba(246,241,231,.55);
}
.foot-copy small {
    color: rgba(246,241,231,.4);
    font-size: 11.5px;
    font-style: italic;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; text-align: left; }
    .foot-copy { text-align: left; }
    .about-card { position: static; }
}

@media (max-width: 600px) {
    .section { padding: 60px 0; }
    .hero { padding: 50px 0 60px; }
    .nav-wrap { padding: 16px 20px; }
    .main-nav { gap: 16px; font-size: 13px; }
    .main-nav a:not(.nav-cta) { display: none; }
    .feature-grid, .steps { grid-template-columns: 1fr; }
    .hero-stats { gap: 22px; flex-wrap: wrap; }
    .disclaimer-box { padding: 30px 22px; box-shadow: 4px 4px 0 var(--accent-2); }
    .disclaimer-head h2 { font-size: 24px; }
    .brand-text { font-size: 18px; }
    .edu-text { font-size: 11px; }
}

/* =====================================================================
   DARK THEME OVERRIDE  (modern professional product look)
   Niche ka block landing page ko dark + purple brand me convert karta hai.
   Markup waisa hi rehta hai — sirf colors override hote hain.
   ===================================================================== */
:root {
    --ink:        #e6edf3;
    --ink-soft:   #aeb9c7;
    --paper:      #0b0e14;
    --paper-2:    #131722;
    --line:       #232a3b;
    --accent:     #7c3aed;
    --accent-2:   #2563eb;
    --danger:     #f87171;
    --muted:      #8b949e;
    --white:      #131722;
    --shadow:     0 24px 60px -25px rgba(0,0,0,.65);
}

body { background: radial-gradient(1200px 700px at 85% -15%, #1b2238 0%, #0b0e14 55%) fixed; }

.edu-strip { background: #08101e; color: #cbd5e1; border-bottom: 1px solid var(--line); }
.edu-text strong { color: #fbbf24; }

.site-header { background: rgba(13,17,28,.82); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.brand-mark { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 6px 18px rgba(124,58,237,.45); }
.main-nav a { color: var(--ink-soft); }
.main-nav a:hover { color: #fff; }
.nav-cta { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff !important; }
.nav-cta:hover { filter: brightness(1.1); background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.hero {
    background:
        radial-gradient(1100px 500px at 80% -20%, rgba(124,58,237,.18), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(37,99,235,.14), transparent 60%),
        var(--paper);
}
.hero-bg-grid { opacity: .12; }
.hero-pill { background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.35); color: #c4b5fd; }
.pulse { background: var(--accent); box-shadow: 0 0 0 0 rgba(124,58,237,.6); }
.hero-title .accent { color: #a78bfa; }
.hero-title .accent::after { background: rgba(124,58,237,.30); }

.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 12px 28px -10px rgba(124,58,237,.6); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: var(--paper-2); }
.btn-ghost:hover { background: rgba(124,58,237,.18); color: #fff; }

.mock-card { background: var(--paper-2); border: 1px solid var(--line); }
.mock-head { background: #0b1220; }
.mock-bar { background: #262c3d; }
.mock-badge.up { background: rgba(34,197,94,.15); color: #4ade80; }
.mock-badge.edu { background: rgba(124,58,237,.16); color: #c4b5fd; }

.eyebrow { color: #a78bfa; }

.section-about { background: var(--paper); border-top: 1px solid var(--line); }
.about-note { background: rgba(124,58,237,.1); border-left: 3px solid var(--accent); }
.about-card { background: var(--paper-2); border: 1px solid var(--line); }

.section-features { background: #0c111c; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { background: var(--paper-2); border: 1px solid var(--line); }
.feature-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); }
.feature-card::before { background: radial-gradient(circle, rgba(124,58,237,.16), transparent 70%); }
.feature-ico { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }

.section-how { background: var(--paper); }
.steps li { background: var(--paper-2); border: 1px solid var(--line); }
.steps li:hover { background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(37,99,235,.15)); }
.step-no { color: #a78bfa; }

.section-disclaimer { background: linear-gradient(180deg, #0c111c, var(--paper)); border-top: 1px solid var(--line); }
.disclaimer-box { background: var(--paper-2); border: 2px solid var(--accent); box-shadow: 8px 8px 0 rgba(124,58,237,.35); }
.disc-list li { background: #0e1320; border-left: 3px solid var(--accent); }
.warn-ico { background: var(--danger); color: #1a0606; }

.section-cta { background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(37,99,235,.12)); }
.section-cta .btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.section-cta .btn-primary:hover { filter: brightness(1.1); }

.site-footer { background: #070b12; border-top: 4px solid var(--accent); }
