:root {
    --home-max: 1280px;
    --home-dark: #080909;
    --home-gray: #171717;
    --home-card: #222;
    --home-red: #ed1938;
    --home-muted: #c5c6cb;
}

body {
    top: 0 !important;
    overflow-x: hidden;
}

body > .skiptranslate,
.goog-te-banner-frame.skiptranslate,
.goog-te-menu-frame.skiptranslate {
    display: none !important;
}

.container {
    width: min(var(--home-max), calc(100% - 40px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    background: rgba(8, 9, 9, .96);
    z-index: 100;
}

.nav {
    height: 68px;
    gap: 24px;
}

.brand img {
    width: 176px;
    height: 42px;
    background: #fff;
    padding: 3px 10px;
    object-fit: contain;
}

.nav-actions {
    gap: 9px;
}

.nav-button {
    min-height: 40px;
    padding: 0 17px;
    font-size: .84rem;
}

.language-control {
    display: block;
    width: 146px;
}

.language-control select {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #3b4048;
    border-radius: 6px;
    color: #e7e7e9;
    background: #151719;
    padding: 0 30px 0 11px;
    font: 600 .78rem/1 Inter, sans-serif;
    cursor: pointer;
}

.language-control select:focus {
    outline: 2px solid rgba(237, 25, 56, .35);
    border-color: var(--home-red);
}

.language-control option {
    color: #111;
    background: #fff;
}

.translate-engine {
    position: fixed !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.gradient-text {
    color: var(--home-red);
    background: linear-gradient(90deg, var(--home-red), #ffd1d9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-panel {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 9px;
}

.home-section {
    padding: 88px 0;
}

.dark-section {
    background: var(--home-dark);
}

.gray-section {
    background: var(--home-gray);
}

.centered-heading {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.centered-heading h2 {
    font-size: clamp(2rem, 4vw, 3.05rem);
    letter-spacing: -.035em;
}

.centered-heading h3 {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.centered-heading p {
    margin: 18px auto 0;
    color: var(--home-muted);
    font-size: 1.05rem;
}

.wide-heading {
    max-width: 1000px;
}

.btn-large {
    min-height: 54px;
    padding: 0 28px;
    font-size: 1rem;
}

.optimus-hero {
    position: relative;
    min-height: 820px;
    padding: 68px 0 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #050606;
}

.optimus-hero__media,
.optimus-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.optimus-hero__media {
    object-fit: cover;
    opacity: .72;
}

.optimus-hero__shade {
    z-index: 1;
    background: linear-gradient(90deg, rgba(4, 5, 5, .94), rgba(4, 5, 5, .66) 55%, rgba(4, 5, 5, .2)), linear-gradient(0deg, rgba(5, 5, 5, .76), transparent 48%);
}

.optimus-hero__content {
    position: relative;
    z-index: 2;
    padding: 82px 0 60px;
    text-align: center;
}

.optimus-hero h1 {
    max-width: 900px;
    margin: auto;
    font-size: clamp(3.1rem, 7vw, 6.8rem);
    letter-spacing: -.055em;
    line-height: .96;
}

.optimus-hero h1 span {
    display: block;
    color: var(--home-red);
    background: linear-gradient(90deg, var(--home-red), #ffd0d8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.optimus-hero__content > p {
    max-width: 760px;
    margin: 24px auto 30px;
    color: #d1d2d5;
    font-size: 1.15rem;
}

.optimus-hero .hero-actions {
    justify-content: center;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 70px;
}

.hero-stat-grid article {
    min-height: 136px;
    padding: 24px 16px;
    display: grid;
    place-content: center;
    backdrop-filter: blur(12px);
}

.hero-stat-grid strong {
    color: var(--home-red);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.hero-stat-grid span {
    margin-top: 12px;
    color: #d2d2d7;
    font-size: 1.05rem;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 50%;
    color: var(--home-red);
    font-size: 1.75rem;
    animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
    50% { transform: translateY(8px); }
}

.video-showcase {
    max-width: 940px;
    margin: auto;
    text-align: center;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, .48);
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border: 0;
    border-radius: 50%;
    background: rgba(237, 25, 56, .88);
    color: white;
    font-size: 1.65rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(227, 25, 55, .45);
}

.video-play.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.video-showcase h3 {
    margin-top: 30px;
    font-size: 1.45rem;
}

.video-showcase > p {
    max-width: 720px;
    margin: 14px auto 0;
    color: var(--home-muted);
}

.optimus-split {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 54px;
    align-items: center;
}

.optimus-split > img {
    width: 100%;
    min-height: 440px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 28px 55px rgba(0, 0, 0, .36);
}

.optimus-split > div > h3 {
    font-size: 2rem;
    margin-bottom: 27px;
}

.capability-list {
    display: grid;
    gap: 22px;
}

.capability-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.capability-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--home-red);
    border-radius: 9px;
    font-weight: 900;
}

.capability-list h4 {
    margin: 0 0 5px;
    font-size: 1.08rem;
}

.capability-list p {
    margin: 0;
    color: #d0d0d4;
    font-size: .92rem;
}

.why-invest {
    margin-top: 88px;
    text-align: center;
}

.why-invest > h3 {
    margin-bottom: 34px;
    font-size: 2.3rem;
}

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

.invest-grid article {
    min-height: 300px;
    padding: 38px 34px;
}

.round-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--home-red);
    font-size: 2rem;
}

.invest-grid h4 {
    margin: 0 0 18px;
    font-size: 1.3rem;
}

.invest-grid p {
    margin: 0;
    color: var(--home-muted);
}

.revolution-panel {
    margin-top: 60px;
    padding: 34px;
    text-align: center;
}

.revolution-panel h3 {
    color: var(--home-red);
    font-size: 1.35rem;
}

.revolution-panel p {
    color: var(--home-muted);
}

.revolution-panel strong,
.revolution-panel span {
    display: block;
}

.revolution-panel strong {
    color: var(--home-red);
    font-size: 2rem;
}

.revolution-panel span {
    margin-top: 4px;
    color: var(--home-muted);
}

.milestones {
    margin-top: 88px;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.milestone-grid article {
    padding: 28px;
}

.milestone-grid strong {
    color: var(--home-red);
    font-size: 2rem;
}

.milestone-grid h4 {
    margin: 14px 0 12px;
    font-size: 1.15rem;
}

.milestone-grid p {
    margin: 0;
    color: var(--home-muted);
    font-size: .9rem;
}

.stock-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(250px, 1fr);
    gap: 28px;
}

.stock-chart-card,
.market-data-card {
    padding: 26px;
}

.stock-card-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.stock-card-head h3 {
    font-size: 1.35rem;
}

.chart-periods {
    display: flex;
    gap: 7px;
}

.chart-periods button {
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #cccdd2;
    padding: 6px 10px;
    cursor: pointer;
}

.chart-periods button.is-active {
    background: var(--home-red);
    color: #fff;
}

.stock-chart {
    position: relative;
    height: 410px;
    margin-top: 20px;
    padding: 12px 0 30px 54px;
}

.stock-chart:before {
    content: "";
    position: absolute;
    inset: 12px 0 30px 54px;
    background: repeating-linear-gradient(0deg, transparent, transparent 74px, #303033 75px), repeating-linear-gradient(90deg, transparent, transparent 105px, #303033 106px);
}

.stock-chart svg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.stock-line,
.stock-area {
    transition: d .35s ease;
}

.chart-y-labels {
    position: absolute;
    inset: 7px auto 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #a9abb3;
    font-size: .7rem;
}

.chart-x-labels {
    position: absolute;
    left: 54px;
    right: 0;
    bottom: 4px;
    display: flex;
    justify-content: space-between;
    color: #a9abb3;
    font-size: .7rem;
}

.market-data-card h3 {
    font-size: 1.05rem;
}

.market-price {
    margin: 22px 0;
    padding-bottom: 22px;
    display: grid;
    text-align: center;
    border-bottom: 1px solid #43454b;
}

.market-price strong {
    font-size: 2rem;
}

.market-price span {
    font-weight: 800;
}

.market-price small {
    color: #969aa4;
}

.positive { color: #39d989; }
.negative { color: #ff6478; }

.market-facts {
    display: grid;
    gap: 14px;
}

.market-facts div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.market-facts dt { color: #c4c5cb; }
.market-facts dd { margin: 0; font-weight: 800; }

.market-data-card h4 {
    color: var(--home-red);
    margin: 22px 0 14px;
}

.key-metrics {
    padding-bottom: 22px;
    border-bottom: 1px solid #43454b;
}

.market-status {
    margin-top: 20px;
    display: grid;
    gap: 6px;
    text-align: center;
}

.market-status strong { color: #39d989; }
.market-status i { display: inline-block; width: 10px; height: 10px; margin-right: 5px; border-radius: 50%; background: #39d989; }
.market-status span { color: #969aa4; font-size: .72rem; }

.homepage-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.homepage-plans .plan-card {
    min-height: 450px;
    border-radius: 10px;
}

.homepage-plans .plan-card__body {
    padding: 26px;
}

.homepage-plans .plan-card h3 {
    text-align: center;
}

.plan-return {
    color: var(--home-red);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
}

.homepage-plans .plan-meta {
    text-align: center;
}

.plan-benefits {
    display: grid;
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: #c7c8cd;
    font-size: .86rem;
}

.plan-benefits li:before {
    content: "✓";
    margin-right: 8px;
    color: var(--home-red);
}

.transaction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.transaction-panel {
    padding: 22px;
    overflow: hidden;
}

.transaction-panel h3 {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.transaction-panel h3 i {
    width: 10px;
    height: 10px;
    margin-left: auto;
    border-radius: 50%;
    background: currentColor;
}

.deposit-heading,
.deposit-total { color: #3ce08c; }
.withdrawal-heading,
.withdrawal-total { color: #5ea5ff; }
.transaction-total { color: #c678ff; }

.transaction-list {
    height: 340px;
    margin-top: 18px;
    display: grid;
    gap: 10px;
    overflow: hidden;
}

.transaction-item {
    min-height: 70px;
    padding: 10px 13px;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    background: rgba(255, 255, 255, .055);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    font-weight: 900;
}

.transaction-item.deposit .transaction-icon { background: #25cb75; }
.transaction-item.withdrawal .transaction-icon { background: #3988ee; }
.transaction-name { font-weight: 750; }
.transaction-country,
.transaction-time { color: #969aa4; font-size: .72rem; }
.transaction-value { text-align: right; font-weight: 850; }
.transaction-item.deposit .transaction-value { color: #3ce08c; }
.transaction-item.withdrawal .transaction-value { color: #5ea5ff; }

.transaction-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.transaction-stats article {
    padding: 22px 12px;
    display: grid;
    text-align: center;
}

.transaction-stats strong {
    font-size: 1.75rem;
}

.transaction-stats span {
    color: #d1d2d7;
    font-size: .86rem;
}

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

.testimonial-card {
    padding: 24px;
}

.testimonial-person {
    display: flex;
    gap: 14px;
    align-items: center;
}

.testimonial-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person h3 {
    font-size: .96rem;
}

.testimonial-person span {
    color: #9ea1aa;
    font-size: .8rem;
}

.stars {
    margin: 16px 0 12px;
    color: var(--home-red);
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    margin: 0;
    color: #d0d1d5;
    font-size: .91rem;
    font-style: italic;
}

.final-cta {
    text-align: center;
}

.final-cta h2 {
    max-width: 800px;
    margin: auto;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.final-cta p {
    max-width: 760px;
    margin: 20px auto 30px;
    color: var(--home-muted);
}

.final-cta .btn + .btn {
    margin-left: 10px;
}

.site-footer {
    margin-top: 0;
    padding-top: 54px;
    background: #101112;
}

.site-footer p {
    max-width: 540px;
    color: var(--muted);
}

.footer-brand {
    width: 190px;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
    background: #fff;
    border-radius: 6px;
    padding: 4px 9px;
}

.footer-copy {
    justify-content: center;
    text-align: center;
}

@media (max-width: 1100px) {
    .nav-links { gap: 16px; }
    .language-control { width: 128px; }
    .optimus-split { gap: 34px; }
    .homepage-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .site-header { position: sticky; }
    .nav-links,
    .nav-actions { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav { background: #0e0f10; }
    .mobile-language { width: 100%; padding: 7px 12px; }
    .optimus-hero { padding-top: 0; min-height: 760px; }
    .optimus-split,
    .stock-layout { grid-template-columns: 1fr; }
    .optimus-split > img { min-height: 360px; }
    .invest-grid { grid-template-columns: 1fr; }
    .invest-grid article { min-height: 0; }
    .milestone-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .container { width: min(100% - 28px, var(--home-max)); }
    .home-section { padding: 66px 0; }
    .centered-heading { margin-bottom: 36px; }
    .optimus-hero { min-height: 810px; }
    .optimus-hero__content { padding: 62px 0 70px; }
    .optimus-hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
    .hero-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 48px; }
    .hero-stat-grid article { min-height: 112px; padding: 18px 8px; }
    .hero-stat-grid strong { font-size: 1.75rem; }
    .hero-stat-grid span { font-size: .85rem; }
    .video-play { width: 62px; height: 62px; }
    .optimus-split > img { min-height: 280px; }
    .capability-list article { grid-template-columns: 42px 1fr; }
    .capability-icon { width: 40px; height: 40px; }
    .milestone-grid,
    .homepage-plans,
    .transaction-grid,
    .testimonial-grid { grid-template-columns: 1fr; }
    .stock-chart-card { padding: 18px 12px; }
    .stock-card-head { align-items: flex-start; flex-direction: column; }
    .stock-chart { height: 300px; padding-left: 46px; }
    .stock-chart:before { left: 46px; }
    .chart-x-labels { left: 46px; }
    .transaction-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .transaction-stats strong { font-size: 1.35rem; }
    .final-cta .btn { width: 100%; }
    .final-cta .btn + .btn { margin: 12px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
