:root {
    --bg0: #070A12;
    --bg1: #0B1020;
    --card: rgba(255, 255, 255, .06);
    --stroke: rgba(255, 255, 255, .10);
    --text: rgba(255, 255, 255, .88);
    --muted: rgba(255, 255, 255, .58);
    --good: #2EE59D;
    --bad: #FF5C7A;
    --warn: #FFB020;
    --accent: #7C5CFF;
    --accent2: #30D5FF;
    --shadow: 0 18px 60px rgba(0, 0, 0, .45);
    --radius: 18px;
    --radius2: 26px;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --sans: 'DM Sans', ui-sans-serif, system-ui;
    --display: 'Syne', ui-sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--text);
    background:
        radial-gradient(1200px 600px at 20% 10%, rgba(124, 92, 255, .22), transparent 60%),
        radial-gradient(1000px 600px at 80% 20%, rgba(48, 213, 255, .18), transparent 60%),
        radial-gradient(900px 500px at 60% 80%, rgba(46, 229, 157, .14), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1));
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: .5;
}


/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--stroke);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-menu {
    display: flex;
    gap: 8px;
}

.menu-item {
    padding: 10px 20px;
    color: var(--muted);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.menu-item:hover {
    color: var(--text);
    background: var(--card);
}

.menu-item.active {
    color: var(--text);
    background: var(--card);
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coin-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 12px;
}

.coin-amount {
    font-weight: 700;
    font-size: 14px;
    color: var(--warn);
}

.profile-menu {
    position: relative;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--stroke);
    cursor: pointer;
    transition: all 0.2s;
}

.profile-pic:hover {
    border-color: var(--warn);
}

.is-premium {
    border-color: var(--accent);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg1);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 240px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
}

.profile-menu:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-name {
    font-weight: 600;
    font-size: 14px;
}

.profile-email {
    font-size: 12px;
    color: var(--muted);
}

.dropdown-divider {
    height: 1px;
    background: var(--stroke);
    margin: 8px 0;
}

.dropdown-item {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: var(--card);
}

.dropdown-item.logout {
    color: var(--bad);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--stroke);
    color: var(--muted);
    padding: 9px 20px;
    border-radius: 12px;
    font-size: .875rem;
    font-family: var(--sans);
    cursor: pointer;
    transition: all .2s;
    font-weight: 400;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .25);
    color: var(--text);
    background: var(--card)
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #5a3de0);
    border: none;
    color: #fff;
    padding: 9px 22px;
    border-radius: 12px;
    font-size: .875rem;
    font-family: var(--sans);
    cursor: pointer;
    font-weight: 500;
    transition: all .2s;
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
    opacity: 0;
    transition: opacity .2s;
}

.btn-primary:hover::before {
    opacity: 1
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(124, 92, 255, .5)
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5vw 80px;
    position: relative;
    padding-top: 20px;
}

.hero-bg-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 340px;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-chart svg {
    opacity: .12
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 92, 255, .15);
    border: 1px solid rgba(124, 92, 255, .3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: .8rem;
    font-family: var(--mono);
    color: var(--accent2);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInDown .8s ease both;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--good);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--good);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.03em;
    margin-bottom: 28px;
    animation: fadeInUp .9s .1s ease both;
}

.hero h1 .line2 {
    background: linear-gradient(90deg, var(--accent2), var(--accent), var(--good));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.65;
    font-weight: 300;
    animation: fadeInUp .9s .2s ease both;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
    animation: fadeInUp .9s .3s ease both;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent), #5a3de0);
    border: none;
    color: #fff;
    padding: 15px 34px;
    border-radius: 14px;
    font-size: 1rem;
    font-family: var(--display);
    cursor: pointer;
    font-weight: 700;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
    box-shadow: 0 8px 40px rgba(124, 92, 255, .4);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(124, 92, 255, .6)
}

.btn-hero2 {
    background: var(--card);
    border: 1px solid var(--stroke);
    color: var(--text);
    padding: 15px 34px;
    border-radius: 14px;
    font-size: 1rem;
    font-family: var(--display);
    cursor: pointer;
    font-weight: 600;
    transition: all .25s;
    backdrop-filter: blur(10px);
}

.btn-hero2:hover {
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-2px)
}

/* stats row */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp .9s .4s ease both;
}

.stat-item {
    text-align: center
}

.stat-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-num span {
    color: var(--good);
    -webkit-text-fill-color: var(--good)
}

.stat-label {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: .04em;
    text-transform: uppercase
}

/* ─── SECTION COMMON ─── */
section {
    position: relative;
    z-index: 1
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 5vw
}

