:root {
  --red: #ff2d2d;
  --red-dark: #e31c1c;
  --ink: #111111;
  --muted: #6d6d75;
  --surface: #f8f9fb;
  --line: #e8e8e8;
  --green: #2ecc71;
  --white: #ffffff;
  --shadow-sm: 0 12px 36px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 26px 80px rgba(17, 17, 17, 0.1);
  --shadow-red: 0 18px 44px rgba(255, 45, 45, 0.22);
  --radius: 24px;
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: #fff; background: var(--red); }

a { color: inherit; text-decoration: none; }

button,
input,
select { font: inherit; }

button { color: inherit; }

img,
svg { display: block; }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: 136px; }
.section-tight { padding-block: 40px 72px; }
.section-surface { background: var(--surface); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mobile-only { display: none !important; }

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
}

.page-glow--one {
  top: -250px;
  right: -220px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255,45,45,.11), rgba(255,45,45,0) 69%);
}

.page-glow--two {
  top: 580px;
  left: -320px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255,45,45,.055), rgba(255,45,45,0) 69%);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,.9);
  border-color: rgba(232,232,232,.85);
  box-shadow: 0 8px 35px rgba(17,17,17,.04);
  backdrop-filter: blur(18px);
}

.nav { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -.7px; }
.brand img { width: 168px; height: 100%; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a,
.login-link { position: relative; color: #4b4b52; font-size: 13px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--red); transition: right .25s ease; }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 24px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button--large { min-height: 56px; padding-inline: 27px; }
.button--primary { color: #fff; background: var(--red); box-shadow: 0 10px 28px rgba(255,45,45,.2); }
.button--primary:hover { background: var(--red-dark); box-shadow: var(--shadow-red); }
.button--ghost { border-color: var(--line); background: rgba(255,255,255,.75); box-shadow: var(--shadow-sm); }
.button--ghost:hover { border-color: #d5d5d8; background: #fff; }
.button--dark { color: #fff; background: var(--ink); }
.button--dark:hover { background: #2b2b2f; box-shadow: 0 15px 35px rgba(17,17,17,.17); }
.button--light { color: var(--ink); background: #fff; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.button--outline-light:hover { background: rgba(255,255,255,.13); }
.play-icon { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 8px; padding-left: 1px; }

.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: var(--surface); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: var(--ink); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 800px;
  padding-top: 158px;
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-copy { position: relative; z-index: 5; padding-bottom: 22px; max-width: 640px; }
.eyebrow,
.kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 1.55px; text-transform: uppercase; }
.eyebrow { padding: 9px 13px; border: 1px solid rgba(255,45,45,.12); border-radius: 999px; background: rgba(255,45,45,.045); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255,45,45,.1); animation: pulse 2.4s infinite; }

.hero h1 {
  margin: 27px 0 22px;
  font-family: var(--display);
  font-size: clamp(54px, 5.2vw, 78px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 670px;
}
.hero h1 span { color: #97979c; }
.hero-copy > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; margin-top: 35px; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 38px; }
.hero-proof strong,
.hero-proof small { display: block; }
.hero-proof strong { margin-bottom: 4px; font-size: 12px; }
.hero-proof small { color: #8b8b91; font-size: 10px; }
.avatar-stack { display: flex; }
.avatar-stack span { display: grid; width: 33px; height: 33px; place-items: center; margin-left: -8px; border: 2px solid #fff; border-radius: 50%; color: #fff; background: #1d1d21; font-size: 8px; font-weight: 700; }
.avatar-stack span:first-child { margin-left: 0; background: #8c6658; }
.avatar-stack span:nth-child(2) { background: #2f6b64; }
.avatar-stack span:nth-child(3) { background: #7e5265; }
.avatar-stack span:last-child { color: var(--ink); background: var(--surface); }
.rating { padding-left: 16px; border-left: 1px solid var(--line); }
.rating span { color: var(--red); font-size: 11px; letter-spacing: 1px; }

.hero-visual { position: relative; min-height: 680px; display: flex; justify-content: flex-end; align-items: center; perspective: 1600px; width: 100%; }
.visual-orbit { position: absolute; left: 50%; top: 51%; border: 1px solid rgba(255,45,45,.1); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 660px; height: 660px; }
.orbit-two { width: 520px; height: 520px; border-style: dashed; animation: rotate 45s linear infinite; }
.dashboard-card { background: rgba(255,255,255,.92); border: 1px solid rgba(232,232,232,.9); box-shadow: 0 45px 110px rgba(17,17,17,.14), 0 0 90px rgba(255,45,45,.065); backdrop-filter: blur(18px); }
.hero-dashboard { position: relative; z-index: 2; width: 100%; max-width: 710px; padding: 23px; border-radius: 26px; transform: rotateY(-6deg) rotateX(2deg); transform-origin: center; }
.dashboard-topbar,
.dash-welcome,
.card-heading,
.asset-head,
.earnings-top,
.app-header,
.app-balance-row,
.app-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dashboard-topbar { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mini-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; }
.mini-brand img { width: 27px; height: 27px; }
.dash-actions { display: flex; align-items: center; gap: 10px; }
.dash-actions button,
.icon-button { display: grid; width: 29px; height: 29px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
.user-dot,
.dash-avatar { display: grid; place-items: center; border-radius: 50%; color: #fff; background: #232328; font-weight: 700; }
.user-dot { width: 29px; height: 29px; font-size: 8px; }
.dash-welcome { margin-top: 20px; }
.dash-welcome small,
.card-heading small,
.hero-metrics small,
.hero-metrics span,
.allocation-list,
.floating-card small { color: #85858c; font-size: 9px; }
.dash-welcome h3 { margin: 5px 0 4px; font-family: var(--display); font-size: 28px; letter-spacing: -1px; }
.positive,
.green { color: var(--green) !important; }
.period-pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff; font-size: 9px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 12px; }
.hero-metrics > div { padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.hero-metrics strong,
.hero-metrics small,
.hero-metrics span { display: block; }
.hero-metrics strong { margin: 6px 0; font-size: 15px; }
.dash-grid { display: grid; grid-template-columns: 2fr .8fr; gap: 11px; }
.performance-card,
.allocation-card { min-width: 0; padding: 15px; border: 1px solid var(--line); border-radius: 15px; }
.card-heading strong,
.card-heading small { display: block; }
.card-heading strong { font-size: 10px; }
.card-heading small { margin-top: 3px; }
.card-heading button { padding: 0; border: 0; background: none; color: #aaa; }
.legend { color: #777; font-size: 8px; }
.legend i { display: inline-block; width: 6px; height: 6px; margin-right: 4px; border-radius: 50%; background: var(--red); }
.chart-wrap { position: relative; height: 186px; padding: 8px 0 20px 26px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 37px, #f0f0f1 38px); }
.chart-labels { position: absolute; inset: 6px auto 16px 0; display: flex; flex-direction: column; justify-content: space-between; color: #aaa; font-size: 7px; }
.line-chart { width: 100%; height: 145px; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--red); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 0; }
.chart-point circle:first-child { fill: #fff; stroke: var(--red); stroke-width: 2; }
.chart-point circle:last-child { fill: var(--red); }
.chart-months { display: flex; justify-content: space-between; color: #aaa; font-size: 7px; }
.chart-tooltip { position: absolute; top: 26px; right: 62px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.95); box-shadow: 0 8px 20px rgba(17,17,17,.07); }
.chart-tooltip small,
.chart-tooltip strong { display: block; font-size: 7px; }
.chart-tooltip strong { margin-top: 3px; font-size: 9px; }
.donut { width: 102px; height: 102px; display: grid; place-items: center; margin: 20px auto 16px; border-radius: 50%; background: conic-gradient(var(--red) 0 44%, #17171a 44% 72%, #b5b5ba 72% 90%, #ededee 90%); }
.donut::before { content: ""; position: absolute; width: 69px; height: 69px; border-radius: 50%; background: #fff; }
.donut > div { z-index: 1; text-align: center; }
.donut strong,
.donut small { display: block; }
.donut strong { font-size: 17px; }
.donut small { color: #999; font-size: 8px; }
.allocation-list > div { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; }
.allocation-list span { display: flex; align-items: center; gap: 6px; }
.coin { display: inline-grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; color: #fff; font-size: 8px; font-style: normal; font-weight: 800; }
.coin-eth { background: #627eea; }
.coin-sol { color: #fff; background: #111 linear-gradient(135deg,#9945ff,#14f195); }
.coin-atom { background: #2e3148; }
.coin-poly { background: #8247e5; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border: 1px solid rgba(232,232,232,.95); border-radius: 14px; background: rgba(255,255,255,.93); box-shadow: var(--shadow-md); backdrop-filter: blur(15px); animation: float 5s ease-in-out infinite; }
.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-size: 11px; }
.floating-reward { top: 98px; right: -30px; }
.floating-secure { left: -15px; bottom: 94px; animation-delay: -2.2s; }
.float-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; color: var(--red); background: rgba(255,45,45,.09); font-weight: 800; }
.shield-icon { color: var(--green); background: rgba(46,204,113,.1); }

.trusted { overflow: hidden; border-top: 1px solid var(--line); }
.trusted-heading { display: flex; align-items: center; gap: 20px; margin-bottom: 34px; }
.trusted-heading p { flex: 0 0 auto; margin: 0; color: #96969c; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.trusted-heading span { width: 100%; height: 1px; background: var(--line); }
.logo-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.logo-track { width: max-content; display: flex; align-items: center; gap: 70px; animation: marquee 34s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.partner-logo { display: flex; align-items: center; gap: 10px; color: #77777d; font-size: 15px; font-weight: 750; white-space: nowrap; filter: grayscale(1); opacity: .72; }
.partner-logo b { color: #4e4e55; font-size: 20px; }

.section-heading { margin-bottom: 58px; }
.section-heading.center { max-width: 720px; margin-inline: auto; text-align: center; }
.section-heading h2,
.security-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 16px 0 18px;
  font-family: var(--display);
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1.08;
  letter-spacing: -3px;
}
.section-heading p,
.security-copy > p,
.faq-heading > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.section-heading.center p { margin-inline: auto; }
.heading-row { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.heading-row > div:last-child { padding-bottom: 7px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--red); font-size: 13px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 370px; overflow: hidden; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: #dadadd; box-shadow: var(--shadow-md); }
.feature-card--large { grid-column: span 1; }
.feature-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.feature-icon svg,
.step-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon-red { color: var(--red); background: rgba(255,45,45,.06); border-color: rgba(255,45,45,.12); }
.feature-card h3 { margin: 26px 0 10px; font-family: var(--display); font-size: 20px; letter-spacing: -.65px; }
.feature-card > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.security-viz { position: absolute; left: 50%; bottom: -82px; width: 250px; height: 250px; transform: translateX(-50%); }
.security-ring { position: absolute; inset: 0; border: 1px dashed #ddd; border-radius: 50%; animation: rotate 30s linear infinite; }
.ring-b { inset: 43px; border-style: solid; border-color: rgba(255,45,45,.15); animation-direction: reverse; }
.security-core { position: absolute; inset: 83px; display: grid; place-items: center; border-radius: 50%; background: #fff; box-shadow: 0 14px 45px rgba(255,45,45,.17); }
.security-core img { width: 48px; height: 48px; }
.security-node { position: absolute; display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--red); background: #fff; box-shadow: var(--shadow-sm); font-size: 10px; }
.node-a { top: 22px; left: 34px; }
.node-b { top: 74px; right: -7px; }
.node-c { left: -5px; top: 132px; }
.click-viz { position: absolute; left: 30px; right: 30px; bottom: 30px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.click-viz > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; }
.click-viz b { font-size: 11px; }
.click-viz small { color: var(--green); font-size: 9px; font-weight: 700; }
.click-viz button { width: 100%; margin-top: 11px; padding: 10px 12px; border: 0; border-radius: 9px; color: #fff; background: var(--ink); font-size: 10px; font-weight: 700; }
.click-viz button span { float: right; }
.mini-bars { position: absolute; left: 30px; right: 30px; bottom: 30px; height: 105px; display: flex; align-items: flex-end; gap: 8px; padding-top: 27px; border-bottom: 1px solid var(--line); }
.mini-bars i { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: linear-gradient(to top, rgba(255,45,45,.3), var(--red)); transform-origin: bottom; transition: transform .4s ease; }
.feature-card:hover .mini-bars i { transform: scaleY(1.08); }
.mini-bars span { position: absolute; top: 0; right: 0; color: #aaa; font-size: 10px; }
.mini-bars b { color: var(--red); font-size: 15px; }
.chain-row { position: absolute; left: 30px; right: 30px; bottom: 42px; display: flex; justify-content: center; }
.chain-row .coin,
.chain-more { width: 48px; height: 48px; margin-left: -7px; border: 4px solid #fff; font-size: 12px; }
.chain-row .coin:first-child { margin-left: 0; }
.chain-more { display: grid; place-items: center; border-radius: 50%; color: #555; background: #eee; font-size: 10px; font-weight: 700; }
.earning-ticker { position: absolute; left: 30px; right: 30px; bottom: 30px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.earning-ticker span,
.earning-ticker strong,
.earning-ticker small { display: block; }
.earning-ticker span { color: #8a8a90; font-size: 10px; }
.earning-ticker strong { margin: 8px 0; color: var(--green); font-size: 22px; }
.earning-ticker small { color: #aaa; font-size: 9px; }
.custody-viz { position: absolute; left: 30px; right: 30px; bottom: 30px; padding-top: 20px; text-align: center; }
.custody-viz .custody-line { display: block; height: 7px; overflow: hidden; margin-bottom: 25px; border-radius: 999px; background: #eee; }
.custody-viz .custody-line::after { content: ""; display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--red), #ff7575); }
.custody-viz div { font-family: var(--display); font-size: 34px; font-weight: 800; letter-spacing: -2px; }
.custody-viz small { color: var(--red); font-size: 18px; }
.custody-viz p { margin: 4px 0 0; color: #999; font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }

.asset-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.asset-card { position: relative; min-height: 240px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.asset-card:hover { transform: translateY(-5px); border-color: #d8d8db; box-shadow: var(--shadow-sm); }
.featured-asset { border-color: rgba(255,45,45,.25); box-shadow: inset 0 3px 0 var(--red); }
.asset-logo { display: inline-grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; color: #fff; font-size: 16px; font-weight: 800; }
.btc { background: #f7931a; }
.eth { background: #627eea; }
.bnb { background: #f3ba2f; color: #332a00; }
.poly { background: #8247e5; }
.sol { background: #111 linear-gradient(135deg,#9945ff,#14f195); }
.atom { background: #2e3148; }
.avax { background: #e84142; }
.ada { background: #0d68b5; }
.dot { background: #e6007a; }
.trx { background: #ef0027; }
.ton { background: #168acd; }
.usdt { background: #26a17b; }
.status { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; color: #4d8c64; background: rgba(46,204,113,.08); font-size: 8px; font-weight: 750; text-transform: uppercase; letter-spacing: .45px; }
.status i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.asset-card h3 { margin: 25px 0 4px; font-family: var(--display); font-size: 18px; }
.asset-card > p { margin: 0; color: #95959a; font-size: 11px; }
.asset-rate { position: absolute; left: 25px; right: 25px; bottom: 23px; display: flex; align-items: end; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.asset-rate span { color: #999; font-size: 9px; }
.asset-rate strong { color: var(--green); font-family: var(--display); font-size: 18px; }
.more-asset { color: #fff; background: var(--ink); border-color: var(--ink); }
.more-coins { display: flex; }
.more-coins .asset-logo { width: 41px; height: 41px; margin-left: -8px; border: 3px solid var(--ink); font-size: 12px; }
.more-coins .asset-logo:first-child { margin-left: 0; }
.more-asset > p { color: #96969c; }
.more-asset .text-link { position: absolute; bottom: 25px; }

.rewards-section {
  overflow: hidden;
  padding-inline: 24px;
}
.rewards-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
.calculator { padding: 39px; border-right: 1px solid var(--line); }
.calc-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 31px; }
.calc-heading h3 { margin: 0; font-family: var(--display); font-size: 20px; }
.calc-heading span { color: var(--green); font-size: 9px; }
.calc-heading span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--green); }
.field-label { display: block; margin: 18px 0 8px; color: #77777d; font-size: 10px; font-weight: 650; }
.select-wrap,
.amount-input { position: relative; display: flex; align-items: center; min-height: 56px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.select-wrap .asset-logo { width: 30px; height: 30px; margin-left: 14px; font-size: 10px; }
.select-wrap select { flex: 1; height: 54px; padding: 0 38px 0 10px; border: 0; outline: 0; background: transparent; font-size: 12px; font-weight: 650; appearance: none; }
.chevron { position: absolute; right: 16px; color: #999; pointer-events: none; }
.amount-input { padding: 0 13px; }
.amount-input > span { color: #999; font-size: 14px; }
.amount-input input { width: 100%; padding: 0 9px; border: 0; outline: 0; background: transparent; font-family: var(--display); font-size: 22px; font-weight: 750; }
.amount-input button { padding: 7px 9px; border: 0; border-radius: 7px; color: var(--red); background: rgba(255,45,45,.08); font-size: 8px; font-weight: 800; }
.range { width: 100%; height: 4px; margin: 24px 0 0; border-radius: 999px; background: linear-gradient(to right, var(--red) 0 24%, #e9e9eb 24%); appearance: none; }
.range::-webkit-slider-thumb { width: 17px; height: 17px; border: 4px solid #fff; border-radius: 50%; background: var(--red); box-shadow: 0 2px 10px rgba(255,45,45,.35); appearance: none; }
.range-labels { display: flex; justify-content: space-between; margin-top: 7px; color: #aaa; font-size: 8px; }
.calc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 26px; }
.calc-stats > div { padding: 13px 10px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.calc-stats span,
.calc-stats strong { display: block; }
.calc-stats span { margin-bottom: 6px; color: #999; font-size: 8px; }
.calc-stats strong { font-size: 12px; }
.earnings-chart { min-width: 0; padding: 40px; background: #fafafb; }
.earnings-top > div:first-child span,
.earnings-top > div:first-child strong,
.earnings-top > div:first-child small { display: block; }
.earnings-top span { color: #8e8e94; font-size: 10px; }
.earnings-top strong { margin: 7px 0 4px; font-family: var(--display); font-size: 31px; letter-spacing: -1px; }
.earnings-top small { color: var(--green); font-size: 10px; }
.period-tabs { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.period-tabs button { padding: 7px 10px; border: 0; border-radius: 6px; background: transparent; color: #999; font-size: 8px; font-weight: 700; cursor: pointer; }
.period-tabs button.active { color: #fff; background: var(--ink); }
.big-chart { position: relative; height: 275px; margin-top: 23px; padding-bottom: 24px; }
.big-chart-lines { position: absolute; inset: 0 0 25px; display: flex; flex-direction: column; justify-content: space-between; }
.big-chart-lines i { width: 100%; height: 1px; background: #e9e9eb; }
.big-chart svg { position: relative; z-index: 1; width: 100%; height: 235px; overflow: visible; }
.big-area { fill: url(#bigFill); }
.big-line { fill: none; stroke: var(--red); stroke-width: 2.3; vector-effect: non-scaling-stroke; }
.big-dot { fill: var(--red); stroke: #fff; stroke-width: 4; }
.chart-years { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; color: #aaa; font-size: 8px; }
.chart-disclaimer { padding-top: 13px; border-top: 1px solid var(--line); color: #aaa; font-size: 8px; }

.dashboard-showcase { overflow: hidden; padding-bottom: 85px; color: #fff; background: #0d0d0f; }
.dashboard-showcase .section-heading p { color: #99999f; }
.laptop-wrap { position: relative; width: 1120px; margin: 10px auto 0; }
.laptop-screen { height: 660px; display: grid; grid-template-columns: 180px 1fr; overflow: hidden; border: 8px solid #2b2b2f; border-bottom-width: 14px; border-radius: 24px 24px 10px 10px; color: var(--ink); background: #f7f7f8; box-shadow: 0 50px 100px rgba(0,0,0,.55), 0 0 90px rgba(255,45,45,.1); }
.app-sidebar { display: flex; flex-direction: column; padding: 24px 17px; border-right: 1px solid var(--line); background: #fff; }
.app-sidebar .brand { font-size: 15px; }
.app-sidebar .brand img { width: auto; height: 36px; }
.sidebar-links { display: grid; gap: 6px; margin-top: 35px; }
.sidebar-links span { display: flex; gap: 10px; padding: 10px; border-radius: 8px; color: #8b8b90; font-size: 9px; }
.sidebar-links .active { color: var(--red); background: rgba(255,45,45,.07); }
.sidebar-links b { color: inherit; font-weight: 650; }
.help-card { margin-top: auto; padding: 15px; border-radius: 12px; background: var(--surface); }
.help-card > span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 8px; color: #fff; background: var(--red); font-size: 10px; }
.help-card b,
.help-card small { display: block; }
.help-card b { margin-top: 12px; font-size: 9px; }
.help-card small { margin-top: 4px; color: #999; font-size: 7px; }
.help-card button { width: 100%; margin-top: 12px; padding: 8px; border: 1px solid var(--line); border-radius: 7px; background: #fff; font-size: 8px; }
.app-main { min-width: 0; padding: 25px 28px; }
.app-header small,
.app-header h3 { display: block; }
.app-header small { color: #96969b; font-size: 8px; }
.app-header h3 { margin: 3px 0 0; font-family: var(--display); font-size: 19px; }
.app-header > div:last-child { display: flex; align-items: center; gap: 7px; }
.dash-avatar { width: 30px; height: 30px; font-size: 8px; }
.app-balance-row { margin-top: 28px; }
.app-balance span,
.app-balance strong,
.app-balance small { display: block; }
.app-balance span { color: #888; font-size: 8px; }
.app-balance strong { margin: 4px 0; font-family: var(--display); font-size: 27px; }
.app-balance small { color: var(--green); font-size: 8px; }
.app-balance small i { color: #aaa; font-style: normal; }
.app-ctas { display: flex; gap: 7px; }
.app-ctas button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-size: 8px; font-weight: 650; }
.app-ctas .primary { color: #fff; background: var(--red); border-color: var(--red); }
.app-content-grid { display: grid; grid-template-columns: 1fr 210px; gap: 12px; margin-top: 22px; }
.app-performance,
.app-rewards-card,
.app-assets { min-width: 0; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.app-card-head b,
.app-card-head small { display: block; }
.app-card-head b { font-size: 9px; }
.app-card-head small { margin-top: 3px; color: #999; font-size: 7px; }
.app-tabs { display: flex; gap: 11px; color: #aaa; font-size: 7px; }
.app-tabs .active { padding-bottom: 4px; color: var(--red); border-bottom: 1px solid var(--red); }
.app-chart-value { display: flex; align-items: center; gap: 8px; margin: 18px 0 4px; }
.app-chart-value strong { font-size: 15px; }
.app-chart-value span { color: var(--green); font-size: 7px; }
.app-performance svg { width: 100%; height: 150px; }
.app-chart-line { fill: none; stroke: var(--red); stroke-width: 2; vector-effect: non-scaling-stroke; }
.app-months { display: flex; justify-content: space-between; color: #aaa; font-size: 6px; }
.app-rewards-card > strong,
.app-rewards-card > small { display: block; }
.app-rewards-card > strong { margin-top: 20px; font-size: 19px; }
.app-rewards-card > small { margin-top: 4px; font-size: 8px; }
.reward-ring { width: 96px; height: 96px; display: grid; place-items: center; margin: 16px auto; border-radius: 50%; background: conic-gradient(var(--red) 0 76%, #eee 76%); }
.reward-ring::before { content: ""; position: absolute; width: 70px; height: 70px; border-radius: 50%; background: #fff; }
.reward-ring > div { z-index: 1; text-align: center; }
.reward-ring b,
.reward-ring small { display: block; }
.reward-ring b { font-size: 13px; }
.reward-ring small { margin-top: 3px; color: #aaa; font-size: 6px; }
.app-rewards-card > button { width: 100%; padding: 9px; border: 1px solid rgba(255,45,45,.2); border-radius: 8px; color: var(--red); background: rgba(255,45,45,.05); font-size: 8px; font-weight: 700; }
.app-rewards-card > button span { float: right; }
.app-assets { grid-column: span 2; }
.app-card-head a { color: var(--red); font-size: 7px; }
.asset-table { margin-top: 13px; }
.asset-table > div { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr) .5fr; align-items: center; padding: 9px 0; border-top: 1px solid var(--line); font-size: 8px; }
.asset-table .table-head { padding-top: 0; border: 0; color: #aaa; font-size: 7px; }
.asset-table > div > span:first-child { display: flex; align-items: center; gap: 8px; }
.asset-table .coin { width: 25px; height: 25px; }
.asset-table b small { display: block; margin-top: 2px; color: #aaa; font-size: 6px; font-weight: 400; }
.asset-table button { padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; background: #fff; font-size: 7px; }
.laptop-base { position: relative; z-index: 1; width: 1230px; height: 24px; margin-left: -55px; border-radius: 2px 2px 60% 60%; background: linear-gradient(#d9d9dc,#76767a); }
.laptop-base span { position: absolute; top: 0; left: 50%; width: 160px; height: 7px; border-radius: 0 0 9px 9px; background: #aaa; transform: translateX(-50%); }
.laptop-shadow { width: 86%; height: 34px; margin: -12px auto 0; border-radius: 50%; background: rgba(0,0,0,.8); filter: blur(18px); }

.security-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: start; }
.security-copy { position: sticky; top: 145px; }
.security-copy > p { margin-bottom: 28px; }
.audit-badges { display: flex; gap: 9px; margin: 28px 0; }
.audit-badges > div { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; }
.audit-badges > div > span { color: var(--red); font-weight: 800; }
.audit-badges b,
.audit-badges small { display: block; }
.audit-badges b { font-size: 9px; }
.audit-badges small { margin-top: 2px; color: #aaa; font-size: 7px; font-weight: 500; }
.security-stack { position: relative; }
.security-stack::before { content: ""; position: absolute; left: 22px; top: 45px; bottom: 45px; width: 1px; background: linear-gradient(var(--red), #eee); }
.security-stack article { position: relative; display: grid; grid-template-columns: 45px 46px 1fr; gap: 18px; align-items: start; padding: 24px 0; border-bottom: 1px solid var(--line); }
.security-stack article:last-child { border-bottom: 0; }
.security-step { z-index: 1; display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--red); background: #fff; font-size: 9px; font-weight: 800; }
.security-stack h3 { margin: 3px 0 7px; font-family: var(--display); font-size: 17px; }
.security-stack p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.process { overflow: hidden; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.step-connector { position: absolute; left: 12.5%; right: 12.5%; top: 56px; height: 1px; background: #dedee1; }
.step-connector i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--red), rgba(255,45,45,.08)); transform-origin: left; }
.steps article { position: relative; text-align: center; }
.step-number { position: absolute; z-index: 2; top: 42px; left: calc(50% + 30px); display: grid; width: 23px; height: 23px; place-items: center; border: 3px solid var(--surface); border-radius: 50%; color: #fff; background: var(--red); font-size: 7px; font-weight: 800; }
.step-icon { position: relative; z-index: 1; display: grid; width: 112px; height: 112px; place-items: center; margin: 0 auto 25px; border: 1px solid var(--line); border-radius: 35px; background: #fff; box-shadow: var(--shadow-sm); transform: rotate(45deg); transition: transform .35s ease, box-shadow .35s ease; }
.step-icon svg { width: 28px; height: 28px; color: var(--red); transform: rotate(-45deg); }
.steps article:hover .step-icon { transform: rotate(45deg) translate(-5px,-5px); box-shadow: var(--shadow-md); }
.steps h3 { margin: 0 0 9px; font-family: var(--display); font-size: 17px; }
.steps p { max-width: 235px; margin: 0 auto; color: var(--muted); font-size: 12px; line-height: 1.6; }

.stats-strip { padding: 52px 0; color: #fff; background: var(--ink); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stats-grid > div { padding: 0 25px; border-right: 1px solid rgba(255,255,255,.11); text-align: center; }
.stats-grid > div:last-child { border-right: 0; }
.stats-grid strong,
.stats-grid span { display: block; }
.stats-grid strong { font-family: var(--display); font-size: 31px; letter-spacing: -1.5px; }
.stats-grid span { margin-top: 7px; color: #8f8f95; font-size: 9px; text-transform: uppercase; letter-spacing: .8px; }

.review-summary { display: flex; align-items: center; gap: 7px; margin-top: 18px; }
.review-summary span,
.stars { color: var(--red); letter-spacing: 1px; }
.review-summary b { font-size: 13px; }
.review-summary small { color: #999; font-size: 10px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.testimonial-grid article { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.testimonial-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-grid .testimonial-featured { color: #fff; background: var(--ink); border-color: var(--ink); transform: translateY(-12px); }
.testimonial-grid .testimonial-featured:hover { transform: translateY(-17px); }
.quote-mark { position: absolute; top: 15px; right: 25px; color: rgba(255,45,45,.15); font-family: Georgia,serif; font-size: 70px; line-height: 1; }
.stars { font-size: 11px; }
.testimonial-grid blockquote { min-height: 113px; margin: 25px 0 28px; font-family: var(--display); font-size: 16px; line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer .avatar { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; color: #fff; font-size: 9px; font-weight: 800; }
.avatar-one { background: linear-gradient(135deg,#aa7967,#55352a); }
.avatar-two { background: linear-gradient(135deg,#4d768e,#203947); }
.avatar-three { background: linear-gradient(135deg,#8e6d91,#49374c); }
.reviewer b,
.reviewer small { display: block; }
.reviewer b { font-size: 10px; }
.reviewer small { margin-top: 4px; color: #999; font-size: 8px; }
.reviewer i { display: grid; width: 17px; height: 17px; margin-left: auto; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 8px; font-style: normal; }

.faq-section { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.faq-heading { position: sticky; top: 145px; align-self: start; }
.faq-heading a { display: inline-flex; gap: 8px; margin-top: 10px; color: var(--red); font-size: 12px; font-weight: 700; }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 25px 0; border: 0; background: none; font-family: var(--display); font-size: 16px; font-weight: 700; text-align: left; cursor: pointer; }
.faq-item button i { position: relative; flex: 0 0 auto; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item button i::before,
.faq-item button i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 11px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.open button i { border-color: var(--red); background: var(--red); }
.faq-item.open button i::before,
.faq-item.open button i::after { background: #fff; }
.faq-item.open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 25px; }

.final-cta { position: relative; min-height: 500px; display: grid; place-items: center; overflow: hidden; margin-top: 110px; margin-bottom: 110px; border-radius: 32px; color: #fff; background: #111; text-align: center; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 110%, rgba(255,45,45,.8), transparent 47%); }
.cta-content { position: relative; z-index: 2; max-width: 730px; padding: 70px 25px; }
.cta-content .kicker { color: #ff7777; }
.cta-content h2 { font-size: clamp(45px,5.6vw,72px); line-height: 1; }
.cta-content > p { max-width: 500px; margin: 0 auto; color: #aaaab0; font-size: 15px; line-height: 1.6; }
.cta-content > div { display: flex; justify-content: center; gap: 11px; margin-top: 30px; }
.cta-content > small { display: block; margin-top: 18px; color: #77777c; font-size: 9px; }
.cta-orbit { position: absolute; left: 50%; top: 94%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.cta-orbit-a { width: 800px; height: 800px; }
.cta-orbit-b { width: 550px; height: 550px; border-style: dashed; animation: rotate 45s linear infinite; }
.cta-coins .asset-logo { position: absolute; z-index: 1; border: 4px solid rgba(255,255,255,.12); box-shadow: 0 15px 40px rgba(0,0,0,.35); animation: float 6s ease-in-out infinite; }
.cta-coins span:first-child { left: 12%; top: 27%; }
.cta-coins span:nth-child(2) { right: 13%; top: 22%; animation-delay: -2s; }
.cta-coins span:nth-child(3) { left: 21%; bottom: 15%; animation-delay: -3.5s; }
.cta-coins span:nth-child(4) { right: 22%; bottom: 13%; animation-delay: -1s; }

.footer { padding: 75px 0 35px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 80px; }
.footer-brand > p { max-width: 260px; margin: 20px 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; width: 33px; height: 33px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 10px; font-weight: 700; transition: .2s ease; }
.socials a:hover { color: #fff; background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.footer-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.footer-links h4 { margin: 0 0 18px; font-size: 11px; }
.footer-links a { display: block; margin: 12px 0; color: #7d7d83; font-size: 10px; }
.footer-links a:hover { color: var(--red); }
.footer-links a span { margin-left: 4px; padding: 3px 5px; border-radius: 4px; color: var(--red); background: rgba(255,45,45,.07); font-size: 6px; text-transform: uppercase; }
.newsletter { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 60px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter b,
.newsletter > div span { display: block; }
.newsletter b { font-size: 13px; }
.newsletter > div span { margin-top: 5px; color: #999; font-size: 9px; }
.newsletter form { display: flex; min-width: 390px; padding: 4px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); }
.newsletter input { flex: 1; min-width: 0; padding: 0 13px; border: 0; outline: 0; background: transparent; font-size: 11px; }
.newsletter button { padding: 10px 14px; border: 0; border-radius: 8px; color: #fff; background: var(--ink); font-size: 9px; font-weight: 700; }
.newsletter button.success { background: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: #999; font-size: 9px; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom > span { display: flex; align-items: center; gap: 7px; }
.footer-bottom > span i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(46,204,113,.1); }
.risk-note { max-width: 930px; margin: 0; color: #b0b0b4; font-size: 8px; line-height: 1.6; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); transition-delay: var(--reveal-delay,0ms); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,45,45,.08); } 50% { box-shadow: 0 0 0 8px rgba(255,45,45,0); } }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee { to { transform: translateX(calc(-50% - 35px)); } }

@media (max-width: 1260px) {
  .hero { grid-template-columns: 1.05fr 0.95fr; gap: 32px; }
  .hero-dashboard { max-width: 630px; }
  .floating-reward { right: -5px; }
  .laptop-wrap { width: min(100%, 1030px); }
  .laptop-base { width: calc(100% + 90px); margin-left: -45px; }
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 11px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 150px; text-align: center; }
  .hero-copy { max-width: 760px; margin-inline: auto; }
  .hero h1 { max-width: none; letter-spacing: -0.02em; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions,
  .hero-proof { justify-content: center; }
  .hero-visual { width: 100%; max-width: 720px; margin-inline: auto; min-height: 560px; }
  .hero-dashboard { width: 100%; max-width: 680px; transform: none; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .asset-grid { grid-template-columns: repeat(3,1fr); }
  .security-layout { gap: 60px; }
  .faq-layout { gap: 70px; }
  .laptop-screen { height: 610px; }
  .app-main { padding: 22px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 32px, 720px); }
  .section { padding-block: 95px; }
  .desktop-nav,
  .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; top: 72px; left: 16px; right: 16px; display: grid; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: var(--shadow-md); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 13px 14px; border-radius: 10px; color: #555; font-size: 13px; font-weight: 650; }
  .mobile-menu a:hover { background: var(--surface); }
  .mobile-menu .button { margin-top: 6px; color: #fff; }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 130px;
  }
  .hero-copy {
    max-width: 600px;
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-proof {
    justify-content: center;
  }
  .hero-visual {
    width: 100%;
    max-width: 640px;
    min-height: auto;
    transform: none;
    margin-inline: auto;
  }
  .hero-dashboard {
    width: 100%;
    max-width: 600px;
    transform: none;
  }
  .floating-reward { right: -10px; }
  .heading-row { grid-template-columns: 1fr; gap: 0; }
  .asset-grid { grid-template-columns: repeat(2,1fr); }
  .rewards-panel { grid-template-columns: 1fr; }
  .calculator { border-right: 0; border-bottom: 1px solid var(--line); }
  .security-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .security-copy,
  .faq-heading { position: static; }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 55px; }
  .step-connector { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); row-gap: 35px; }
  .stats-grid > div { border-right: 0; }
  .stats-grid > div:last-child { grid-column: span 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-featured { transform: none; }
  .testimonial-grid .testimonial-featured:hover { transform: translateY(-5px); }
  .laptop-wrap {
    width: 100%;
    left: 0;
    margin-left: 0;
    transform: none;
    margin-bottom: 0;
  }
  .laptop-screen {
    height: auto;
    grid-template-columns: 1fr;
    border-width: 4px;
    border-radius: 16px;
  }
  .laptop-base,
  .laptop-shadow {
    display: none !important;
  }
  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }
  .sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0 !important;
  }
  .help-card {
    display: none;
  }
  .app-content-grid {
    grid-template-columns: 1fr;
  }
  .app-assets {
    grid-column: span 1;
  }
  .footer-links { grid-template-columns: repeat(3,1fr); row-gap: 30px; }
}

@media (max-width: 620px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex !important; }
  .shell { width: min(100% - 24px, 540px); }
  .section { padding-block: 76px; }
  .nav { height: 70px; }
  .brand img { width: 140px; height: auto; }
  .hero { padding-top: 112px; padding-bottom: 35px; }
  .hero h1 { margin-top: 22px; font-size: clamp(40px, 10vw, 54px); letter-spacing: -0.02em; line-height: 1.15; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-wrap: wrap; }
  .hero-visual { width: 100%; max-width: 480px; min-height: auto; margin-left: auto; margin-right: auto; transform: none; margin-top: 20px; margin-bottom: 0; overflow: hidden; }
  .hero-dashboard { width: 100%; max-width: 440px; padding: 15px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .floating-card { display: none !important; }
  .app-balance-row { flex-direction: column; align-items: stretch; gap: 15px; }
  .app-assets { overflow-x: auto; }
  .asset-table { min-width: 440px; }
  .app-ctas { justify-content: flex-start; gap: 10px; }
  .app-ctas button { flex: 1; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .security-copy h2,
  .faq-heading h2 { font-size: 39px; letter-spacing: -2.4px; }
  .feature-grid,
  .asset-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 350px; }
  .asset-card { min-height: 220px; }
  .rewards-panel { border-radius: 20px; }
  .calculator,
  .earnings-chart { padding: 25px 20px; }
  .calc-heading { align-items: flex-start; }
  .calc-stats { grid-template-columns: 1fr; }
  .earnings-top { align-items: flex-start; }
  .earnings-top strong { font-size: 26px; }
  .big-chart { height: 230px; }
  .big-chart svg { height: 190px; }
  .security-stack article { grid-template-columns: 40px 1fr; gap: 13px; }
  .security-stack article .feature-icon { display: none; }
  .security-stack::before { left: 20px; }
  .security-step { width: 40px; height: 40px; }
  .audit-badges { flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid > div:last-child { grid-column: auto; }
  .final-cta { width: calc(100% - 24px); min-height: 540px; margin-top: 70px; margin-bottom: 70px; border-radius: 24px; }
  .cta-content h2 { font-size: 46px; letter-spacing: -3px; }
  .cta-content > div { flex-direction: column; }
  .cta-content .button { width: 100%; }
  .cta-coins { opacity: .55; }
  .footer { padding-top: 55px; }
  .footer-top { gap: 50px; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
  .newsletter { align-items: stretch; flex-direction: column; gap: 20px; }
  .newsletter form { min-width: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* Legal Pages Styling */
.legal-layout {
  padding-top: 160px;
  padding-bottom: 100px;
  max-width: 800px;
  margin-inline: auto;
}
.legal-layout h1 {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -1.5px;
  margin-bottom: 15px;
  line-height: 1.15;
}
.legal-layout h2 {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-top: 40px;
  margin-bottom: 15px;
}
.legal-layout p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.legal-layout ul {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-left: 20px;
}
.legal-layout li {
  margin-bottom: 10px;
}
.legal-layout .last-updated {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.7;
  margin-bottom: 40px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 30px;
  transition: opacity 0.2s ease;
}
.back-link:hover {
  opacity: 0.8;
}

/* Auth Pages Styling */
.auth-layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 232, 232, 0.9);
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08), 0 0 50px rgba(255, 45, 45, 0.03);
  backdrop-filter: blur(18px);
}
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 35px;
}
.auth-logo img {
  width: 32px;
  height: 32px;
}
.auth-card h1 {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  text-align: center;
}
.auth-subtitle {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 45, 45, 0.08);
}
.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  font-size: 13px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #555;
}
.form-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}
.auth-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}
.auth-link:hover {
  text-decoration: underline;
}
.auth-button {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.1s;
}
.auth-button:hover {
  opacity: 0.9;
}
.auth-button:active {
  transform: scale(0.98);
}
.auth-footer {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
