:root {
  --bg: #090d14;
  --bg-soft: #121a28;
  --bg-elev: #182235;
  --line: #2a374d;
  --text: #f3f7ff;
  --muted: #9dafcb;
  --point: #fcd535;
  --point-strong: #f0b90b;
  --danger: #e11d2e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1000px 500px at 8% -4%, #fcd53522, transparent 60%), var(--bg);
  color: var(--text);
  font-family: "NanumSquareNeo", "Noto Sans KR", sans-serif;
}

body {
  padding-top: 88px;
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid #263349;
  background: #090d14dd;
  backdrop-filter: blur(10px);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  animation: header-drop 0.46s ease both;
}

.site-header.scrolled {
  background: #090d14f5;
  border-bottom-color: #354763;
  box-shadow: 0 10px 28px #0008;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 88px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid #334764;
  background: #111927;
  display: grid;
  place-items: center;
}

.brand-badge img {
  width: 30px;
  height: 30px;
}

.brand h1 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.brand p {
  margin: 2px 0 0;
  font-size: 11px;
  color: #95a6c2;
  letter-spacing: 0.14em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #c1d0e6;
}

.nav-item {
  position: relative;
  padding-bottom: 7px;
  margin-bottom: -7px;
}

.nav-trigger,
.nav-direct {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-trigger:hover,
.nav-direct:hover,
.nav-item.is-open .nav-trigger {
  border-color: #fcd53566;
  background: #111a2a;
  color: #fff;
}

.nav-caret {
  font-size: 10px;
  color: #8fa3c3;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item.is-open .nav-caret {
  color: #fcd535;
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 292px;
  border: 1px solid #2a374d;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a2538, #121a28);
  box-shadow: 0 18px 36px #000a;
  padding: 9px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid transparent;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.nav-dropdown a + a {
  margin-top: 6px;
}

.nav-dropdown a:hover {
  border-color: #fcd53555;
  background: #111a2a;
}

.nav-dropdown strong {
  display: block;
  font-size: 13px;
  color: #f6fbff;
}

.nav-dropdown span {
  display: block;
  margin-top: 4px;
  color: #97abc9;
  font-size: 11px;
  line-height: 1.5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid #2a374d;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #dbe6f8;
  background: #0f1724;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.header-link:hover {
  border-color: #fcd53566;
  color: #fff;
}

.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #fcd53566;
  font-size: 12px;
  font-weight: 800;
  color: #121722;
  background: linear-gradient(90deg, var(--point), var(--point-strong));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.top-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(540px 240px at 78% 12%, #fcd53522, transparent 62%);
  animation: hero-glow 6.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.hero-title {
  margin: 12px 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 900;
}

.hero-title .accent {
  display: block;
  background: linear-gradient(90deg, #fcd535, #ffe38b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: #a8b8d2;
  line-height: 1.8;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid #2a374d;
  background: #121a28cc;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  color: #c0cee2;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: #fcd53555;
  color: #fff;
}

.card {
  border: 1px solid #2a374d;
  background: linear-gradient(170deg, #1a2538, #121a28);
  border-radius: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  border-color: #fcd5354d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px #0005;
}

.panel {
  padding: 18px;
}

.exchange-overview {
  padding: 18px;
  animation: panel-float 3.8s ease-in-out infinite;
}

.exchange-eyebrow {
  margin: 0;
  color: #8fa3c3;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.exchange-title {
  margin: 8px 0 6px;
  font-size: 24px;
  font-weight: 800;
}

.exchange-sub {
  margin: 0;
  color: #a4b6d2;
  font-size: 13px;
  line-height: 1.6;
}

.exchange-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.exchange-item {
  border: 1px solid #2a374d;
  border-radius: 12px;
  background: #111a2a;
  padding: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.exchange-item:hover {
  transform: translateY(-2px);
  border-color: #fcd53566;
}

.exchange-item strong {
  display: block;
  color: #f3f7ff;
  font-size: 14px;
}

.exchange-item span {
  display: block;
  margin-top: 5px;
  color: #95a8c5;
  font-size: 12px;
  line-height: 1.5;
}

.exchange-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid #2a374d;
  background: #0d141f;
  padding: 10px 12px;
  color: #d8e5ff;
  font-size: 12px;
  font-weight: 700;
}

.exchange-link:hover {
  border-color: #fcd53566;
  color: #fff;
}

.section {
  padding: 44px 0;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 900;
}

.section-sub {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  border: 1px solid #2a374d;
  border-radius: 14px;
  background: linear-gradient(170deg, #1a2538, #121a28);
  padding: 14px;
}

.timeline-item strong {
  display: block;
  font-size: 14px;
  color: #f5fbff;
  margin-bottom: 6px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.muted-note {
  margin-top: 10px;
  color: #8ea0bc;
  font-size: 12px;
  line-height: 1.7;
}

.item {
  padding: 16px;
}

.item h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.metric {
  border: 1px solid #2a374d;
  border-radius: 12px;
  padding: 12px;
  background: #101724;
}

.metric p {
  margin: 0 0 8px;
  color: #ced9ea;
  font-size: 13px;
}

.metric small {
  color: #8797b2;
}

.bar {
  height: 9px;
  border-radius: 999px;
  background: #0a0f18;
  border: 1px solid #202b3d;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #fcd535, #f0b90b);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fcd5351f;
  border: 1px solid #fcd53566;
  color: #fcd535;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.step h4 {
  margin: 10px 0 7px;
  font-size: 17px;
}

.step p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-banner {
  margin-top: 18px;
  padding: 22px;
  text-align: center;
}

.cta-banner h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 35px);
}

.cta-banner p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 20px;
  font-weight: 900;
  color: #101722;
  border: 1px solid #fcd53566;
  background: linear-gradient(90deg, #fcd535, #f0b90b);
  box-shadow: 0 10px 20px #0005;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.quick-fab-wrap {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 84;
}

.quick-fab-btn {
  width: 58px;
  height: 58px;
  border: 1px solid #fcd53599;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffd84e, #f0b90b);
  color: #0b1220;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 30px #000a, inset 0 1px 0 #fff7c1;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
  animation: bubble-pulse 3.3s ease-in-out infinite;
}

.quick-fab-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  border-color: #ffe082;
}

.quick-fab-menu {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 252px;
  border-radius: 16px;
  border: 1px solid #3a4b67;
  background: linear-gradient(180deg, #151f32f2, #101a2bf2);
  box-shadow: 0 18px 38px #000b;
  backdrop-filter: blur(10px);
  padding: 10px;
  transform-origin: right bottom;
  animation: fab-pop 0.24s ease both;
}

.quick-fab-menu a,
.quick-fab-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid #2c3e5a;
  background: #111c2f;
  color: #e7f0ff;
  text-align: left;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.quick-fab-menu a::before,
.quick-fab-menu button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(145deg, #fcd535, #f0b90b);
  box-shadow: 0 0 0 3px #fcd53522;
}

.quick-fab-menu a + a,
.quick-fab-menu a + button,
.quick-fab-menu button + a,
.quick-fab-menu button + button {
  margin-top: 4px;
}

.quick-fab-menu a:hover,
.quick-fab-menu button:hover {
  border-color: #fcd5358a;
  background: #17243b;
  color: #fff7d6;
  transform: translateX(-2px);
}

.snapshot-card {
  margin-top: 18px;
  padding: 18px;
}

.snapshot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.snapshot-eyebrow {
  margin: 0;
  color: #9fb0c9;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-user {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 800;
}

.snapshot-live {
  border-radius: 999px;
  border: 1px solid #2a374d;
  padding: 4px 10px;
  font-size: 11px;
  color: #94e5b8;
  background: #0f1e17;
}

.snapshot-tabs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.snapshot-chart {
  margin-top: 10px;
  position: relative;
  border: 1px solid #243247;
  border-radius: 12px;
  background: #0d141f;
  padding: 8px;
}

.snapshot-chart svg {
  width: 100%;
  height: 140px;
}

.snapshot-month-pnl {
  position: absolute;
  top: 11px;
  left: 14px;
  font-size: 11px;
  color: #aee7c6;
}

.snapshot-month-meta {
  position: absolute;
  top: 11px;
  right: 14px;
  font-size: 11px;
  color: #93a6c5;
}

.snapshot-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.snapshot-stat {
  border: 1px solid #243247;
  border-radius: 10px;
  padding: 10px;
  background: #0f1724;
  text-align: center;
}

.snapshot-stat p {
  margin: 0;
}

.snapshot-label {
  font-size: 11px;
  color: #93a6c5;
}

.snapshot-value {
  margin-top: 6px !important;
  font-size: 18px;
  font-weight: 800;
  color: #f3f7ff;
}

.onboarding-shell {
  padding-top: 30px;
}

.onboarding-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-bottom: 20px;
}

.onboarding-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid #5b4820;
  background: linear-gradient(130deg, #221a0f 0%, #151311 45%, #18160f 100%);
  box-shadow: 0 14px 34px #0007;
}

.onboarding-hero-copy,
.onboarding-hero-metrics {
  position: relative;
  z-index: 1;
}

.onboarding-hero-copy {
  padding: 24px 24px 22px;
}

.onboarding-kicker {
  margin: 0;
  color: #f6d46a;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.onboarding-title {
  margin: 10px 0 0;
  font-size: clamp(30px, 4.3vw, 60px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.onboarding-title span {
  display: block;
  margin: 6px 0 0;
  background: linear-gradient(90deg, #fcd535, #ffe8a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.onboarding-lead {
  margin: 14px 0 0;
  color: #d8c9a6;
  line-height: 1.8;
  font-size: 15px;
}

.onboarding-pill-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.onboarding-pill {
  border: 1px solid #6d5a30;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #f6e4b4;
  background: #1a1711;
}

.onboarding-hero-metrics {
  display: grid;
  gap: 10px;
  padding: 16px 16px 16px 0;
}

.onboarding-metric {
  border: 1px solid #5f4f2d;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, #1d1810, #15120e);
}

.onboarding-metric p {
  margin: 0;
  color: #c5ad79;
  font-size: 12px;
}

.onboarding-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  color: #f2f8ff;
}

.onboarding-metric span {
  display: block;
  margin-top: 6px;
  color: #bcae8d;
  font-size: 12px;
}

.onboarding-flow {
  margin-top: 8px;
}

.onboarding-flow-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}

.onboarding-steps .step {
  border-color: #5a4b2c;
  background: linear-gradient(170deg, #201a12, #15120d);
}

.onboarding-steps .step:hover {
  transform: translateY(-3px);
  border-color: #fcd53588;
  box-shadow: 0 12px 28px #0007;
}

.onboarding-steps .step-num {
  background: linear-gradient(140deg, #fcd53533, #f0b90b22);
  border-color: #fcd53588;
  color: #ffe9ab;
}

.onboarding-cta-banner {
  margin-top: 20px;
  padding: 24px;
  border-color: #69572f;
  background: linear-gradient(155deg, #211b12 0%, #16130f 54%, #1b1710 100%);
}

.onboarding-cta-btn {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  gap: 4px;
  border: 1px solid #fcd535aa;
  border-radius: 18px;
  padding: 16px 18px;
  color: #07101d;
  background: linear-gradient(92deg, #ffe082 0%, #fcd535 45%, #f0b90b 100%);
  box-shadow: 0 12px 32px #0008, inset 0 1px 0 #ffffffaa;
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.onboarding-cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.03);
  box-shadow: 0 16px 34px #0009, inset 0 1px 0 #ffffffcc;
}

.onboarding-cta-main {
  display: block;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.onboarding-cta-sub {
  display: block;
  font-size: clamp(13px, 1.8vw, 18px);
  color: #3d2a03;
  font-weight: 700;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: #000b;
  display: grid;
  place-items: start center;
  padding: 56px 14px 20px;
}

.trial-modal-panel {
  width: min(96vw, 560px);
  border-radius: 16px;
  border: 1px solid #2a374d;
  background: linear-gradient(180deg, #141f32, #101725);
  box-shadow: 0 20px 42px #000a;
  padding: 20px;
}

.trial-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.trial-modal-title {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
}

.trial-modal-copy {
  margin: 0;
  color: #b3c2da;
  font-size: 16px;
  line-height: 1.6;
}

.trial-modal-body {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 16px;
  align-items: center;
}

.trial-modal-link {
  display: block;
  border-radius: 16px;
  border: 1px solid #26374f;
  background: #09111f;
  padding: 18px 16px;
}

.trial-modal-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 16px;
  padding: 10px 18px;
  border: 0;
  font-size: 18px;
  font-weight: 900;
  color: #101722;
  background: linear-gradient(90deg, #fcd535, #f0b90b);
}

.trial-modal-link-sub {
  margin-top: 10px;
  font-size: 16px;
  color: #9eb1ce;
}

.trial-modal-qr {
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  padding: 8px;
}

.trial-modal-qr img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.trial-modal-close {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 44px;
  border: 1px solid #2a374d;
  border-radius: 16px;
  background: #0f1724;
  color: #dbe6f8;
  font-size: 16px;
  font-weight: 800;
}

.trial-modal:not(.hidden) .trial-modal-panel {
  animation: modal-rise 0.32s ease both;
}

.trial-modal:not(.hidden) .trial-modal-link {
  animation: modal-item-in 0.34s ease both;
}

.trial-modal:not(.hidden) .trial-modal-qr {
  animation: modal-item-in 0.34s ease both;
  animation-delay: 0.08s;
}

.trial-modal:not(.hidden) .trial-modal-close {
  animation: modal-item-in 0.34s ease both;
  animation-delay: 0.14s;
}

.hidden {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.99);
  transition: opacity 0.74s ease, transform 0.74s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-12px);
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes bubble-pulse {
  0%,
  100% {
    box-shadow: 0 12px 28px #0009;
  }
  50% {
    box-shadow: 0 16px 34px #000b;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 76px;
  }

  .header-inner {
    min-height: 76px;
    gap: 8px;
  }

  .brand p {
    display: none;
  }

  .top-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-link {
    padding: 8px 10px;
    font-size: 11px;
  }

  .top-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .header-link {
    min-height: 34px;
    padding: 7px 9px;
  }

  .grid-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .exchange-grid {
    grid-template-columns: 1fr;
  }

  .quick-fab-wrap {
    right: 10px;
    bottom: 12px;
  }

  .quick-fab-btn {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }

  .quick-fab-menu {
    width: min(82vw, 220px);
  }

  .onboarding-hero {
    grid-template-columns: 1fr;
  }

  .onboarding-hero-copy {
    padding: 22px 18px 16px;
  }

  .onboarding-hero-metrics {
    padding: 0 18px 18px;
  }

  .onboarding-title {
    font-size: clamp(28px, 9vw, 48px);
  }

  .onboarding-cta-banner {
    padding: 20px 14px;
  }

  .onboarding-cta-btn {
    border-radius: 16px;
    padding: 14px 14px;
  }

  .snapshot-stats {
    grid-template-columns: 1fr;
  }

  .trial-modal {
    padding-top: 24px;
  }

  .trial-modal-title {
    font-size: 30px;
  }

  .trial-modal-copy {
    font-size: 16px;
  }

  .trial-modal-body {
    grid-template-columns: 1fr;
  }

  .trial-modal-link-btn {
    width: 100%;
    font-size: 17px;
  }

  .trial-modal-link-sub {
    font-size: 15px;
  }

  .trial-modal-close {
    min-height: 48px;
    font-size: 16px;
  }
}

@keyframes fab-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modal-item-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