.section-label {
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--accent);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.section-body {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── DIVIDER ─── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stroke), transparent);
    margin: 0;
}

/* ─── MISSION ─── */
.mission {
    padding: 110px 0 100px
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.mission-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mission-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0;
    transition: opacity .3s;
}

.mission-card:hover {
    border-color: rgba(255, 255, 255, .18);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .08)
}

.mission-card:hover::before {
    opacity: 1
}

.mc-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
}

.mc-title {
    font-family: var(--display);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.mc-text {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55
}

.mission-text-side {}

.mission-text-side .section-title {
    margin-top: 6px
}

.mission-goals {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.goal-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.goal-icon.g {
    background: rgba(46, 229, 157, .12);
    color: var(--good)
}

.goal-icon.a {
    background: rgba(124, 92, 255, .12);
    color: var(--accent)
}

.goal-icon.b {
    background: rgba(48, 213, 255, .12);
    color: var(--accent2)
}

.goal-icon.w {
    background: rgba(255, 176, 32, .12);
    color: var(--warn)
}

.goal-title {
    font-weight: 500;
    font-size: .95rem;
    margin-bottom: 4px
}

.goal-desc {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.5
}

/* ─── FEATURES ─── */
.features {
    padding: 100px 0 120px
}

.features-header {
    text-align: center;
    margin-bottom: 72px
}

.features-header .section-label {
    justify-content: center
}

.features-header .section-label::before {
    display: none
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feat-card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius2);
    overflow: hidden;
    transition: all .35s cubic-bezier(.17, .67, .32, 1.2);
    position: relative;
}

.feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .15);
    box-shadow: var(--shadow);
}

.feat-card.large {
    grid-column: span 2
}

/* Feature visual areas */
.feat-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-card.large .feat-visual {
    height: 280px
}

/* Visual 1 — MT5 Upload */
.vis-upload {
    background: linear-gradient(135deg, rgba(124, 92, 255, .15), rgba(48, 213, 255, .1));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.upload-mock {
    background: rgba(0, 0, 0, .7);
    border: 2px dashed rgba(124, 92, 255, .5);
    border-radius: 20px;
    width: 200px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s;
}

.feat-card:hover .upload-mock {
    border-color: rgba(124, 92, 255, .9);
    background: rgba(124, 92, 255, .08)
}

.upload-icon {
    font-size: 2.4rem
}

.upload-label {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--muted);
    letter-spacing: .06em
}

.upload-ext {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(46, 229, 157, .15);
    border: 1px solid rgba(46, 229, 157, .3);
    border-radius: 8px;
    padding: 4px 10px;
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--good);
    letter-spacing: .06em;
}

.vis-orbs {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 255, .3), transparent 70%);
    pointer-events: none;
}

/* Visual 2 — Reports */
.vis-report {
    background: linear-gradient(135deg, rgba(46, 229, 157, .12), rgba(124, 92, 255, .1));
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.report-bar-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.report-bar-label {
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--muted);
    width: 80px;
    text-align: right;
    letter-spacing: .04em
}

.report-bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 100px;
    overflow: hidden
}

.report-bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width .8s ease
}

.rb-win {
    background: linear-gradient(90deg, var(--good), rgba(46, 229, 157, .5));
    width: 72%
}

.rb-rr {
    background: linear-gradient(90deg, var(--accent2), rgba(48, 213, 255, .5));
    width: 58%
}

.rb-dd {
    background: linear-gradient(90deg, var(--bad), rgba(255, 92, 122, .5));
    width: 35%
}

.rb-exp {
    background: linear-gradient(90deg, var(--warn), rgba(255, 176, 32, .5));
    width: 88%
}

.report-bar-val {
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--text);
    width: 36px
}

.report-mini-chart {
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    margin-top: 4px;
    padding: 0 10px;
}

.rmc-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-height: 6px;
    transition: height .5s ease;
}

.rmc-bar.pos {
    background: rgba(46, 229, 157, .6)
}

.rmc-bar.neg {
    background: rgba(255, 92, 122, .6)
}

/* Visual 3 — Journal */
.vis-journal {
    background: linear-gradient(135deg, rgba(48, 213, 255, .1), rgba(124, 92, 255, .12));
    width: 100%;
    height: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.journal-entry {
    background: rgba(255, 255, 255, .05);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--stroke);
}

.je-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.je-dot.g {
    background: var(--good);
    box-shadow: 0 0 6px var(--good)
}

.je-dot.b {
    background: var(--bad);
    box-shadow: 0 0 6px var(--bad)
}

