/* Viridi — black trading landing page, green accent. */

:root {
  --bg: #070707;
  --bg-2: #111111;
  --card: #0f0f0f;
  --card-2: #0b0b0b;
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.14);
  --ink: #ffffff;
  --prose: #d6d6d6;
  --muted: #9c9c9c;
  --blue: #00d65c;      /* accent fill (green) */
  --blue-hi: #00d65c;   /* accent text / lines */
  --blue-deep: #070707;
  --up: #cfcfcf;
  --dn: #ff5c6c;
  --display: "Inter Tight", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
.wrap { width: min(1200px, 100% - 32px); margin-inline: auto; }

h1, h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
}

/* ------------------------------------------------------------ hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(90% 60% at 50% 100%, rgba(0, 0, 0, 0.21), rgba(0, 0, 0, 0.098) 45%, transparent 75%),
    linear-gradient(#060606 0%, #070707 40%, #121212 100%);
}
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 44px 0 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; }
.brand-mark svg { width: 100%; height: 100%; fill: var(--blue); }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 17px; font-weight: 500; }
.nav-links svg { width: 26px; height: 26px; fill: #ffffff; display: block; }
.nav-links a { opacity: .92; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; color: var(--blue-hi); }
.nav-links a:hover svg { fill: var(--blue-hi); }

.hero-copy { position: relative; z-index: 3; text-align: center; padding-top: 130px; }
.hero h1 { font-size: clamp(44px, 6.4vw, 92px); }
.hero-copy p {
  max-width: 830px;
  margin: 34px auto 0;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.45;
  font-weight: 600;
  color: var(--prose);
}
.stores { display: flex; justify-content: center; gap: 20px; margin-top: 44px; flex-wrap: wrap; }
.store {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
  padding: 9px 22px 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.220);
  background: #0a0a0a;
  transition: transform .2s, box-shadow .2s;
}
.store.has-badge { min-width: 0; padding: 0; border: 0; background: none; }
.store.has-badge img { display: block; height: 56px; width: auto; }
.store:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.133); }
.store svg { width: 34px; height: 34px; flex: none; color: #ffffff; }
.store span { display: flex; flex-direction: column; text-align: left; font-size: 27px; font-weight: 600; line-height: 1; letter-spacing: -.02em; }
.store small { font-size: 13px; font-weight: 500; letter-spacing: .02em; margin-bottom: 3px; }
.store em {
  position: absolute;
  top: -12px;
  right: -12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--blue);
  color: #161616;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  border: 2px solid #161616;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.231);
}

/* floating pills */
.pills { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 26px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.077);
  border: 1px solid rgba(255, 255, 255, 0.080);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.126), inset 0 1px 0 rgba(0, 0, 0, 0.035);
  backdrop-filter: blur(6px);
  font-family: var(--display);
  font-size: 25px;
  animation: float 7s ease-in-out infinite;
  opacity: .85;
}
.pill b { color: var(--blue-hi); font-weight: 700; text-shadow: 0 0 18px rgba(0, 0, 0, 0.154); }
.coin {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  background: var(--c);
  color: var(--t, #ffffff);
  font: 800 22px/1 var(--display);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.042);
  position: relative;
  overflow: hidden;
  letter-spacing: -.02em;
}
.coin.long { font-size: 13px; }
.coin.xlong { font-size: 11px; }
.coin.mark { background: none; box-shadow: none; }
.coin svg, .coin img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.coin[data-t="AAPL"] { color: #111; }
.p1 { left: 10.5%; top: 21%; transform: rotate(-4deg); }
.p2 { left: 13%;   top: 34%; transform: rotate(3deg);  animation-delay: -2s; }
.p3 { left: 9.6%;  top: 46%; transform: rotate(-3deg); animation-delay: -4s; }
.p4 { left: 16%;   top: 60%; transform: rotate(4deg);  animation-delay: -1s; }
.p5 { right: 11%;  top: 23%; transform: rotate(4deg);  animation-delay: -3s; }
.p6 { right: 13%;  top: 34%; transform: rotate(-4deg); animation-delay: -5s; }
.p7 { right: 10.5%; top: 48%; transform: rotate(4deg); animation-delay: -1.5s; }
.p8 { right: 17%;  top: 59%; transform: rotate(-4deg); animation-delay: -3.5s; }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* phones */
.phones {
  position: relative;
  z-index: 3;
  height: 360px;
  margin-top: 90px;
  display: flex;
  justify-content: center;
}
.phone {
  position: absolute;
  width: 330px;
  height: 680px;
  padding: 11px;
  border-radius: 58px;
  /* titanium frame: brushed edge, dark inner bezel, soft drop shadow */
  background:
    linear-gradient(145deg, #545454 0%, #0a0a0a 16%, #0b0b0b 48%, #0d0d0d 82%, #626262 100%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.196),
    inset 0 0 0 3px #121212,
    inset 0 0 0 4px rgba(0, 0, 0, 0.042),
    0 0 0 1px #161616,
    0 50px 100px rgba(0, 0, 0, 0.21),
    0 18px 40px rgba(0, 0, 0, 0.14);
}
/* side buttons: action + volume on the left, power on the right */
.phone::before, .phone::after {
  content: "";
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2e2e2e, #797979 60%, #1a1a1a);
}
.phone::before { left: -3px; top: 118px; height: 30px; box-shadow: 0 56px 0 0 #454545, 0 56px 0 0 #454545, 0 120px 0 0 #454545; }
.phone::after { right: -3px; top: 180px; height: 92px; }
.screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 46px;
  background: #121212;
  padding: 18px 20px;
}
.screen::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  z-index: 6;
  width: 128px;
  height: 5px;
  margin-left: -64px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.160);
  pointer-events: none;
}
.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(0, 0, 0, 0.063) 0%, rgba(0, 0, 0, 0.021) 28%, rgba(0, 0, 0, 0) 42%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.028);
  pointer-events: none;
}
.status { display: flex; align-items: center; justify-content: space-between; height: 34px; padding: 0 14px; font-size: 14px; font-weight: 600; }
.island { width: 116px; height: 33px; border-radius: 20px; background: radial-gradient(circle at 84% 50%, #1c2230 0 4.5px, #101010 5.5px, #161616 7px); box-shadow: inset 0 0 0 1px #0f0f0f; }
.sig { width: 66px; height: 13px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 14'%3E%3Cg fill='black'%3E%3Crect x='0' y='9.5' width='3' height='3.5' rx='.9'/%3E%3Crect x='4.6' y='7.2' width='3' height='5.8' rx='.9'/%3E%3Crect x='9.2' y='4.8' width='3' height='8.2' rx='.9'/%3E%3Crect x='13.8' y='2.3' width='3' height='10.7' rx='.9'/%3E%3Cpath d='M24.3 5.6a9.2 9.2 0 0 1 12.4 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M26.8 8.4a5.6 5.6 0 0 1 7.4 0' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='30.5' cy='11.4' r='1.4'/%3E%3Crect x='45' y='1.8' width='24' height='11.4' rx='3.4' fill='none' stroke='black' stroke-opacity='.45' stroke-width='1.1'/%3E%3Crect x='47' y='3.8' width='17.5' height='7.4' rx='1.8'/%3E%3Cpath d='M70.4 5.6v3.8c.9-.3 1.5-1.1 1.5-1.9s-.6-1.6-1.5-1.9z' fill-opacity='.45'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat; }

.phone-center { top: 0; z-index: 3; }
.phone-left  { top: 70px; transform: translateX(-335px) rotate(-6deg); z-index: 2; }
.phone-right { top: 70px; transform: translateX(335px) rotate(6deg); z-index: 2; }

.bal { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 18px; }
.bal-value { font-family: var(--display); font-size: 29px; font-weight: 700; letter-spacing: -.02em; }
.bal-change { color: var(--blue-hi); font-size: 13px; font-weight: 600; margin-top: 6px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: conic-gradient(from 30deg, #ffffff, #e2e2e2, #121212, #ffffff); box-shadow: 0 0 0 2px #ffffff; }
.chart { width: 100%; height: 190px; margin-top: 24px; display: block; }
.chart path.line { fill: none; stroke: var(--blue-hi); stroke-width: 1.8; stroke-linejoin: round; filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.273)); }
.ranges { display: flex; justify-content: space-between; margin-top: 18px; font-size: 11px; font-weight: 700; color: var(--blue-hi); }
.ranges b { padding: 5px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.050); margin-top: -5px; }

.ph-top { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.back, .dots { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #090909; font-size: 22px; line-height: 1; }
.dots { font-size: 9px; letter-spacing: 1px; }
.clock-ic { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #aab; opacity: .6; }
.thread { font-size: 13px; font-weight: 600; background: #090909; padding: 6px 12px; border-radius: 999px; }
.bp { margin-top: 38px; }
.bp-label { font-size: 26px; font-weight: 700; font-family: var(--display); }
.bp-value { font-size: 26px; font-weight: 700; font-family: var(--display); margin-top: 6px; }
.bp-bar { height: 14px; border-radius: 4px; margin-top: 22px; background: #d8d8d8; overflow: hidden; }
.bp-bar i { display: block; width: 64%; height: 100%; background: linear-gradient(90deg, #e6e6e6, #cdcdcd); }
.bp-legend { display: flex; justify-content: space-between; font-size: 11px; color: var(--prose); margin-top: 8px; }
.ph-text { font-size: 13px; line-height: 1.45; color: var(--prose); margin-top: 18px; }
.minis { display: flex; gap: 10px; margin-top: 16px; }
.mini { flex: 1; padding: 10px; border-radius: 14px; background: #0e0e0e; border: 1px solid var(--line); font-size: 12px; display: flex; flex-direction: column; gap: 3px; }
.spark { width: 100%; height: 40px; margin-top: 6px; }
.spark path { fill: none; stroke-width: 2; }
.dn-l path { stroke: var(--dn); }
.up-l path { stroke: var(--up); }
.up { color: var(--up); }
.dn { color: var(--dn); }

/* ------------------------------------------------------------ monitor */
.monitor { position: relative; overflow: hidden; background: var(--bg); padding-top: 70px; }
.monitor-title { font-size: clamp(40px, 4.2vw, 62px); padding-left: 10%; }
.feeds { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.feed-row { display: flex; gap: 16px; width: max-content; }
.feed-row[data-dir="left"]  { animation: marquee-l 70s linear infinite; }
.feed-row[data-dir="right"] { animation: marquee-r 80s linear infinite; }
.feeds:hover .feed-row { animation-play-state: paused; }
@keyframes marquee-l { to { transform: translateX(-50%); } }
@keyframes marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.post {
  display: flex;
  gap: 16px;
  width: 420px;
  padding: 20px 22px;
  border-radius: 16px;
  background: #0a0a0a;
  border: 1.5px solid #090909;
  transition: border-color .3s, box-shadow .3s;
}
a.post { color: inherit; text-decoration: none; }
a.post:hover { border-color: #343434; }
a.post:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 2px; }
.post.hot { border-color: var(--blue-hi); box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.098), 0 0 30px rgba(0, 0, 0, 0.07); }
.post .pfp { width: 52px; height: 52px; flex: none; border-radius: 50%; overflow: hidden; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.056); }
.post .pfp svg { display: block; width: 100%; height: 100%; }
.post .pfp { position: relative; }
.post .pfp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: #161616; }
.post-h { display: flex; align-items: center; gap: 6px; white-space: nowrap; overflow: hidden; }
.post-h b { font-size: 17px; }
.post-h .ck { width: 15px; height: 15px; flex: none; fill: var(--blue); }
.post-h span { color: var(--muted); font-size: 14px; overflow: hidden; text-overflow: ellipsis; }
.post p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--prose);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.burst {
  position: relative;
  height: 560px;
  margin-top: 30px;
  background: radial-gradient(420px 320px at 50% 190px, rgba(0, 0, 0, 0.084), transparent 70%);
}
/* radar: faint fixed rings plus three that ripple outward from the star */
.radar { position: absolute; left: 50%; top: 190px; width: 0; height: 0; z-index: 1; }
.radar::before {
  content: "";
  position: absolute;
  left: -300px;
  top: -300px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 89px, rgba(0, 0, 0, 0.049) 90px 91px);
  -webkit-mask-image: radial-gradient(circle, #ffffff 35%, transparent 70%);
  mask-image: radial-gradient(circle, #ffffff 35%, transparent 70%);
}
.radar i {
  position: absolute;
  left: -110px;
  top: -110px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.105);
  animation: sonar 4.8s cubic-bezier(.2, .6, .4, 1) infinite;
}
.radar i:nth-child(2) { animation-delay: -1.6s; }
.radar i:nth-child(3) { animation-delay: -3.2s; }
@keyframes sonar {
  from { transform: scale(.35); opacity: .9; }
  to { transform: scale(2.8); opacity: 0; }
}
/* curved links from the star out to each alert; the dashes flow outward */
.links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; pointer-events: none; }
.links .base { fill: none; stroke: rgba(0, 0, 0, 0.077); stroke-width: 1.2; }
.links .flow { fill: none; stroke: #dddddd; stroke-width: 1.8; stroke-linecap: round; stroke-dasharray: 1 13; animation: linkflow 1.2s linear infinite; }
@keyframes linkflow { to { stroke-dashoffset: -14; } }
/* a signal travels from a news card into the star */
.signal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0f0f0;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.35), 0 0 26px 8px rgba(0, 0, 0, 0.175);
  offset-rotate: 0deg;
  pointer-events: none;
}
.star.hit svg { animation: absorb .7s ease-out; }
@keyframes absorb {
  0% { transform: scale(1.18); filter: drop-shadow(0 0 22px #ebebeb) drop-shadow(0 0 70px #ffffff) brightness(1.35); }
}
.star {
  position: absolute;
  left: 50%;
  top: 190px;
  z-index: 3;
  width: 170px;
  translate: -50% -50%;
  animation: pulse 3.2s ease-in-out infinite;
}
.star svg { width: 100%; display: block; fill: var(--blue); filter: drop-shadow(0 0 14px rgba(0, 214, 92, .55)) drop-shadow(0 0 40px rgba(0, 214, 92, .25)); }
@keyframes pulse {
  0%, 100% { scale: 1; rotate: 0deg; }
  50% { scale: 1.07; rotate: 8deg; }
}
.alerts { position: absolute; inset: 0; z-index: 2; }
.alert {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  background: #0a0a0a;
  border: 1.5px solid #070707;
  font: 600 18px/1 var(--display);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.alert .coin { width: 40px; height: 40px; font-size: 17px; }
.alert .coin.long { font-size: 11px; }
.alert.ping { border-color: var(--blue-hi); background: #0f0f0f; box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.049), 0 0 28px rgba(0, 0, 0, 0.175); }
.a1 { left: 23.5%; top: 30px;  rotate: 2deg; }
.a2 { left: 24.5%; top: 138px; rotate: -2deg; animation-delay: -2s; }
.a3 { right: 22%;  top: 30px;  rotate: -2deg; animation-delay: -3s; }
.a4 { right: 24%;  top: 148px; rotate: 2deg;  animation-delay: -1s; }
.burst-copy {
  position: absolute;
  left: 50%;
  bottom: 60px;
  z-index: 3;
  translate: -50% 0;
  width: min(620px, 100% - 32px);
  text-align: center;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.5;
}

/* ------------------------------------------------------------ speed */
.speed { background: #121212; padding: 70px 0 110px; }
.speed-grid { display: grid; grid-template-columns: 360px 1fr; gap: 80px; align-items: start; }
.phone-chat { position: relative; width: 352px; height: 730px; border-radius: 58px; }
.chat-head { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; }
.chat-head .thread { display: flex; flex-direction: column; align-items: center; gap: 6px; background: none; padding: 0; }
.chat-head .thread::after { content: ""; }
.thumb { width: 38px; height: 38px; border-radius: 8px; background: linear-gradient(160deg, #0b0b0b, #ffffff 60%, #ffb86b); display: block; }
.chat { margin-top: 20px; font-size: 14px; line-height: 1.45; }
.msg.me { margin-left: 50px; padding: 12px 14px; border-radius: 16px; background: #080808; }
.thought { color: var(--muted); font-size: 12px; margin: 18px 0 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.msg.ai { color: #f1f1f1; }
.cards { display: flex; gap: 10px; margin-top: 16px; margin-right: -30px; }
.ccard { flex: none; width: 220px; display: grid; grid-template-columns: 1fr auto; gap: 2px; padding: 12px; border-radius: 16px; background: #0e0e0e; border: 1px solid var(--line); font-size: 12px; }
.ccard small { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }
.ccard .r { text-align: right; }
.ccard .r small.dn { color: var(--dn); }
.ccard .r small.up { color: var(--up); }
.ccard .spark { grid-column: 1 / -1; height: 60px; }
.chat-foot { position: absolute; left: 14px; right: 14px; bottom: 16px; }
.chips { display: flex; justify-content: center; gap: 8px; font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.chips span { padding: 7px 12px; border-radius: 999px; background: #0a0a0a; border: 1px solid var(--line); }
.ask { display: flex; align-items: center; gap: 12px; padding: 10px 10px 10px 16px; border-radius: 999px; background: #0a0a0a; border: 1px solid var(--line-hi); color: var(--muted); font-size: 14px; }
.ask .ph { flex: 1; }
.mic { width: 30px; height: 30px; border-radius: 50%; background: #ffffff; }

.speed-side h2 { font-size: clamp(40px, 4.4vw, 64px); }
.bubbles { position: relative; height: 620px; margin-top: 30px; }
.bubble {
  position: absolute;
  max-width: 360px;
  padding: 20px 26px;
  border-radius: 20px;
  background: #090909;
  border: 1.5px solid #0a0a0a;
  font: 600 22px/1.3 var(--display);
  color: #e9e9e9;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.098);
  transition: background .5s, border-color .5s, box-shadow .5s, color .5s;
}
.bubble::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: inherit;
  border-right: 1.5px solid;
  border-bottom: 1.5px solid;
  border-color: inherit;
  rotate: 45deg;
}
.bubble.tail-r::after { left: auto; right: 34px; }
.bubble.on {
  background: #090909;
  border-color: var(--blue-hi);
  color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.119);
}
.b1 { left: 4%;  top: 20px;  rotate: -1.5deg; }
.b2 { right: 0;  top: 130px; rotate: 1.5deg; }
.b3 { left: 0;   top: 260px; rotate: .5deg; width: 360px; }
.b4 { right: 2%; top: 380px; rotate: -1.5deg; }
.b5 { left: 9%;  top: 520px; rotate: -.5deg; }

/* ------------------------------------------------------------ sandbox */
.sandbox { background: var(--bg); padding: 80px 0 60px; text-align: center; }
.sandbox h2 { font-size: clamp(38px, 4.4vw, 64px); max-width: 1000px; }
.hub {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 90px;
}
.wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.wires path { fill: none; stroke: #1f1f1f; stroke-width: 1.3; }
.wires path.flow { stroke: var(--blue-hi); stroke-dasharray: 6 200; animation: flow 3.5s linear infinite; opacity: .9; }
@keyframes flow { to { stroke-dashoffset: -206; } }
.hub-col { position: relative; display: flex; flex-direction: column; gap: 26px; }
.hub-col.left { align-items: flex-end; }
.hub-col.left .node:nth-child(2) { margin-right: 44px; }
.hub-col.right { align-items: flex-start; }
.hub-col.right .node:nth-child(2) { margin-left: 44px; }
.node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 16px;
  border-radius: 14px;
  background: #0a0a0a;
  border: 1px solid #060606;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .25s, background .25s;
}
.node:hover { border-color: var(--blue-hi); background: #0f0f0f; }
.ni { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #0a0a0a; border: 1px solid #0b0b0b; }
.ni svg { width: 20px; height: 20px; fill: none; stroke: #e5e5e5; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.hub-core { position: relative; z-index: 1; justify-self: center; }
.core-tile { display: grid; place-items: center; width: 220px; height: 220px; }
.core-tile svg { width: 190px; fill: var(--blue); filter: drop-shadow(0 0 30px rgba(0, 214, 92, 0.25)); }

.powered { margin-top: 110px; }
.powered p { color: var(--muted); font-size: 20px; }
.eco { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1000px; margin: 40px auto 0; }
.eco-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 18px;
  border-radius: 16px;
  background: #0a0a0a;
  border: 1px solid #080808;
  text-align: left;
  transition: border-color .2s, background .2s, transform .2s;
}
.eco-item b { font: 700 24px/1.1 var(--display); letter-spacing: -.02em; color: #e8e8e8; }
.eco-item span { font-size: 13px; color: var(--muted); }
.eco-item:hover { border-color: var(--blue-hi); background: #0f0f0f; transform: translateY(-2px); }
.eco-item:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 3px; }
.eco-note { display: block; margin-top: 22px; font-size: 12px; color: #4a4a4a; }

/* ------------------------------------------------------------ footer */
.foot { margin-top: 90px; border-top: 1px solid #1c1c1c; background: linear-gradient(#101010, #171717); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.foot-logo { display: inline-flex; align-items: center; gap: 12px; font: 800 26px var(--display); letter-spacing: -.02em; color: #ffffff; }
.foot-logo svg { width: 34px; height: 34px; fill: var(--blue); }
.foot-brand p { margin-top: 16px; max-width: 320px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid #1c1c1c; background: #0a0a0a; transition: border-color .2s, background .2s; }
.foot-social a:hover { border-color: var(--blue-hi); background: #0c0c0c; }
.foot-social svg { width: 18px; height: 18px; fill: #dfdfdf; }
.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col h4 { margin-bottom: 4px; font: 600 12px var(--body); letter-spacing: .12em; text-transform: uppercase; color: #4b4b4b; }
.foot-col a { width: fit-content; font-size: 14.5px; color: #b4b4b4; transition: color .2s; }
.foot-col a:hover { color: #ffffff; }
.foot a:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 3px; border-radius: 4px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding: 24px 0 36px; border-top: 1px solid #0b0b0b; font-size: 12.5px; color: #4b4b4b; }
.foot-bottom span { white-space: nowrap; }
.foot-bottom p { max-width: 720px; line-height: 1.6; text-align: right; }

/* ------------------------------------------------------------ waitlist form */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(460px, 100%);
  margin: 26px auto 0;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.105);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.098);
}
.wl:focus-within { border-color: var(--blue-hi); box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.077); }
.wl input[type=email] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 12px;
  border: 0;
  outline: 0;
  background: none;
  color: #ffffff;
  font: 500 15px var(--body);
}
.wl input::placeholder { color: #595959; }
.wl button {
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #161616;
  font: 700 14.5px var(--body);
  cursor: pointer;
  white-space: nowrap;
  transition: filter .15s;
}
.wl button:hover { filter: brightness(1.12); }
.wl button:disabled { opacity: .6; cursor: progress; }
.wl button:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 2px; }
.wl-msg, .hero-copy .wl-msg { flex-basis: 100%; max-width: none; margin: 0; font-weight: 500; padding: 0 8px; font-size: 13px; line-height: 1.4; text-align: left; }
.wl-msg:empty { display: none; }
.wl-msg.ok { color: #7fe0a8; padding-bottom: 6px; }
.wl-msg.err { color: #ff8a95; padding-bottom: 6px; }
.wl-msg a { color: inherit; text-decoration: underline; }
.wl.done input, .wl.done button { display: none; }
.wl.done .wl-msg { font-size: 15px; padding: 10px 8px; text-align: center; }
.wl.flash { animation: wl-flash 1s ease-out; }
@keyframes wl-flash { 0%, 40% { box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.175); } }
.hero-copy .wl-fine { margin-top: 10px; font-size: 12.5px; font-weight: 500; color: #757575; }
.hero .wl-fine a { color: #dcdcdc; text-decoration: underline; }

/* live price pills */
.pv { display: flex; flex-direction: column; line-height: 1.05; }
.pill b.up { color: #00d65c; text-shadow: none; }
.pill b.dn { color: #ff5c6c; text-shadow: 0 0 18px rgba(255, 77, 94, .35); }
.pv small { font: 600 12px/1.2 var(--body); color: #838383; margin-top: 3px; }
.pv small.up { color: #00d65c; }
.pv small.dn { color: #ff5c6c; }
.pv small:empty { display: none; }

/* ------------------------------------------------------------ section heads */
.sec-lead { margin-top: 14px; font-size: 18px; line-height: 1.5; color: var(--prose); max-width: 640px; }
.how h2, .pricing h2, .cta h2 { font-size: clamp(38px, 4.2vw, 60px); text-wrap: balance; }

/* ------------------------------------------------------------ how it works */
.how { background: var(--bg); padding: 110px 0 40px; }
.how .wrap > h2, .how .sec-lead { text-align: center; margin-inline: auto; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 56px; }
.step { position: relative; padding: 18px 18px 26px; border-radius: 22px; background: #0a0a0a; border: 1px solid #171717; }
.step-vis {
  display: grid;
  place-items: center;
  height: 210px;
  border-radius: 16px;
  background: radial-gradient(80% 90% at 50% 100%, rgba(0, 0, 0, 0.133), transparent 70%), #131313;
  border: 1px solid #0b0b0b;
  overflow: hidden;
}
.step-n {
  position: absolute;
  top: 30px;
  left: 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0c0c0c;
  border: 1px solid #1a1a1a;
  color: var(--blue-hi);
  font: 700 13px var(--display);
}
.step h3 { margin-top: 22px; font: 700 24px/1.1 var(--display); letter-spacing: -.02em; }
.step p { margin-top: 8px; font-size: 15px; line-height: 1.55; color: #a4a4a4; }
.v-wallet, .v-chat, .v-confirm { width: min(260px, 86%); padding: 16px; border-radius: 16px; background: #0f0f0f; border: 1px solid #060606; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14); font-size: 12px; }
.v-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.v-chip { color: #7fe0a8; font-weight: 700; }
.v-mono { font-family: ui-monospace, Menlo, monospace; color: var(--muted); }
.v-wallet small { display: block; margin-top: 14px; color: var(--muted); }
.v-wallet b { display: block; margin: 2px 0 12px; font: 700 28px var(--display); letter-spacing: -.02em; }
.v-tag { padding: 4px 8px; border-radius: 999px; background: #0c0c0c; border: 1px solid #060606; color: #dddddd; font-weight: 600; }
.v-chat { display: grid; gap: 10px; line-height: 1.45; }
.v-me { margin-left: 30px; padding: 10px 12px; border-radius: 14px 14px 4px 14px; background: #080808; color: #e8e8e8; }
.v-ai { position: relative; padding-left: 22px; color: #cecece; }
.v-ai i { position: absolute; left: 0; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #f0f0f0, #ffffff); box-shadow: 0 0 10px #ffffff; }
.v-confirm b { font-size: 14px; }
.v-confirm small { display: block; margin: 6px 0 14px; color: var(--muted); }
.v-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.v-btns span { padding: 9px; border-radius: 9px; background: #090909; text-align: center; font-weight: 700; color: #cecece; }
.v-btns .ok { background: var(--blue); color: #161616; box-shadow: 0 0 20px rgba(0, 0, 0, 0.154); }

/* ------------------------------------------------------------ pricing */
.pricing { background: var(--bg); padding: 80px 0 40px; text-align: center; }
.pricing .sec-lead { margin-inline: auto; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 860px; margin: 50px auto 0; text-align: left; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px; border-radius: 22px; background: #0a0a0a; border: 1px solid #171717; }
.plan.pro { background: linear-gradient(180deg, #0c0c0c, #111111 70%); border-color: #252525; box-shadow: 0 0 60px rgba(0, 0, 0, 0.056); }
.plan h3 { font: 700 22px var(--display); }
.badge { position: absolute; top: 28px; right: 28px; padding: 5px 10px; border-radius: 999px; background: var(--blue); color: #161616; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: 14px; }
.price b { font: 800 52px/1 var(--display); letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: 14px; }
.plan > p { margin-top: 12px; font-size: 15px; color: #a4a4a4; line-height: 1.5; }
.plan ul { list-style: none; display: grid; gap: 12px; margin: 24px 0 30px; padding-top: 22px; border-top: 1px solid #171717; }
.plan li { position: relative; padding-left: 28px; font-size: 14.5px; color: #dfdfdf; }
.plan li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: #0b0b0b; border: 1px solid #252525; }
.plan li::after { content: ""; position: absolute; left: 6px; top: 7px; width: 6px; height: 3.5px; border-left: 2px solid var(--blue-hi); border-bottom: 2px solid var(--blue-hi); rotate: -45deg; }
.plan-btn { margin-top: auto; padding: 14px; border-radius: 12px; background: var(--blue); color: #161616; text-align: center; font-weight: 700; transition: filter .15s; }
.plan-btn:hover { filter: brightness(1.12); }
.plan-btn.ghost { background: transparent; border: 1px solid #0a0a0a; color: #dfdfdf; }
.plan-btn.ghost:hover { border-color: var(--blue-hi); }
.plans-note { margin-top: 20px; font-size: 13px; color: #5e5e5e; }

/* ------------------------------------------------------------ call to join */
.cta { padding: 90px 0 20px; background: var(--bg); }
.cta-in {
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
  border-radius: 28px;
  text-align: center;
  background: radial-gradient(70% 120% at 50% 0%, rgba(0, 0, 0, 0.175), transparent 70%), #0a0a0a;
  border: 1px solid #060606;
}
.cta-in .sec-lead { margin-inline: auto; }
.cta-star svg { width: 60px; fill: var(--blue); filter: drop-shadow(0 0 18px rgba(0, 214, 92, .35)); }

/* ------------------------------------------------------------ film */
.film-btn {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 10px 18px 10px 10px;
  border-radius: 999px; border: 1px solid #121212; background: rgba(255, 255, 255, 0.084); color: #e1e1e1;
  font: 600 14.5px var(--body); cursor: pointer; transition: border-color .2s, background .2s;
}
.film-btn:hover { border-color: var(--blue-hi); background: rgba(255, 255, 255, 0.112); }
.film-btn:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 3px; }
.film-btn .play { position: relative; width: 30px; height: 30px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px rgba(0, 0, 0, 0.231); }
.film-btn .play::after { content: ""; position: absolute; left: 12px; top: 9px; border-left: 10px solid #161616; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.film-modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 16px; background: rgba(255, 255, 255, 0.120); backdrop-filter: blur(8px); }
.film-box { position: relative; width: min(1100px, 100%); }
.film-box video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; background: #161616; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.196); }
.film-close { position: absolute; top: -48px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: 1px solid #0a0a0a; background: #101010; color: #ffffff; font-size: 22px; line-height: 1; cursor: pointer; }
.film-close:hover { border-color: var(--blue-hi); }
.film-full { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--muted); text-decoration: underline; }

/* ------------------------------------------------------------ terms gate */
body.gated { overflow: hidden; }
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.109);
  backdrop-filter: blur(8px);
  animation: gate-in .25s ease-out;
}
.gate.out { animation: gate-out .2s ease-in forwards; }
@keyframes gate-in { from { opacity: 0; } }
@keyframes gate-out { to { opacity: 0; } }
.gate-card {
  width: min(500px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 18px;
  background: #101010;
  border: 1px solid #070707;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.168);
  animation: card-in .3s ease-out;
}
@keyframes card-in { from { transform: translateY(12px); opacity: 0; } }
.gate-top { display: flex; align-items: center; gap: 12px; }
.gate-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: #0c0c0c; border: 1px solid #0c0c0c; }
.gate-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--blue-hi); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gate-meta { font-size: 12px; color: var(--muted); }
.gate h2 { margin-top: 18px; font-size: 26px; letter-spacing: -.02em; }
.gate-lead { margin-top: 8px; font-size: 14.5px; line-height: 1.55; color: var(--prose); }
.gate-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #0e0e0e;
  border: 1px solid #080808;
}
.gate-points li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.55; color: #b5b5b5; }
.gate-points li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-hi); }
.gate-points b { color: #ffffff; font-weight: 600; }
.gate-list { display: grid; gap: 4px; margin-top: 18px; }
.gate-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 4px;
  font-size: 14px;
  line-height: 1.5;
  color: #dbdbdb;
  cursor: pointer;
}
.gate-item input { position: absolute; opacity: 0; pointer-events: none; }
.gate-item .box {
  flex: none;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 5px;
  border: 1.5px solid #232323;
  background: #101010;
  transition: background .15s, border-color .15s;
}
.gate-item .box::after { content: ""; width: 8px; height: 4.5px; border-left: 2px solid #161616; border-bottom: 2px solid #161616; rotate: -45deg; translate: 0 -1px; opacity: 0; transition: opacity .15s; }
.gate-item:hover .box { border-color: #464646; }
.gate-item input:checked + .box { background: var(--blue); border-color: var(--blue); }
.gate-item input:checked + .box::after { opacity: 1; }
.gate-item input:focus-visible + .box { outline: 2px solid var(--blue-hi); outline-offset: 2px; }
.gate-item a { color: var(--blue-hi); text-decoration: underline; text-underline-offset: 2px; }
.gate-note { margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: #0c0c0c; border: 1px solid #4a2326; font-size: 13px; color: #f1b7bc; line-height: 1.5; }
.gate-btns { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.gate-ok, .gate-no {
  padding: 12px 20px;
  border-radius: 10px;
  font: 600 14.5px var(--body);
  cursor: pointer;
  transition: background .15s, filter .15s, border-color .15s;
}
.gate-ok { border: 0; background: var(--blue); color: #161616; }
.gate-ok:hover:not(:disabled) { filter: brightness(1.1); }
.gate-ok:disabled { background: #080808; color: #5e5e5e; cursor: not-allowed; }
.gate-no { border: 1px solid #0a0a0a; background: transparent; color: #c1c1c1; }
.gate-no:hover { border-color: #232323; background: #0c0c0c; }
.gate-ok:focus-visible, .gate-no:focus-visible { outline: 2px solid var(--blue-hi); outline-offset: 3px; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 1700px) {
  .pill { font-size: 21px; padding: 9px 20px 9px 9px; }
  .pill .coin { width: 42px; height: 42px; }
  .p1, .p3 { left: 2.5%; } .p2 { left: 5%; } .p4 { left: 7%; }
  .p5, .p7 { right: 2.5%; } .p6 { right: 5%; } .p8 { right: 7%; }
  .a1, .a2 { left: 12%; } .a3, .a4 { right: 12%; }
}
@media (max-width: 1440px) {
  .pill { font-size: 18px; padding: 7px 16px 7px 7px; gap: 10px; }
  .pill .coin { width: 36px; height: 36px; }
  .pill .coin.long { font-size: 10px; }
  .pill .coin.xlong { font-size: 8.5px; }
  .p1, .p5 { top: 30%; } .p2, .p6 { top: 41%; } .p3, .p7 { top: 52%; } .p4, .p8 { top: 63%; }
}
@media (max-width: 1300px) {
  .pills { display: none; }
}

@media (max-width: 1100px) {
  .steps { grid-template-columns: minmax(0, 1fr); max-width: 520px; margin-inline: auto; }
  .eco { grid-template-columns: repeat(3, 1fr); }
  .pills { display: none; }
  .speed-grid { grid-template-columns: 1fr; justify-items: center; gap: 50px; }
  .speed-side { width: 100%; text-align: center; order: -1; }
  .bubbles { height: auto; display: flex; flex-direction: column; align-items: center; gap: 22px; margin-top: 40px; }
  .bubble { position: relative; inset: auto; width: auto !important; }
  .hub { grid-template-columns: 1fr; gap: 26px; }
  .wires { display: none; }
  .hub-core { order: -1; margin-bottom: 30px; }
  .hub-col.left, .hub-col.right { align-items: center; }
  .hub-col .node:nth-child(2) { margin: 0 !important; }
}

@media (max-width: 760px) {
  .plans { grid-template-columns: minmax(0, 1fr); }
  .plan { padding: 24px; }
  .how { padding-top: 80px; }
  .nav-links a[href="#pricing"] { display: none; }
  .nav { padding-top: 24px; }
  .nav-links { gap: 20px; font-size: 15px; }
  .nav-links svg { width: 22px; height: 22px; }
  .hero-copy { padding-top: 80px; }
  .hero-copy p { margin-top: 22px; }
  .store { min-width: 0; flex: 1 1 150px; max-width: 220px; padding: 8px 14px 8px 12px; }
  .store span { font-size: 21px; }
  .store svg { width: 28px; height: 28px; }
  .phones { margin-top: 60px; height: 330px; }
  .phone-center { transform: scale(.78); transform-origin: top center; }
  .phone-left, .phone-right { display: none; }

  .monitor-title { padding-left: 0; text-align: center; }
  .post { width: 300px; padding: 16px; }
  .post .pfp { width: 40px; height: 40px; }
  .post p { font-size: 14px; }
  /* stack the burst: two alerts, star, two alerts, caption */
  .burst { height: auto; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 30px 16px 50px; }
  .links, .radar { display: none; }
  .burst { background: radial-gradient(260px 260px at 50% 50%, rgba(0, 0, 0, 0.077), transparent 70%); }
  .alerts { display: contents; }
  .alert { position: relative; inset: auto; z-index: 2; font-size: 15px; }
  .alert .coin { width: 32px; height: 32px; font-size: 14px; }
  .a1 { order: 1; } .a3 { order: 2; } .a2 { order: 4; } .a4 { order: 5; }
  .star { order: 3; position: relative; left: auto; top: auto; translate: none; width: 120px; margin: 14px 0; }
  .burst-copy { order: 6; position: relative; left: auto; bottom: auto; translate: none; margin-top: 24px; }

  .phone-chat { transform: scale(.86); transform-origin: top center; margin-bottom: -100px; }
  .bubble { font-size: 18px; padding: 16px 20px; }

  .node { white-space: normal; text-align: left; width: 100%; max-width: 360px; }
  .core-tile { width: 170px; height: 170px; }
  .core-tile svg { width: 150px; }
    .eco { grid-template-columns: repeat(2, 1fr); }
  .eco-item b { font-size: 19px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 0 36px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .foot-bottom p { text-align: left; }
}

@media (max-width: 760px) {
  .gate-card { padding: 22px 18px; }
  .gate-btns { flex-direction: column-reverse; }
  .gate-ok, .gate-no { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
