    :root {
      --bg: #f6f8f3;
      --bg-2: #eef4e9;
      --text: #101510;
      --muted: #687069;
      --muted-2: #879087;
      --green: #b9ff39;
      --green-2: #86ef21;
      --green-3: #dfff8b;
      --card: rgba(255, 255, 255, 0.72);
      --card-solid: #ffffff;
      --border: rgba(23, 37, 20, 0.08);
      --shadow: 0 28px 80px rgba(26, 46, 21, 0.12);
      --shadow-soft: 0 18px 50px rgba(26, 46, 21, 0.08);
      --radius: 28px;
      --ease: cubic-bezier(.2,.8,.2,1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      min-height: 100vh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 72% 31%, rgba(185,255,57,.50), transparent 17%),
        radial-gradient(circle at 80% 62%, rgba(217,255,129,.42), transparent 18%),
        radial-gradient(circle at 9% 88%, rgba(185,255,57,.20), transparent 16%),
        linear-gradient(180deg, #fbfcf6 0%, #f5f8ef 48%, #eef5e8 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(15, 20, 15, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 20, 15, .025) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.25), transparent 70%);
      z-index: 0;
    }

    .page {
      position: relative;
      z-index: 2;
      min-height: 100vh;
    }

    .grain {
      position: fixed;
      inset: -40px;
      pointer-events: none;
      opacity: .18;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='.5'/%3E%3C/svg%3E");
      z-index: 1;
      mix-blend-mode: multiply;
    }

    .orb {
      position: fixed;
      border-radius: 999px;
      pointer-events: none;
      filter: blur(18px);
      opacity: .55;
      z-index: 0;
      animation: floatOrb 8s var(--ease) infinite alternate;
    }

    .orb.one {
      width: 320px;
      height: 320px;
      right: 10%;
      top: 18%;
      background: radial-gradient(circle, rgba(185,255,57,.85), rgba(185,255,57,0) 68%);
    }

    .orb.two {
      width: 230px;
      height: 230px;
      right: 2%;
      top: 55%;
      background: radial-gradient(circle, rgba(229,255,142,.70), rgba(229,255,142,0) 68%);
      animation-delay: -3s;
    }

    @keyframes floatOrb {
      from { transform: translate3d(-14px, -16px, 0) scale(1); }
      to { transform: translate3d(22px, 20px, 0) scale(1.08); }
    }

    header {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1180px, calc(100vw - 48px));
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 14px 12px 18px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.64);
      backdrop-filter: blur(22px);
      box-shadow: 0 20px 60px rgba(31, 48, 25, .08);
      transition: .45s var(--ease);
    }

    header.scrolled {
      top: 12px;
      background: rgba(255,255,255,.82);
      box-shadow: 0 16px 50px rgba(31, 48, 25, .12);
      transform: translateX(-50%) scale(.985);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 250px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .logo {
      width: 34px;
      height: 34px;
      border-radius: 13px;
      background:
        linear-gradient(135deg, rgba(185,255,57,1), rgba(108,232,26,1));
      display: grid;
      place-items: center;
      color: #17210f;
      font-weight: 950;
      box-shadow: inset 0 -8px 16px rgba(17, 60, 7, .12), 0 12px 26px rgba(143, 239, 33, .35);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      color: #4d554d;
      font-weight: 650;
    }

    nav a {
      color: inherit;
      text-decoration: none;
      transition: .25s ease;
    }

    nav a:hover {
      color: #111811;
      transform: translateY(-1px);
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(23,37,20,.14);
      border-radius: 16px;
      background: rgba(255,255,255,.92);
      cursor: pointer;
      transition: .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
    }

    .nav-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #17210f;
      margin: 3px 0;
      transition: transform .28s var(--ease), opacity .28s var(--ease);
    }

    header.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    header.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    header.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border: 0;
      cursor: pointer;
      font: inherit;
      font-weight: 800;
      border-radius: 999px;
      transition: .28s var(--ease);
      white-space: nowrap;
    }

    .btn.ghost {
      padding: 12px 18px;
      color: #162016;
      background: rgba(255,255,255,.74);
      border: 1px solid rgba(20,30,20,.08);
    }

    .btn.primary {
      position: relative;
      padding: 13px 20px;
      color: #10170f;
      background: linear-gradient(135deg, var(--green), var(--green-2));
      box-shadow: 0 16px 36px rgba(136, 236, 25, .30);
      overflow: hidden;
    }

    .btn.primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
      transform: translateX(-120%);
      animation: shine 3.2s ease infinite;
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.02);
    }

    @keyframes shine {
      0%, 55% { transform: translateX(-120%); }
      75%, 100% { transform: translateX(120%); }
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: minmax(420px, 0.94fr) minmax(540px, 1.06fr);
      gap: 44px;
      align-items: center;
      width: min(1220px, calc(100vw - 48px));
      margin: 0 auto;
      padding: 150px 0 70px;
    }

    .hero-copy {
      position: relative;
      z-index: 5;
      padding-top: 20px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(20,30,20,.08);
      color: #536052;
      font-size: 14px;
      font-weight: 750;
      box-shadow: var(--shadow-soft);
      opacity: 0;
      transform: translateY(18px);
      animation: enter .8s var(--ease) .15s forwards;
    }

    .badge-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green-2);
      box-shadow: 0 0 0 8px rgba(185,255,57,.22), 0 0 24px rgba(117,220,20,.72);
    }

    h1 {
      max-width: 700px;
      margin-top: 26px;
      font-size: clamp(54px, 6.4vw, 104px);
      line-height: .93;
      letter-spacing: -0.085em;
      font-weight: 950;
      opacity: 0;
      transform: translateY(28px);
      animation: enter .9s var(--ease) .28s forwards;
    }

    .green-text {
      color: #76d91a;
      text-shadow: 0 12px 42px rgba(145, 239, 34, .22);
    }

    .hero-copy p {
      max-width: 510px;
      margin-top: 28px;
      color: #697168;
      font-size: 19px;
      line-height: 1.55;
      font-weight: 520;
      opacity: 0;
      transform: translateY(24px);
      animation: enter .8s var(--ease) .44s forwards;
    }

    .hero-cta {
      margin-top: 34px;
      display: flex;
      align-items: center;
      gap: 16px;
      opacity: 0;
      transform: translateY(22px);
      animation: enter .8s var(--ease) .58s forwards;
    }

    .hero-cta .primary {
      padding: 18px 26px;
      font-size: 16px;
    }

    .mini-proof {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #6d776d;
      font-size: 14px;
      font-weight: 750;
    }

    .avatars {
      display: flex;
      margin-right: 2px;
    }

    .avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -9px;
      background: linear-gradient(135deg, #111, #999);
      box-shadow: 0 6px 20px rgba(0,0,0,.08);
    }

    .avatar:first-child { margin-left: 0; background: linear-gradient(135deg, #191f17, #a8ff3d); }
    .avatar:nth-child(2) { background: linear-gradient(135deg, #dce7d4, #6de01f); }
    .avatar:nth-child(3) { background: linear-gradient(135deg, #fff, #202920); }

    @keyframes enter {
      to { opacity: 1; transform: translateY(0); }
    }

    .visual {
      position: relative;
      min-height: 650px;
      z-index: 4;
      perspective: 1400px;
    }

    .wire-globe {
      position: absolute;
      right: 7%;
      top: 7%;
      width: 430px;
      height: 430px;
      border-radius: 44% 56% 48% 52%;
      background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.96), rgba(255,255,255,.28) 34%, transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,.62), rgba(226,255,165,.26));
      border: 1px solid rgba(255,255,255,.65);
      box-shadow: inset 0 0 60px rgba(255,255,255,.72), 0 44px 100px rgba(147,205,92,.18);
      transform: rotate(-17deg);
      animation: morph 7s var(--ease) infinite alternate, floatCard 5.8s var(--ease) infinite alternate;
      overflow: hidden;
    }

    .wire-globe::before,
    .wire-globe::after {
      content: "";
      position: absolute;
      inset: 34px;
      border-radius: 45% 55% 50% 50%;
      border: 1px solid rgba(133, 222, 32, .32);
      transform: rotate(26deg);
    }

    .wire-globe::after {
      inset: 82px;
      border-color: rgba(95, 150, 68, .18);
      transform: rotate(-36deg);
    }

    @keyframes morph {
      0% { border-radius: 44% 56% 48% 52%; }
      100% { border-radius: 57% 43% 53% 47%; }
    }

    .gem {
      position: absolute;
      width: 122px;
      height: 122px;
      right: 26px;
      bottom: 84px;
      background: linear-gradient(135deg, rgba(208,255,92,.88), rgba(255,255,255,.34));
      clip-path: polygon(50% 0, 94% 28%, 78% 88%, 22% 88%, 6% 28%);
      filter: drop-shadow(0 28px 40px rgba(143, 239, 33, .25));
      animation: spinSlow 13s linear infinite;
    }

    .coil {
      position: absolute;
      left: 18px;
      bottom: 88px;
      width: 92px;
      height: 92px;
      border-radius: 50%;
      border: 16px solid transparent;
      border-top-color: var(--green-2);
      border-left-color: var(--green-3);
      filter: drop-shadow(0 20px 32px rgba(117,220,20,.25));
      animation: spinSlow 8s linear infinite reverse;
    }

    @keyframes spinSlow {
      to { transform: rotate(360deg); }
    }

    .sparkles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .sparkles span {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--green-2);
      box-shadow: 0 0 22px rgba(130, 230, 26, .9);
      opacity: .55;
      animation: sparkle 3.4s ease-in-out infinite;
    }

    .sparkles span:nth-child(1) { left: 18%; top: 11%; animation-delay: -.6s; }
    .sparkles span:nth-child(2) { left: 82%; top: 18%; animation-delay: -1.4s; }
    .sparkles span:nth-child(3) { left: 65%; top: 74%; animation-delay: -2.1s; }
    .sparkles span:nth-child(4) { left: 30%; top: 68%; animation-delay: -1.1s; }
    .sparkles span:nth-child(5) { left: 90%; top: 54%; animation-delay: -.2s; }

    @keyframes sparkle {
      0%, 100% { transform: scale(.55); opacity: .2; }
      45% { transform: scale(1.55); opacity: .85; }
    }

    .card {
      position: absolute;
      border: 1px solid rgba(255,255,255,.72);
      background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
      backdrop-filter: blur(24px);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,.80), transparent 44%);
      pointer-events: none;
    }

    .portfolio-card {
      width: 380px;
      padding: 24px;
      top: 42px;
      left: 50px;
      animation: floatCard 5s var(--ease) infinite alternate;
    }

    .chart-card {
      width: 430px;
      padding: 24px 24px 18px;
      top: 225px;
      left: 0;
      animation: floatCard 5.8s var(--ease) infinite alternate;
      animation-delay: -1.2s;
    }

    .swap-card {
      width: 310px;
      padding: 22px;
      top: 194px;
      right: 18px;
      animation: floatCard 5.3s var(--ease) infinite alternate;
      animation-delay: -.7s;
    }

    .movers-card {
      width: 580px;
      padding: 23px;
      left: 58px;
      bottom: 18px;
      animation: floatCard 5.4s var(--ease) infinite alternate;
      animation-delay: -2s;
    }

    @keyframes floatCard {
      from { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
      to { transform: translateY(-15px) rotateX(1.2deg) rotateY(-1deg); }
    }

    .card-head {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: #596258;
      font-weight: 800;
      font-size: 14px;
    }

    .dots {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(244,248,240,.9);
      color: #9ca59b;
      letter-spacing: 2px;
      font-weight: 900;
    }

    .portfolio-value {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 120px;
      gap: 20px;
      align-items: end;
      margin-top: 18px;
    }

    .money {
      font-size: 34px;
      line-height: 1;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .gain {
      margin-top: 8px;
      color: #4fbd16;
      font-weight: 850;
      font-size: 14px;
    }

    .sparkline {
      width: 120px;
      height: 66px;
    }

    .tabs {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 7px;
      margin: 18px 0 16px;
    }

    .tab {
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(245,247,242,.75);
      color: #899187;
      font-size: 12px;
      font-weight: 850;
    }

    .tab.active {
      background: #10170f;
      color: var(--green);
    }

    .cap-row {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: end;
      margin-top: 4px;
    }

    .cap-label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .cap {
      font-size: 30px;
      font-weight: 950;
      letter-spacing: -0.05em;
    }

    .big-chart {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 158px;
      margin-top: 14px;
    }

    .swap-row {
      position: relative;
      z-index: 2;
      padding: 15px;
      border: 1px solid rgba(20,30,20,.08);
      border-radius: 20px;
      background: rgba(255,255,255,.55);
    }

    .swap-row + .swap-row { margin-top: 12px; }

    .muted-small {
      color: #7a8379;
      font-size: 12px;
      font-weight: 750;
    }

    .coin-line {
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .coin-left {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
    }

    .coin-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 950;
      box-shadow: inset 0 -8px 12px rgba(0,0,0,.12), 0 10px 18px rgba(0,0,0,.10);
      flex: 0 0 auto;
    }

    .btc { background: linear-gradient(135deg, #f6a416, #ff7b1a); }
    .eth { background: linear-gradient(135deg, #7087ff, #7f48e8); }
    .sol { background: linear-gradient(135deg, #151b16, #7aff44); }

    .coin-name {
      font-size: 13px;
      font-weight: 900;
      color: #172017;
    }

    .coin-ticker {
      font-size: 11px;
      color: #8a9389;
      font-weight: 800;
    }

    .coin-amount {
      text-align: right;
      font-weight: 900;
      color: #151c14;
    }

    .swap-button {
      position: relative;
      z-index: 3;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: -4px auto;
      background: #10170f;
      color: var(--green);
      border: 5px solid rgba(255,255,255,.8);
      box-shadow: 0 12px 24px rgba(20,30,20,.14);
      font-weight: 950;
    }

    .review {
      position: relative;
      z-index: 2;
      margin-top: 16px;
      width: 100%;
      padding: 15px;
      border: 0;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--green), var(--green-2));
      font-weight: 950;
      color: #10170f;
      cursor: pointer;
      box-shadow: 0 14px 30px rgba(136, 236, 25, .25);
    }

    .mover-list {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .mover {
      padding: 13px;
      border-radius: 20px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(21,31,18,.06);
      transition: .3s var(--ease);
    }

    .mover:hover {
      transform: translateY(-7px);
      box-shadow: 0 22px 38px rgba(37, 61, 24, .10);
    }

    .mover-top {
      display: flex;
      gap: 9px;
      align-items: center;
      margin-bottom: 12px;
    }

    .tiny-icon {
      width: 30px;
      height: 30px;
      font-size: 12px;
    }

    .mover-price {
      font-size: 15px;
      font-weight: 950;
      letter-spacing: -0.03em;
    }

    .mover-change {
      color: #4fbd16;
      font-size: 12px;
      font-weight: 950;
    }

    .feature-row {
      width: min(1220px, calc(100vw - 48px));
      margin: -36px auto 110px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      position: relative;
      z-index: 5;
    }

    .feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 26px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.68);
      background: rgba(255,255,255,.58);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow-soft);
      transition: .5s var(--ease);
    }

    .feature:hover {
      transform: translateY(-10px) rotateX(4deg);
      box-shadow: 0 32px 70px rgba(38, 60, 31, .13);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      background: rgba(185,255,57,.32);
      color: #4bad11;
      font-size: 24px;
      flex: 0 0 auto;
    }

    .feature h3 {
      font-size: 17px;
      margin-bottom: 6px;
      letter-spacing: -0.03em;
    }

    .feature p {
      color: var(--muted);
      line-height: 1.45;
      font-size: 14px;
      font-weight: 550;
    }

    .scroll-section {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: center;
      width: min(1220px, calc(100vw - 48px));
      margin: 0 auto;
      padding: 80px 0;
    }

    .mega-card {
      position: relative;
      padding: clamp(36px, 7vw, 86px);
      border-radius: 50px;
      background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,.42));
      border: 1px solid rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .mega-card::before {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      right: -180px;
      top: -210px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(185,255,57,.58), transparent 63%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      50% { transform: scale(1.14); opacity: .6; }
    }

    .mega-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 46px;
      align-items: center;
    }

    .section-kicker {
      color: #69c51a;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .16em;
      margin-bottom: 16px;
    }

    .mega-card h2 {
      font-size: clamp(42px, 5vw, 78px);
      line-height: .95;
      letter-spacing: -0.075em;
      margin-bottom: 22px;
    }

    .mega-card p {
      color: #687168;
      font-size: 18px;
      line-height: 1.6;
      max-width: 520px;
      font-weight: 540;
    }

    .terminal {
      border-radius: 32px;
      padding: 24px;
      background: #10170f;
      color: #eaffd3;
      box-shadow: 0 32px 80px rgba(20, 28, 15, .20);
      overflow: hidden;
      transform: rotate(1.2deg);
    }

    .terminal-top {
      display: flex;
      gap: 8px;
      margin-bottom: 20px;
    }

    .terminal-top i {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: #b9ff39;
      opacity: .9;
    }

    .terminal-line {
      display: flex;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      font-weight: 750;
    }

    .terminal-line span:last-child {
      color: var(--green);
    }

    .reveal {
      opacity: 0;
      transform: translateY(80px) scale(.96);
      transition: 1s var(--ease);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .parallax {
      will-change: transform;
    }

    .footer-space {
      height: 220px;
      display: grid;
      place-items: center;
      color: #748071;
      font-weight: 750;
    }

    @media (max-width: 1080px) {
      nav { display: none; }
      .nav-toggle { display: inline-flex; }
      .brand { min-width: auto; }
      header.nav-open nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 14px);
        right: 18px;
        width: min(280px, calc(100vw - 32px));
        padding: 16px 18px;
        gap: 16px;
        background: rgba(255,255,255,.94);
        border: 1px solid rgba(23,37,20,.08);
        border-radius: 24px;
        backdrop-filter: blur(22px);
        box-shadow: 0 28px 62px rgba(31, 48, 25, .14);
        z-index: 60;
      }
      .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
      }
      .visual { min-height: 690px; }
      .feature-row { grid-template-columns: 1fr; margin-top: 0; }
      .mega-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      header {
        width: calc(100vw - 24px);
        top: 12px;
      }
      .actions .ghost { display: none; }
      .brand span { font-size: 14px; }
      .hero,
      .feature-row,
      .scroll-section {
        width: calc(100vw - 24px);
      }
      .hero { padding-top: 118px; }
      .hero-cta { flex-direction: column; align-items: flex-start; }
      .visual {
        min-height: 760px;
        transform: scale(.82);
        transform-origin: top left;
        width: 122%;
      }
      .portfolio-card { left: 8px; }
      .chart-card { left: 0; width: 390px; }
      .swap-card { right: 0; width: 285px; }
      .movers-card { width: 430px; left: 0; }
      .mover-list { grid-template-columns: 1fr; }
      .feature-row { margin-bottom: 40px; }
    }