.je-dot.w {
    background: var(--warn)
}

.je-date {
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--muted);
    letter-spacing: .04em
}

.je-text {
    font-size: .75rem;
    color: var(--text);
    line-height: 1.4;
    margin-top: 2px
}

.je-tag {
    display: inline-block;
    background: rgba(46, 229, 157, .12);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: .62rem;
    color: var(--good);
    font-family: var(--mono);
    margin-top: 4px;
}

.je-tag.bad {
    background: rgba(255, 92, 122, .12);
    color: var(--bad)
}

/* Visual 4 — Share */
.vis-share {
    background: linear-gradient(135deg, rgba(255, 176, 32, .1), rgba(255, 92, 122, .1));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.share-cards-wrap {
    position: relative;
    width: 260px;
    height: 160px
}

.share-card {
    position: absolute;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 14px 18px;
    width: 200px;
    backdrop-filter: blur(10px);
}

.share-card:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 1
}

.share-card:nth-child(2) {
    top: 16px;
    left: 30px;
    transform: rotate(2deg);
    z-index: 2
}

.feat-card:hover .share-card:nth-child(1) {
    transform: rotate(-8deg) translate(-6px, -6px)
}

.feat-card:hover .share-card:nth-child(2) {
    transform: rotate(4deg) translate(4px, 4px)
}

.share-card .sc-title {
    font-family: var(--mono);
    font-size: .65rem;
    color: var(--accent2);
    letter-spacing: .06em;
    margin-bottom: 8px
}

.share-card .sc-stat {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--good)
}

.share-card .sc-sub {
    font-size: .7rem;
    color: var(--muted);
    margin-top: 2px
}

.share-avatars {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
}

.share-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bg0);
    margin-left: -8px;
    font-size: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Feature card body */
.feat-body {
    padding: 26px 28px 28px
}

.feat-num {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--accent);
    letter-spacing: .1em;
    margin-bottom: 10px;
}

.feat-title {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}

.feat-desc {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300
}

.feat-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px
}

.pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--stroke);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: .73rem;
    color: var(--muted);
    font-family: var(--mono);
    letter-spacing: .02em;
    transition: all .2s;
}

.feat-card:hover .pill {
    border-color: rgba(255, 255, 255, .18);
    color: var(--text)
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0 120px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.contact-info {}

.contact-info p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 20px;
    font-weight: 300;
}

.contact-methods {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cm-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cm-label {
    font-size: .78rem;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: var(--mono)
}

.cm-val {
    font-size: .92rem;
    font-weight: 500;
    margin-top: 2px
}

/* form */
.contact-form {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius2);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group.full {
    grid-column: span 2
}

label {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .03em;
    font-family: var(--mono);
    text-transform: uppercase;
}

input,
textarea,
select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 13px 16px;
    color: var(--text);
    font-family: var(--sans);
    font-size: .9rem;
    outline: none;
    transition: all .2s;
    -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(124, 92, 255, .6);
    background: rgba(124, 92, 255, .06);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, .12);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, .25)
}

textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6
}

select option {
    background: var(--bg1);
    color: var(--text)
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), #5a3de0);
    border: none;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--display);
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .2s;
}

.form-submit:hover::before {
    opacity: 1
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(124, 92, 255, .5)
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--stroke);
    padding: 40px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footer-copy {
    font-size: .82rem;
    color: var(--muted)
}

.footer-links {
    display: flex;
    gap: 24px
}

.footer-links a {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.footer-links a:hover {
    color: var(--text)
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg0)
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .2)
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {

    .mission-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .feat-card.large {
        grid-column: span 1
    }

    nav {
        display: none
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .form-group.full {
        grid-column: span 1
    }

    .mission-cards {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .mission-cards {
        grid-template-columns: 1fr
    }

    header {
        padding: 0 4vw
    }

    .contact-form {
        padding: 24px
    }
}

/* glow line */
.glow-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    margin: 0 auto;
    opacity: .5;
}

/* Ticker-style badge */
.ticker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 229, 157, .1);
    border: 1px solid rgba(46, 229, 157, .25);
    border-radius: 100px;
    padding: 5px 14px 5px 10px;
    font-family: var(--mono);
    font-size: .72rem;
    color: var(--good);
    letter-spacing: .04em;
}

.ticker svg {
    width: 14px;
    height: 14px
}

a {
    text-decoration: none;
}

a:visited {
    color: unset;
}

.form-message {
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.refresh-captcha {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .header-container {
        padding: 0 24px;
    }

    .container {
        padding: 0 24px;
    }

    .top-menu {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

}