:root {
  color-scheme: dark;
  --bg: #080e15;
  --panel: #101820;
  --panel-2: #141e27;
  --line: #24313a;
  --mint: #72f4c0;
  --text: #f3f6f7;
  --muted: #92a0ab;
  --font: "DM Sans", sans-serif;
  --display: "Space Grotesk", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 5px;
}
button:disabled {
  cursor: wait;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
}
h2 {
  font-size: clamp(34px, 4.1vw, 54px);
  letter-spacing: -2.1px;
}
h2 span {
  color: var(--muted);
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon.fill {
  fill: currentColor;
  stroke: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  padding: 12px;
  background: var(--mint);
  color: var(--bg);
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
[hidden] {
  display: none !important;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #080e15ed;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #ffffff0b;
}
.nav-wrap {
  display: flex;
  align-items: center;
  height: 88px;
  gap: 38px;
}
.brand {
  font-family: var(--display);
  font-size: 29px;
  letter-spacing: -1.8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  white-space: nowrap;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--mint);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--bg);
  margin-right: 10px;
  transform: rotate(-8deg);
}
.brand-mark .icon {
  width: 24px;
  height: 24px;
}
.brand-inu {
  font-weight: 400;
}
.brand-dot {
  font: 10px var(--font);
  align-self: flex-start;
  margin: 8px 0 0 4px;
  color: var(--muted);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin: auto;
  font-size: 14px;
  color: #b1bac3;
}
.desktop-nav a:hover,
.text-link:hover {
  color: var(--mint);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 17px 25px;
  background: var(--mint);
  border: 1px solid var(--mint);
  border-radius: 9px;
  color: #0b2018;
  font-size: 16px;
  font-weight: 650;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: #9ff8d6;
  box-shadow: 0 0 28px #72f4c01c;
  transform: translateY(-2px);
}
.button-small {
  font-size: 14px;
  padding: 11px 17px;
  gap: 23px;
}
.button .icon {
  width: 18px;
  height: 18px;
}
.menu-toggle,
.mobile-nav {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#74948d0a 1px, transparent 1px),
    linear-gradient(90deg, #74948d0a 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent, black 50%, black);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  min-height: 665px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 66px 0 50px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.65px;
  font-weight: 600;
  color: var(--mint);
}
.tiny-paw {
  display: flex;
}
.tiny-paw .icon {
  width: 14px;
  height: 14px;
}
.hero h1 {
  font-size: clamp(70px, 7.4vw, 104px);
  letter-spacing: -6px;
  line-height: 1.02;
  margin: 28px 0 25px;
}
.hero h1 span {
  color: var(--mint);
}
.hero-description {
  color: #a4afb9;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.1px;
}
.text-white {
  color: #e5edef;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 33px;
}
.text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  transition: color 0.2s;
}
.play-icon {
  display: grid;
  place-items: center;
  border: 1px solid #5b68724d;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  font-size: 9px;
  padding-left: 2px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #82919f;
  margin-top: 22px;
}
.hero-note .icon {
  width: 14px;
  height: 14px;
  color: var(--mint);
}
.hero-art {
  height: 570px;
  position: relative;
  isolation: isolate;
  margin-right: -35px;
}
.mascot-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  inset: 75px 0 0 70px;
  background: radial-gradient(ellipse, #4ec79829, transparent 65%);
  filter: blur(15px);
  z-index: -2;
}
.hero-mascot {
  position: absolute;
  inset: 20px auto auto -5px;
  width: 600px;
  height: 560px;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px #0005);
  z-index: 1;
  animation: mascot-float 7s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid #70e1b514;
  border-radius: 50%;
  z-index: -1;
}
.orbit-one {
  width: 460px;
  height: 460px;
  top: 55px;
  left: 60px;
}
.orbit-two {
  width: 560px;
  height: 560px;
  top: 5px;
  left: 10px;
}
.orbit-three {
  width: 400px;
  height: 130px;
  bottom: 28px;
  left: 91px;
  transform: rotate(-12deg);
  border-color: #70e1b52b;
}
.orbit-cross {
  position: absolute;
  color: var(--mint);
  font: 23px var(--display);
  z-index: 2;
}
.cross-one {
  top: 74px;
  left: 70px;
}
.cross-two {
  right: 32px;
  bottom: 70px;
  opacity: 0.5;
}
.floating-prompt,
.floating-match,
.floating-reward {
  position: absolute;
  border: 1px solid #b0d1c72c;
  background: linear-gradient(120deg, #192a30eb, #101b24ed);
  box-shadow: 0 15px 45px #0003;
  backdrop-filter: blur(12px);
  z-index: 3;
  border-radius: 12px;
}
.floating-prompt {
  top: 46px;
  right: 4px;
  font-size: 13px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: rotate(5deg);
}
.floating-prompt .icon {
  color: var(--mint);
  width: 16px;
  height: 16px;
}
.floating-match {
  bottom: 116px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  transform: rotate(-5deg);
}
.match-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #72f4c01c;
  color: var(--mint);
  display: grid;
  place-items: center;
}
.floating-match strong {
  font-size: 12px;
  display: block;
  font-weight: 550;
}
.floating-match div > span {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.match-score {
  font: 27px var(--display);
  color: var(--mint);
  margin-left: 12px;
}
.match-score > span {
  font-size: 13px;
}
.floating-reward {
  right: -6px;
  bottom: 47px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  transform: rotate(5deg);
}
.reward-coin {
  background: var(--mint);
  border: 3px solid #45b58e;
  box-shadow:
    0 0 0 1px #82ffcd55,
    3px 3px 0 #244e3f;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #17452f;
  flex: none;
}
.reward-coin .icon {
  width: 23px;
  height: 23px;
}
.floating-reward div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.floating-reward strong {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.reward-spark {
  color: var(--mint);
  width: 17px;
  margin-left: 8px;
}
.mascot-label {
  position: absolute;
  bottom: 4px;
  left: 120px;
  display: flex;
  gap: 105px;
  font-size: 9px;
  letter-spacing: 1.6px;
  color: #637b7a;
}
.hero-bottom {
  position: relative;
  border-top: 1px solid #ffffff10;
  border-bottom: 1px solid #ffffff10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 0;
}
.hero-bottom > span {
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #70818e;
  max-width: 135px;
  line-height: 1.7;
}
.hero-bottom > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0bbc4;
  font-size: 13px;
}
.hero-bottom .icon {
  color: #81958e;
  width: 18px;
  height: 18px;
}
.section-pad {
  padding: 108px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
}
.section-heading > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 340px;
  padding-bottom: 5px;
}
.agent-window {
  border: 1px solid #33453f;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 195px 1fr;
  overflow: hidden;
  box-shadow:
    0 0 90px #5ddb9f05,
    0 25px 70px #0003;
  min-height: 648px;
  background: var(--panel);
}
.agent-sidebar {
  background: #0d141c;
  padding: 27px 17px 18px;
  border-right: 1px solid #243139;
  display: flex;
  flex-direction: column;
}
.app-brand {
  font-size: 24px;
  margin: 0 8px 27px;
}
.app-brand .brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  margin-right: 8px;
}
.app-brand .brand-mark .icon {
  width: 20px;
  height: 20px;
}
.new-fetch,
.sidebar-button,
.recent-fetch {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 10px;
  text-align: left;
  background: none;
  width: 100%;
  font-size: 12px;
  color: #9da9b5;
  border-radius: 6px;
  transition: background 0.2s;
}
.new-fetch {
  border: 1px solid #33463f;
  color: var(--mint);
  margin-bottom: 9px;
}
.new-fetch.active {
  background: #72f4c00c;
}
.sidebar-button:hover,
.recent-fetch:hover,
.sidebar-button.active {
  background: #ffffff07;
  color: var(--text);
}
.sidebar-button .icon,
.new-fetch .icon,
.recent-fetch .icon {
  width: 16px;
  height: 16px;
}
.sidebar-button > span {
  margin-left: auto;
  font-size: 10px;
  color: #6e818e;
}
.recent-label {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #627582;
  margin: 30px 10px 8px;
}
.recent-fetch {
  font-size: 10px;
  padding: 10px;
}
.recent-fetch .icon {
  width: 13px;
  height: 13px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 40px;
}
.credits-card {
  background: #141f24;
  border: 1px solid #293c34;
  padding: 13px;
  border-radius: 8px;
}
.credits-card > span {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #b7c5c5;
}
.credits-card > span .icon {
  color: var(--mint);
  width: 13px;
  height: 13px;
}
.credits-card strong {
  font: 28px var(--display);
  display: block;
  margin: 7px 0 11px;
}
.credits-card strong small {
  font: 10px var(--font);
  color: #7c9492;
}
.credits-card button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 10px;
  background: none;
  border-top: 1px solid #2a3d34;
  color: var(--mint);
  padding: 10px 0 0;
}
.profile {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  margin-top: 22px;
}
.profile-avatar,
.user-dot {
  display: grid;
  place-items: center;
  background: #293842;
  border: 1px solid #53605b;
  color: #c5d4d1;
  border-radius: 50%;
  font-size: 11px;
  width: 28px;
  height: 28px;
  flex: none;
}
.profile div > span {
  font-size: 7px;
  letter-spacing: 1px;
  color: #6b8590;
  display: block;
  margin-top: 4px;
}
.agent-main {
  min-width: 0;
}
.app-toolbar {
  height: 58px;
  border-bottom: 1px solid #26313a;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #6f828f;
}
.toolbar-slash {
  margin: 0 8px;
  color: #3f505d;
}
.app-toolbar strong {
  font-weight: 400;
  color: #bac5cb;
}
.preview-badge {
  border: 1px solid #33473c;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #8eaf9f;
  white-space: nowrap;
}
.chat-area {
  padding: 26px 28px 0;
}
.user-message {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 12px;
}
.user-message > span:first-child {
  background: #202d37;
  padding: 11px 15px;
  border: 1px solid #2d3d47;
  border-radius: 9px 9px 2px 9px;
}
.agent-message {
  margin: 25px 0 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.agent-avatar {
  width: 27px;
  height: 27px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #72f4c0;
  color: #183e2f;
  flex: none;
  margin-top: 1px;
}
.agent-avatar .icon {
  width: 19px;
  height: 19px;
}
.agent-message strong {
  font-size: 12px;
  font-weight: 650;
}
.agent-label {
  color: #6e8c89;
  font-size: 8px;
  font-weight: 450;
  letter-spacing: 1px;
  margin-left: 8px;
}
.agent-message p {
  font-size: 12px;
  color: #a9b7bf;
  line-height: 1.8;
  margin-top: 6px;
}
.search-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  color: #6f9687;
  margin: 0 0 21px 38px;
}
.search-status .icon {
  width: 12px;
  height: 12px;
  color: var(--mint);
}
.status-divider {
  margin: 0 3px;
  color: #4b6359;
}
.search-status > span:last-child {
  color: #708491;
}
.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 12px;
}
.view-tabs {
  display: flex;
  gap: 6px;
}
.view-tabs button {
  padding: 7px 11px;
  font-size: 10px;
  background: none;
  color: #8ea0ac;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
}
.view-tabs button.selected {
  background: #22342b;
  color: var(--mint);
  border-color: #354e3f;
}
.view-tabs .icon {
  width: 12px;
  height: 12px;
}
.crypto-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #95a8b3;
  cursor: pointer;
}
.crypto-toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.toggle-track {
  width: 24px;
  height: 13px;
  background: #35434a;
  border: 1px solid #536068;
  border-radius: 20px;
  position: relative;
  transition: background 0.2s;
}
.toggle-track:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #a9b6bc;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
}
.crypto-toggle input:checked + .toggle-track {
  background: #62dfac;
  border-color: #62dfac;
}
.crypto-toggle input:checked + .toggle-track:after {
  background: #142e22;
  transform: translateX(11px);
}
.crypto-toggle input:focus-visible + .toggle-track {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.product-card {
  border: 1px solid #2b3a43;
  border-radius: 9px;
  overflow: hidden;
  background: #14202a;
  min-width: 0;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.product-card:hover {
  border-color: #577769;
  transform: translateY(-3px);
}
.product-visual {
  height: 138px;
  position: relative;
  background: #e9edef;
  overflow: hidden;
}
.product-photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/products.png");
  background-size: 300% auto;
  background-repeat: no-repeat;
  background-position-y: center;
}
.photo-shoe {
  background-position-x: 0;
}
.photo-headphones {
  background-position-x: 50%;
}
.photo-backpack {
  background-position-x: 100%;
}
.product-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  border-radius: 4px;
  background: #10271fea;
  color: #92f6ca;
  padding: 3px 6px;
  font-size: 7px;
  letter-spacing: 0.6px;
  display: flex;
  gap: 4px;
  align-items: center;
  z-index: 1;
}
.product-badge .icon {
  width: 9px;
  height: 9px;
}
.save-button {
  position: absolute;
  right: 8px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #44535a;
  background: #ffffffbc;
  border: 1px solid #ffffff;
  z-index: 1;
}
.save-button .icon {
  width: 13px;
  height: 13px;
}
.save-button[aria-pressed="true"] {
  background: var(--mint);
  color: #163b2b;
}
.save-button[aria-pressed="true"] .icon {
  fill: #163b2b;
}
.product-info {
  padding: 12px;
}
.product-category {
  font-size: 8px;
  letter-spacing: 1.1px;
  color: #728c9a;
  text-transform: uppercase;
}
.product-info h4 {
  font-size: 15px;
  letter-spacing: -0.3px;
  margin: 5px 0 8px;
}
.product-price {
  font-family: var(--display);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price > span {
  font-family: var(--font);
  font-size: 8px;
  color: #84b69f;
  background: #25423366;
  padding: 2px 4px;
  border-radius: 3px;
}
.product-meta {
  font-size: 9px;
  color: #a0b4b9;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 7px 0 12px;
}
.usdc-icon {
  font-family: var(--display);
  font-size: 9px;
  color: white;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background: #3477d0;
}
.product-action {
  width: 100%;
  padding: 8px;
  border: 1px solid #344a52;
  background: #1b2e37;
  border-radius: 5px;
  font-size: 10px;
  color: #b8d5ce;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-action .icon {
  width: 12px;
  height: 12px;
}
.product-action:hover {
  background: #2c493e;
  color: var(--mint);
}
.agent-tip {
  font-size: 10px;
  color: #9eadae;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 20px;
}
.agent-tip .icon {
  width: 13px;
  height: 13px;
  color: var(--mint);
}
.prompt-area {
  padding: 0 28px 13px;
}
.prompt-suggestions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.prompt-suggestions button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #2a3a43;
  background: none;
  border-radius: 5px;
  padding: 6px 9px;
  font-size: 9px;
  color: #8c9fae;
}
.prompt-suggestions .icon {
  width: 10px;
  height: 10px;
}
.prompt-form,
#demo-form {
  display: flex;
  padding: 8px;
  border: 1px solid #435c52;
  border-radius: 9px;
  background: #19262e;
  gap: 8px;
}
.prompt-input,
#demo-input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  outline: none;
  padding: 4px 6px;
}
.prompt-input::placeholder,
#demo-input::placeholder {
  color: #7b939d;
}
.prompt-form:focus-within,
#demo-form:focus-within {
  border-color: var(--mint);
  box-shadow: 0 0 0 2px #72f4c015;
}
.prompt-form button,
#demo-form button {
  background: var(--mint);
  color: #163c2a;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex: none;
}
.prompt-form .icon,
#demo-form .icon {
  width: 17px;
  height: 17px;
}
.preview-caption {
  text-align: center;
  font-size: 8px;
  color: #65818b;
  margin-top: 8px;
}
.agent-under {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  color: #7f929d;
  font-size: 11px;
}
.agent-under > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.agent-under .icon {
  width: 15px;
  height: 15px;
  color: #81af98;
}
.alternate-panel {
  padding: 44px 30px;
  min-height: 590px;
}
.alternate-panel h3 {
  font-size: 32px;
  letter-spacing: -1.4px;
  margin: 13px 0;
}
.alternate-panel > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 25px;
}
.empty-state {
  padding: 55px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.empty-state > .icon {
  width: 32px;
  height: 32px;
  color: var(--mint);
  margin-bottom: 22px;
}
.empty-state h4 {
  font-size: 22px;
}
.empty-state p {
  color: var(--muted);
  font-size: 13px;
  margin: 13px 0 22px;
}
.wallet-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 33px 0;
}
.wallet-summary > div {
  padding: 24px;
  background: #18282c;
  border: 1px solid #35473f;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wallet-summary span {
  font-size: 12px;
  color: #b0c3bf;
}
.wallet-summary strong {
  font: 40px var(--display);
  color: var(--mint);
}
.wallet-summary small {
  font-size: 11px;
  color: var(--muted);
}
.topup-preview {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.topup-preview h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.topup-preview p,
.wallet-note {
  font-size: 13px;
  color: var(--muted);
}
.wallet-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #172129;
  border-radius: 8px;
  margin-bottom: 22px;
}
.wallet-note .icon {
  color: var(--mint);
}
.comparison {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.comparison table {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  text-align: left;
}
.comparison th,
.comparison td {
  padding: 13px 9px;
  border-bottom: 1px solid var(--line);
}
.comparison th {
  font-weight: 500;
  color: var(--mint);
  background: #18302655;
}
.comparison td {
  color: #a6b6bb;
}
.comparison tbody tr:last-child td {
  border-bottom: 0;
}
.comparison .table-save {
  color: var(--mint);
  font-size: 10px;
  border: 1px solid #3b5a4c;
  background: #183026;
  border-radius: 4px;
  padding: 6px 9px;
}
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  border: 1px solid #4e7260;
  background: #1b3029;
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 13px;
  box-shadow: 0 10px 40px #0005;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  max-width: calc(100% - 36px);
  text-align: center;
}
.toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
dialog {
  border: 1px solid #496451;
  background: #101b22;
  color: var(--text);
  border-radius: 18px;
  padding: 26px;
  width: min(480px, calc(100% - 32px));
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 30px 100px #0009;
}
dialog::backdrop {
  background: #03090ddd;
  backdrop-filter: blur(7px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.icon-button {
  background: #ffffff0a;
  border: 1px solid #ffffff10;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}
.icon-button .icon {
  width: 16px;
}
.dialog-product-image {
  height: 220px;
  background: #e9edef;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dialog-product-image .product-photo {
  background-size: 300% auto;
}
.dialog-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
}
.dialog-price h3 {
  font-size: 25px;
  letter-spacing: -0.8px;
}
.dialog-price > span {
  font: 26px var(--display);
  color: var(--mint);
}
.dialog-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.checkout-route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid #30483b;
  background: #16271f;
  padding: 17px 13px;
  border-radius: 9px;
  margin: 21px 0;
  font-size: 12px;
}
.checkout-route .icon {
  width: 16px;
  color: var(--mint);
}
.checkout-route span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dialog-notice {
  font-size: 12px;
  color: #95aaa8;
  line-height: 1.8;
  margin-bottom: 20px;
}
.dialog-notice strong {
  display: block;
  color: #d3e2db;
  font-size: 13px;
  margin-bottom: 3px;
}
.dialog-save {
  width: 100%;
}
@keyframes mascot-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (min-width: 1450px) {
  .hero-inner {
    min-height: 700px;
  }
  .hero-art {
    height: 600px;
  }
  .hero-mascot {
    width: 640px;
    height: 600px;
  }
  .hero h1 {
    font-size: 104px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav-wrap {
    gap: 20px;
  }
  .desktop-nav {
    gap: 23px;
  }
  .hero h1 {
    font-size: 82px;
  }
  .hero-art {
    margin-right: -10px;
  }
  .hero-mascot {
    width: 520px;
    height: 520px;
    left: -40px;
    top: 38px;
  }
  .hero-inner {
    min-height: 640px;
  }
  .hero-art {
    height: 530px;
  }
  .floating-prompt {
    font-size: 11px;
    right: -4px;
    top: 30px;
  }
  .floating-match {
    left: -35px;
    bottom: 103px;
    transform: scale(0.9) rotate(-5deg);
  }
  .floating-reward {
    right: -12px;
    bottom: 34px;
    transform: scale(0.9) rotate(5deg);
  }
  .orbit-one {
    left: 5px;
    width: 400px;
    height: 400px;
  }
  .orbit-two {
    left: -40px;
    width: 490px;
    height: 490px;
  }
  .mascot-glow {
    left: 0;
  }
  .mascot-label {
    left: 45px;
    gap: 80px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-bottom > div {
    font-size: 11px;
  }
  .agent-window {
    grid-template-columns: 170px 1fr;
  }
  .agent-sidebar {
    padding: 24px 12px 17px;
  }
  .chat-area {
    padding: 24px 20px 0;
  }
  .prompt-area {
    padding: 0 20px 13px;
  }
  .product-visual {
    height: 115px;
  }
  .product-info {
    padding: 10px;
  }
  .product-info h4 {
    font-size: 13px;
  }
  .hero-bottom > span {
    font-size: 8px;
  }
  .section-pad {
    padding: 85px 0;
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    height: 75px;
  }
  .desktop-nav {
    gap: 15px;
    font-size: 12px;
  }
  .brand {
    font-size: 25px;
  }
  .brand-mark {
    width: 31px;
    height: 31px;
  }
  .button-small {
    font-size: 12px;
    gap: 10px;
    padding: 10px 13px;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
  .hero-copy {
    padding: 45px 0;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -4px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    padding: 14px 20px;
    font-size: 14px;
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 7px;
  }
  .hero-note {
    font-size: 9px;
  }
  .hero-art {
    height: 450px;
  }
  .hero-mascot {
    width: 430px;
    height: 430px;
    left: -30px;
    top: 20px;
  }
  .orbit-one {
    width: 310px;
    height: 310px;
    left: 12px;
  }
  .orbit-two {
    width: 390px;
    height: 390px;
    left: -27px;
    top: 15px;
  }
  .orbit-three {
    width: 280px;
    left: 15px;
    bottom: 20px;
  }
  .floating-prompt {
    font-size: 9px;
    right: -8px;
    padding: 10px;
    gap: 6px;
  }
  .floating-match {
    left: -25px;
    bottom: 80px;
    transform: scale(0.77) rotate(-5deg);
    transform-origin: left center;
  }
  .floating-reward {
    right: -10px;
    bottom: 23px;
    transform: scale(0.8) rotate(5deg);
    transform-origin: right center;
  }
  .mascot-label {
    display: none;
  }
  .hero-bottom {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
  }
  .hero-bottom > span {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .hero-bottom > div {
    font-size: 10px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .agent-window {
    grid-template-columns: 145px 1fr;
  }
  .agent-sidebar {
    padding: 24px 9px 15px;
  }
  .app-brand {
    font-size: 21px;
  }
  .app-brand .brand-mark {
    width: 25px;
    height: 25px;
    margin-right: 6px;
  }
  .sidebar-button,
  .new-fetch {
    font-size: 10px;
    padding: 10px 7px;
  }
  .recent-fetch {
    font-size: 9px;
    padding: 8px 3px;
    gap: 5px;
  }
  .recent-label {
    font-size: 7px;
  }
  .chat-area {
    padding: 22px 17px 0;
  }
  .product-grid {
    gap: 8px;
  }
  .product-visual {
    height: 100px;
  }
  .product-info {
    padding: 9px;
  }
  .product-info h4 {
    font-size: 12px;
  }
  .product-price {
    font-size: 15px;
  }
  .product-price > span {
    font-size: 7px;
  }
  .product-category {
    font-size: 7px;
  }
  .product-action {
    font-size: 9px;
  }
  .product-meta {
    font-size: 8px;
  }
  .app-toolbar {
    padding: 0 17px;
    font-size: 10px;
  }
  .preview-badge {
    font-size: 7px;
  }
  .user-message {
    font-size: 11px;
  }
  .agent-message p {
    font-size: 11px;
  }
  .agent-label {
    font-size: 7px;
  }
  .prompt-area {
    padding: 0 17px 13px;
  }
  .section-heading {
    gap: 20px;
  }
  .section-pad {
    padding: 72px 0;
  }
  .agent-under {
    font-size: 10px;
  }
}
@media (max-width: 620px) {
  .nav-wrap {
    height: 72px;
    gap: 15px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-wrap > .button {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    width: 25px;
    padding: 4px 0;
    align-items: flex-end;
  }
  .menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: #b0c4bd;
  }
  .menu-toggle span:last-child {
    width: 15px;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--line);
    background: var(--bg);
  }
  .mobile-nav a {
    padding: 10px 0;
    color: #bfd0c9;
    font-size: 14px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hero-copy {
    width: 100%;
    text-align: center;
    padding: 52px 0 0;
  }
  .hero-copy > .eyebrow {
    justify-content: center;
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(65px, 16vw, 88px);
    letter-spacing: -4px;
    margin: 23px 0 22px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.85;
  }
  .hero-actions {
    justify-content: center;
    gap: 25px;
    margin-top: 27px;
  }
  .hero-actions .button {
    padding: 15px 22px;
    font-size: 14px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-note {
    font-size: 10px;
    justify-content: center;
    margin-top: 18px;
  }
  .hero-art {
    width: min(390px, 100%);
    height: 385px;
    margin: 21px 0 0;
  }
  .hero-mascot {
    width: 410px;
    height: 390px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
  }
  .orbit-one {
    width: 300px;
    height: 300px;
    left: calc(50% - 150px);
    top: 40px;
  }
  .orbit-two {
    width: 365px;
    height: 365px;
    left: calc(50% - 182px);
    top: 8px;
  }
  .mascot-glow {
    width: 350px;
    height: 350px;
    inset: 0;
  }
  .orbit-three {
    bottom: 12px;
    left: calc(50% - 140px);
  }
  .floating-prompt {
    top: 25px;
    right: 0;
    transform: rotate(6deg);
    font-size: 9px;
    padding: 9px;
  }
  .floating-match {
    left: 0;
    bottom: 64px;
    transform: scale(0.72) rotate(-5deg);
  }
  .floating-reward {
    right: -2px;
    bottom: 20px;
    transform: scale(0.74) rotate(5deg);
  }
  .cross-one {
    left: 20px;
    top: 60px;
    font-size: 16px;
  }
  .cross-two {
    display: none;
  }
  .hero-bottom {
    gap: 20px 10px;
    padding: 22px 0;
  }
  .hero-bottom > div {
    font-size: 9px;
    gap: 5px;
  }
  .hero-bottom .icon {
    width: 14px;
    height: 14px;
  }
  .hero-bottom > div:last-child {
    display: none;
  }
  .hero-bottom > span {
    font-size: 8px;
  }
  .section-pad {
    padding: 65px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading .eyebrow {
    margin-bottom: 17px;
  }
  h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }
  .section-heading > p {
    margin-top: 20px;
    max-width: none;
    font-size: 14px;
  }
  .agent-window {
    display: block;
    border-radius: 12px;
  }
  .agent-sidebar {
    padding: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .app-brand {
    font-size: 18px;
    margin: 0 auto 0 0;
  }
  .app-brand .brand-mark {
    width: 25px;
    height: 25px;
    border-radius: 7px;
    margin-right: 6px;
  }
  .new-fetch {
    width: auto;
    margin: 0;
    font-size: 0;
    padding: 8px;
    border-color: #395d48;
  }
  .new-fetch .icon {
    width: 16px;
    height: 16px;
  }
  .sidebar-button {
    font-size: 0;
    padding: 8px;
    width: auto;
    gap: 3px;
  }
  .sidebar-button .icon {
    width: 17px;
    height: 17px;
  }
  .sidebar-button > span {
    font-size: 9px;
  }
  .recent-label,
  .recent-fetch,
  .sidebar-bottom {
    display: none;
  }
  .app-toolbar {
    padding: 0 16px;
    height: 44px;
    font-size: 9px;
  }
  .chat-area {
    padding: 20px 14px 0;
  }
  .user-message {
    font-size: 11px;
    gap: 7px;
  }
  .user-message > span:first-child {
    padding: 9px 11px;
    max-width: calc(100% - 35px);
  }
  .user-dot {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .agent-message {
    gap: 9px;
    margin-top: 23px;
  }
  .agent-message p {
    font-size: 12px;
    line-height: 1.7;
  }
  .agent-message p br {
    display: none;
  }
  .agent-label {
    font-size: 7px;
    letter-spacing: 0.5px;
  }
  .search-status {
    font-size: 8px;
    margin-left: 35px;
    gap: 5px;
  }
  .results-toolbar {
    margin-bottom: 12px;
  }
  .view-tabs button {
    font-size: 11px;
    padding: 6px 10px;
  }
  .crypto-toggle {
    font-size: 10px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }
  .product-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    min-height: 169px;
  }
  .product-visual {
    height: 100%;
    min-height: 169px;
  }
  .product-photo {
    background-size: 300% auto;
  }
  .product-info {
    padding: 13px;
  }
  .product-category {
    font-size: 8px;
  }
  .product-info h4 {
    font-size: 17px;
    margin-top: 5px;
  }
  .product-price {
    font-size: 18px;
  }
  .product-price > span {
    font-size: 8px;
  }
  .product-meta {
    font-size: 10px;
    margin: 6px 0 10px;
  }
  .product-action {
    font-size: 11px;
    padding: 7px 9px;
  }
  .product-badge {
    font-size: 7px;
    left: 6px;
    top: 7px;
    padding: 3px 4px;
  }
  .save-button {
    right: 7px;
    top: auto;
    bottom: 8px;
    width: 27px;
    height: 27px;
  }
  .product-badge .icon {
    width: 8px;
    height: 8px;
  }
  .agent-tip {
    font-size: 10px;
    align-items: flex-start;
    margin: 17px 0;
  }
  .agent-tip .icon {
    margin-top: 2px;
  }
  .prompt-area {
    padding: 0 14px 13px;
  }
  .prompt-suggestions {
    gap: 6px;
  }
  .prompt-suggestions button {
    font-size: 8px;
    padding: 6px;
    gap: 4px;
  }
  .prompt-suggestions .icon {
    width: 9px;
  }
  .prompt-input,
  #demo-input {
    font-size: 12px;
  }
  .preview-caption {
    font-size: 8px;
    margin-top: 9px;
  }
  .agent-under {
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    text-align: center;
    margin-top: 17px;
  }
  .alternate-panel {
    padding: 30px 18px;
    min-height: 540px;
  }
  .alternate-panel h3 {
    font-size: 29px;
  }
  .wallet-summary {
    gap: 10px;
  }
  .wallet-summary > div {
    padding: 17px;
  }
  .wallet-summary strong {
    font-size: 31px;
  }
  .topup-preview {
    gap: 14px;
  }
  .topup-preview p {
    font-size: 12px;
  }
  .wallet-note {
    font-size: 12px;
  }
  .empty-state {
    padding: 35px 0;
  }
  .empty-state h4 {
    font-size: 22px;
  }
  .comparison th,
  .comparison td {
    font-size: 10px;
    padding: 12px 8px;
  }
  .dialog-top .eyebrow {
    font-size: 10px;
  }
  .dialog-price h3 {
    font-size: 23px;
  }
  .dialog-product-image {
    height: 180px;
  }
  .checkout-route {
    font-size: 10px;
  }
  .dialog-description {
    font-size: 13px;
  }
  .dialog-notice {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* The story beyond the agent */
.how-section {
  padding-top: 15px;
  padding-bottom: 90px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  margin-top: 58px;
}
.step {
  min-width: 0;
  padding: 0 31px 0 0;
  border-right: 1px solid #ffffff12;
}
.step:last-child {
  border: 0;
  padding-right: 0;
}
.step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 27px;
}
.step-top > span {
  font: 14px var(--display);
  color: #72877d;
}
.step-top .icon {
  width: 24px;
  height: 24px;
  color: var(--mint);
}
.step h3 {
  font-size: 26px;
  letter-spacing: -1px;
}
.step > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
  min-height: 78px;
}
.step-visual {
  height: 142px;
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-chat > span:first-child {
  background: #18242c;
  border: 1px solid #2f3f48;
  border-radius: 10px 10px 3px 10px;
  padding: 12px 15px;
  font-size: 12px;
  color: #c5cfd4;
  margin-left: 28px;
  line-height: 1.7;
  transform: rotate(-3deg);
}
.small-agent {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #aed3c4;
  font-size: 12px;
  margin-top: 20px;
}
.small-agent > .icon {
  background: var(--mint);
  color: #113625;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  padding: 5px;
}
.small-agent > span {
  margin-left: auto;
  color: #506964;
}
.step-shortlist {
  gap: 14px;
}
.step-shortlist > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #a9b8bc;
}
.step-shortlist strong {
  font-size: 10px;
  font-weight: 400;
  color: #809c8d;
  margin-left: auto;
}
.shortlist-check {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #173426;
  color: var(--mint);
}
.shortlist-check > .icon {
  width: 12px;
  height: 12px;
}
.step-shortlist > div > .icon {
  width: 17px;
  height: 17px;
  color: var(--mint);
  margin-left: auto;
  transform: rotate(12deg);
}
.step-reward {
  background: linear-gradient(120deg, #1a2e24, #101d20);
  border: 1px solid #345343;
  border-radius: 10px;
  transform: rotate(2deg);
  height: 122px;
  margin-top: 40px;
  padding: 18px;
}
.reward-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reward-line div > span {
  font-size: 10px;
  color: #839e94;
}
.reward-line strong {
  display: block;
  font: 21px var(--display);
  color: #d7ece0;
  margin-top: 2px;
}
.reward-line > .icon {
  width: 15px;
  height: 15px;
  color: var(--mint);
  margin-left: auto;
}
.reward-line-note {
  font-size: 7px;
  letter-spacing: 1px;
  color: #7e9e8b;
  border-top: 1px solid #33533e;
  margin-top: 17px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reward-line-note .icon {
  width: 11px;
  height: 11px;
}
.brand-ribbon {
  overflow: hidden;
  border-top: 1px solid #6be9b32d;
  border-bottom: 1px solid #6be9b32d;
  background: #12261f;
  padding: 18px 0;
}
.brand-ribbon > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  width: max-content;
  min-width: 100%;
  transform: translateX(-30px);
}
.brand-ribbon span {
  font: 16px var(--display);
  font-weight: 500;
  letter-spacing: 2px;
  color: #bce0cf;
}
.brand-ribbon .icon {
  width: 18px;
  height: 18px;
  color: var(--mint);
  transform: rotate(-15deg);
}
.finu-section {
  position: relative;
  overflow: hidden;
  padding-top: 118px;
  padding-bottom: 109px;
}
.finu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}
.finu-copy .eyebrow {
  margin-bottom: 20px;
}
.finu-copy h2 {
  font-size: 54px;
}
.finu-copy h2 span {
  color: var(--mint);
}
.finu-copy > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 24px;
}
.utility-list {
  display: grid;
  gap: 24px;
  margin-top: 33px;
}
.utility-list > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.utility-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--mint);
  border: 1px solid #30453b;
  border-radius: 9px;
  background: #142820;
  flex: none;
}
.utility-icon .icon {
  width: 16px;
  height: 16px;
}
.utility-list h3 {
  font-family: var(--font);
  font-weight: 550;
  font-size: 14px;
  line-height: 1.5;
}
.utility-list p {
  font-size: 12px;
  color: #7e949e;
  line-height: 1.8;
  margin-top: 4px;
  max-width: 340px;
}
.finu-link {
  margin: 28px 0 0 48px;
  color: var(--mint);
  font-size: 12px;
  gap: 12px;
}
.finu-link .icon {
  width: 15px;
  height: 15px;
}
.finu-visual {
  position: relative;
  padding-top: 28px;
  isolation: isolate;
}
.finu-aura {
  position: absolute;
  inset: -90px;
  background: radial-gradient(ellipse, #36bb8419, transparent 67%);
  z-index: -1;
}
.balance-card {
  background: linear-gradient(140deg, #1b302c, #121d25 60%);
  border: 1px solid #456657;
  border-radius: 16px;
  padding: 27px;
  box-shadow: 0 25px 65px #0003;
  transform: rotate(2deg);
}
.balance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #bacfc6;
}
.balance-header > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.balance-header > .icon {
  width: 17px;
  height: 17px;
  color: #6e9782;
}
.mini-token {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: #1b4833;
  border-radius: 50%;
}
.mini-token > .icon {
  width: 17px;
  height: 17px;
}
.balance-value {
  font: 64px var(--display);
  letter-spacing: -3px;
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.balance-value > span:first-child {
  font-size: 20px;
  letter-spacing: -0.6px;
  color: #92ad9e;
}
.balance-value > .balance-gain {
  margin-left: auto;
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 6px;
  letter-spacing: 0.8px;
  color: #82baa0;
  max-width: 85px;
  line-height: 1.5;
  text-align: center;
}
.balance-gain > .icon {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #2e5741;
  padding: 4px;
}
.balance-subtitle {
  font-size: 11px;
  color: #809f90;
  margin-top: 7px;
}
.balance-credit-row {
  margin-top: 27px;
  border-top: 1px solid #34473e;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.balance-credit-row > span {
  font-size: 9px;
  color: #849e94;
}
.balance-credit-row > strong {
  font: 18px var(--display);
  color: #cfebdc;
}
.balance-credit-row strong > span {
  font: 9px var(--font);
  color: #9abbab;
  margin-left: 4px;
}
.balance-button {
  display: flex;
  font-size: 12px;
  margin-top: 21px;
  padding: 12px 15px;
  border-radius: 7px;
  width: 100%;
  justify-content: space-between;
}
.balance-button > .icon {
  width: 16px;
  height: 16px;
}
.activity-header {
  display: flex;
  justify-content: space-between;
  margin-top: 27px;
  font-size: 7px;
  letter-spacing: 0.6px;
  color: #698276;
}
.activity-header > span:last-child {
  font-size: 6px;
  border: 1px solid #425346;
  padding: 1px 4px;
  border-radius: 3px;
}
.activity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.activity-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #2e473b;
  border-radius: 8px;
  background: #20332d;
}
.activity-icon > .icon {
  width: 15px;
  height: 15px;
  color: #83b19a;
}
.activity-row > div {
  font-size: 11px;
  color: #bccdc6;
}
.activity-row > div span {
  display: block;
  font-size: 8px;
  color: #6b897c;
  margin-top: 3px;
}
.activity-row strong {
  margin-left: auto;
  font: 12px var(--display);
  color: var(--mint);
  white-space: nowrap;
}
.activity-row strong.activity-spend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #9cb8a9;
}
.activity-spend > .icon {
  width: 12px;
  height: 12px;
}
.loop-flow {
  border: 1px solid #2b4435;
  background: #11251d;
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: center;
  border-radius: 9px;
  position: relative;
  margin: 26px 20px 0;
  padding: 17px 13px;
  transform: rotate(-2deg);
}
.loop-flow > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 1px;
  color: #abd4bb;
}
.loop-flow > span .icon {
  width: 13px;
  height: 13px;
  color: var(--mint);
}
.loop-flow > .icon {
  width: 13px;
  height: 13px;
  color: #56806a;
}
.loop-flow .flow-repeat {
  color: var(--mint);
}
.finu-note {
  font-size: 9px;
  color: #6c887b;
  text-align: center;
  line-height: 1.8;
  margin-top: 18px;
}
.ownership-section {
  border-block: 1px solid #26332e;
  background: #0f1b1a;
}
.ownership-inner {
  display: flex;
  align-items: center;
  gap: 23px;
  padding: 31px 0;
}
.ownership-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #345746;
  background: #152f24;
  border-radius: 13px;
  color: var(--mint);
}
.ownership-icon > .icon {
  width: 24px;
  height: 24px;
}
.ownership-inner h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
}
.ownership-inner p {
  font-size: 12px;
  color: #879d95;
  margin-top: 7px;
}
.ownership-tag {
  margin-left: auto;
  white-space: nowrap;
  font-size: 9px;
  letter-spacing: 1.1px;
  color: #779b87;
  padding: 8px 10px;
  border: 1px solid #2a4537;
  border-radius: 5px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 95px;
}
.faq-grid .eyebrow {
  margin-bottom: 20px;
}
.faq-grid > div > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 240px;
  line-height: 1.8;
}
.faq-list {
  border-top: 1px solid #2e3c3c;
}
.faq-list details {
  border-bottom: 1px solid #263635;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  padding: 23px 0;
  color: #cedbd7;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:hover {
  color: var(--mint);
}
.faq-plus {
  width: 15px;
  height: 15px;
  position: relative;
  flex: none;
}
.faq-plus:before,
.faq-plus:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1px;
  background: #799388;
  top: 7px;
  left: 2px;
  transition: transform 0.2s;
}
.faq-plus:after {
  transform: rotate(90deg);
}
.faq-list details[open] .faq-plus:after {
  transform: rotate(0);
}
.faq-list details[open] summary {
  color: var(--mint);
}
.faq-list details > p {
  font-size: 13px;
  color: #8fa59c;
  line-height: 1.9;
  margin: 0 28px 23px 0;
  max-width: 490px;
}
.final-cta {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #263b31;
  background:
    radial-gradient(ellipse at 70% 100%, #24483688, transparent 65%), #101f1b;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  min-height: 377px;
  gap: 40px;
}
.cta-inner > div:first-child {
  padding: 58px 0;
  z-index: 2;
}
.cta-inner h2 {
  font-size: 49px;
  letter-spacing: -2px;
  margin-top: 20px;
}
.cta-inner h2 span {
  color: var(--mint);
}
.cta-inner .button {
  font-size: 14px;
  padding: 14px 20px;
  margin-top: 28px;
}
.cta-mascot-wrap {
  height: 100%;
  position: relative;
}
.cta-mascot-wrap > img {
  width: 360px;
  height: 360px;
  object-fit: contain;
  max-width: none;
  position: absolute;
  bottom: -52px;
  left: 30px;
  transform: rotate(-8deg);
}
.cta-orbit {
  position: absolute;
  border: 1px solid #7ad8a127;
  border-radius: 50%;
  width: 360px;
  height: 360px;
  bottom: -115px;
  left: 23px;
  box-shadow:
    0 0 0 48px #72e0a508,
    0 0 0 96px #72e0a504;
}
.cta-speech {
  position: absolute;
  right: -4px;
  top: 85px;
  transform: rotate(8deg);
  background: var(--mint);
  color: #153c29;
  border-radius: 9px 9px 9px 0;
  font-size: 12px;
  padding: 11px 16px;
  z-index: 2;
}
.site-footer {
  padding: 41px 0 25px;
  background: #080e15;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 27px;
}
.footer-top .brand {
  font-size: 25px;
}
.footer-top .brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}
.footer-top .brand-mark .icon {
  width: 20px;
  height: 20px;
}
.footer-top > span {
  font-size: 11px;
  color: #69817c;
}
.footer-top nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  color: #9ab0a8;
}
.footer-top nav a {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer-top nav a:hover {
  color: var(--mint);
}
.footer-top nav .icon {
  width: 13px;
  height: 13px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #24352e;
  margin-top: 34px;
  padding-top: 22px;
  font-size: 10px;
  color: #647d71;
}
.footer-separator {
  margin: 0 10px;
  color: #34493c;
}
/* Comfortable type for the interactive product preview. */
.eyebrow {
  font-size: 12px;
}
.hero-bottom > span {
  font-size: 10px;
}
.hero-bottom > div {
  font-size: 14px;
}
.hero-note {
  font-size: 12px;
}
.new-fetch,
.sidebar-button {
  font-size: 13px;
}
.recent-fetch {
  font-size: 12px;
}
.recent-label {
  font-size: 10px;
  letter-spacing: 1px;
}
.profile {
  font-size: 11px;
}
.profile div > span {
  font-size: 9px;
}
.credits-card > span,
.credits-card button {
  font-size: 12px;
}
.credits-card strong small {
  font-size: 12px;
}
.app-toolbar {
  font-size: 12px;
}
.preview-badge {
  font-size: 10px;
}
.user-message,
.agent-message p {
  font-size: 14px;
}
.agent-message strong {
  font-size: 14px;
}
.agent-label {
  font-size: 10px;
}
.search-status {
  font-size: 12px;
}
.view-tabs button,
.crypto-toggle {
  font-size: 12px;
}
.product-category {
  font-size: 10px;
}
.product-badge {
  font-size: 9px;
}
.product-info h4 {
  font-size: 17px;
}
.product-price > span {
  font-size: 10px;
}
.product-meta,
.product-action {
  font-size: 12px;
}
.product-visual {
  height: 164px;
}
.product-price {
  font-size: 19px;
}
.agent-tip,
.prompt-suggestions button {
  font-size: 12px;
}
.prompt-suggestions .icon {
  width: 12px;
  height: 12px;
}
.prompt-input,
#demo-input {
  font-size: 14px;
}
.preview-caption {
  font-size: 11px;
}
.agent-under {
  font-size: 12px;
}
.agent-message {
  margin-top: 27px;
}
.chat-area {
  padding-top: 29px;
}
.agent-tip {
  margin-top: 19px;
  margin-bottom: 24px;
}
.prompt-area {
  padding-bottom: 18px;
}
.step > p,
.finu-copy > p,
.faq-list details > p {
  font-size: 15px;
}
.step-chat > span:first-child,
.small-agent,
.step-shortlist > div {
  font-size: 14px;
}
.step-shortlist strong {
  font-size: 12px;
}
.utility-list h3 {
  font-size: 16px;
}
.utility-list p {
  font-size: 14px;
}
.finu-link {
  font-size: 14px;
}
.balance-header {
  font-size: 14px;
}
.balance-subtitle {
  font-size: 12px;
}
.balance-credit-row > span {
  font-size: 12px;
}
.balance-credit-row strong > span {
  font-size: 11px;
}
.balance-button {
  font-size: 14px;
}
.activity-header {
  font-size: 9px;
}
.activity-header > span:last-child {
  font-size: 8px;
}
.activity-row > div {
  font-size: 13px;
}
.activity-row > div span {
  font-size: 11px;
}
.activity-row strong {
  font-size: 14px;
}
.activity-row strong.activity-spend {
  font-size: 12px;
}
.loop-flow > span {
  font-size: 11px;
}
.finu-note {
  font-size: 12px;
}
.ownership-inner p {
  font-size: 14px;
}
.ownership-tag {
  font-size: 11px;
}
.footer-top > span {
  font-size: 13px;
}
.footer-top nav {
  font-size: 14px;
}
.footer-bottom {
  font-size: 12px;
}
.comparison table {
  font-size: 13px;
}
.comparison .table-save {
  font-size: 12px;
}
.hero-mascot {
  padding: 8px;
}
@media (max-width: 1100px) {
  .steps-grid {
    gap: 25px;
  }
  .step {
    padding-right: 23px;
  }
  .step h3 {
    font-size: 24px;
  }
  .step > p {
    min-height: 100px;
  }
  .step-shortlist > div {
    font-size: 12px;
  }
  .finu-grid {
    gap: 52px;
  }
  .finu-copy h2 {
    font-size: 47px;
  }
  .balance-card {
    padding: 23px;
  }
  .balance-credit-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .loop-flow {
    gap: 14px;
    margin-inline: 10px;
  }
  .ownership-tag {
    font-size: 9px;
  }
  .faq-grid {
    gap: 65px;
  }
  .cta-inner h2 {
    font-size: 44px;
  }
  .cta-mascot-wrap > img {
    left: 0;
  }
  .cta-speech {
    right: 0;
  }
  .product-info h4 {
    font-size: 15px;
  }
  .product-price > span {
    font-size: 8px;
  }
  .product-visual {
    height: 138px;
  }
  .product-category {
    font-size: 9px;
  }
  .product-meta,
  .product-action {
    font-size: 11px;
  }
  .recent-fetch {
    font-size: 10px;
  }
  .agent-label {
    font-size: 9px;
  }
  .search-status {
    font-size: 11px;
  }
  .prompt-suggestions button {
    font-size: 10px;
  }
  .hero-bottom > div {
    font-size: 12px;
  }
  .activity-row > div {
    font-size: 12px;
  }
  .activity-row > div span {
    font-size: 10px;
  }
  .activity-row strong {
    font-size: 12px;
  }
}
@media (max-width: 800px) {
  .hero-copy > .eyebrow {
    font-size: 9px;
    letter-spacing: 1.1px;
  }
  .hero-bottom > div {
    font-size: 11px;
  }
  .hero-bottom > span {
    font-size: 9px;
  }
  .new-fetch,
  .sidebar-button {
    font-size: 11px;
  }
  .recent-label {
    font-size: 8px;
  }
  .recent-fetch {
    font-size: 9px;
  }
  .credits-card > span,
  .credits-card button {
    font-size: 10px;
  }
  .credits-card strong small {
    font-size: 10px;
  }
  .profile {
    font-size: 9px;
  }
  .profile div > span {
    font-size: 7px;
  }
  .product-info h4 {
    font-size: 13px;
  }
  .product-price {
    font-size: 16px;
  }
  .product-price > span {
    font-size: 7px;
  }
  .product-meta,
  .product-action {
    font-size: 10px;
  }
  .product-visual {
    height: 116px;
  }
  .product-badge {
    font-size: 7px;
  }
  .product-category {
    font-size: 8px;
  }
  .app-toolbar {
    font-size: 10px;
  }
  .preview-badge {
    font-size: 8px;
  }
  .agent-message p {
    font-size: 12px;
  }
  .agent-message strong {
    font-size: 13px;
  }
  .user-message {
    font-size: 12px;
  }
  .agent-label {
    font-size: 8px;
  }
  .search-status {
    font-size: 10px;
  }
  .agent-tip {
    font-size: 10px;
  }
  .prompt-suggestions button {
    font-size: 9px;
  }
  .preview-caption {
    font-size: 9px;
  }
  .agent-under {
    font-size: 10px;
  }
  .steps-grid {
    gap: 20px;
  }
  .step {
    padding-right: 19px;
  }
  .step h3 {
    font-size: 21px;
  }
  .step > p {
    font-size: 13px;
    min-height: 90px;
  }
  .step-visual {
    height: 134px;
  }
  .step-chat > span:first-child {
    font-size: 10px;
    padding: 11px;
    margin-left: 8px;
  }
  .small-agent {
    font-size: 11px;
  }
  .step-shortlist > div {
    font-size: 10px;
    gap: 6px;
  }
  .step-shortlist strong {
    font-size: 8px;
  }
  .shortlist-check {
    width: 18px;
    height: 18px;
  }
  .step-reward {
    padding: 12px;
    height: 111px;
    margin-top: 40px;
  }
  .reward-line {
    gap: 8px;
  }
  .reward-line .reward-coin {
    width: 29px;
    height: 29px;
  }
  .reward-line .reward-coin > .icon {
    width: 17px;
    height: 17px;
  }
  .reward-line div > span {
    font-size: 8px;
  }
  .reward-line strong {
    font-size: 17px;
  }
  .reward-line-note {
    font-size: 6px;
  }
  .brand-ribbon span {
    font-size: 13px;
  }
  .brand-ribbon > div {
    gap: 28px;
  }
  .finu-grid {
    gap: 35px;
  }
  .finu-copy h2 {
    font-size: 39px;
  }
  .finu-copy > p {
    font-size: 13px;
  }
  .utility-list {
    gap: 21px;
  }
  .utility-list > div {
    gap: 11px;
  }
  .utility-list h3 {
    font-size: 14px;
  }
  .utility-list p {
    font-size: 12px;
  }
  .utility-icon {
    width: 30px;
    height: 30px;
  }
  .finu-link {
    margin-left: 41px;
    font-size: 12px;
  }
  .balance-card {
    padding: 20px;
  }
  .balance-header {
    font-size: 12px;
  }
  .balance-value {
    font-size: 52px;
  }
  .balance-value > .balance-gain {
    font-size: 5px;
  }
  .balance-subtitle {
    font-size: 10px;
  }
  .balance-credit-row > span {
    font-size: 11px;
  }
  .balance-button {
    font-size: 11px;
    padding: 11px;
    gap: 7px;
  }
  .activity-header {
    font-size: 7px;
  }
  .activity-row {
    gap: 7px;
  }
  .activity-row > div {
    font-size: 10px;
  }
  .activity-row > div span {
    font-size: 8px;
  }
  .activity-row strong {
    font-size: 10px;
  }
  .activity-row strong.activity-spend {
    font-size: 9px;
  }
  .activity-icon {
    width: 26px;
    height: 26px;
    flex: none;
  }
  .loop-flow {
    gap: 10px;
    margin-inline: 0;
  }
  .loop-flow > span {
    font-size: 9px;
    gap: 5px;
  }
  .loop-flow .flow-repeat {
    display: none;
  }
  .finu-note {
    font-size: 10px;
  }
  .ownership-inner {
    gap: 16px;
  }
  .ownership-inner h3 {
    font-size: 19px;
  }
  .ownership-inner p {
    font-size: 12px;
  }
  .ownership-tag {
    display: none;
  }
  .faq-grid {
    gap: 45px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details > p {
    font-size: 13px;
  }
  .cta-inner {
    min-height: 350px;
    gap: 25px;
  }
  .cta-inner h2 {
    font-size: 37px;
  }
  .cta-inner .eyebrow {
    font-size: 9px;
  }
  .cta-mascot-wrap > img {
    width: 290px;
    height: 290px;
    bottom: -38px;
    left: -15px;
  }
  .cta-speech {
    right: -7px;
    font-size: 10px;
    padding: 9px 12px;
    top: 90px;
  }
  .cta-inner .button {
    font-size: 12px;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-top > span {
    font-size: 10px;
  }
  .footer-top nav {
    font-size: 12px;
    gap: 20px;
  }
  .footer-bottom {
    font-size: 10px;
  }
  .comparison table {
    font-size: 11px;
  }
}
@media (max-width: 620px) {
  .hero-bottom > div {
    font-size: 11px;
  }
  .hero-bottom > span {
    font-size: 9px;
  }
  .hero-copy > .eyebrow {
    font-size: 9px;
  }
  .hero-note {
    font-size: 11px;
  }
  .new-fetch,
  .sidebar-button {
    font-size: 0;
  }
  .product-visual {
    height: 100%;
    min-height: 184px;
  }
  .product-info h4 {
    font-size: 18px;
  }
  .product-category {
    font-size: 10px;
  }
  .product-price {
    font-size: 20px;
  }
  .product-price > span {
    font-size: 9px;
  }
  .product-meta,
  .product-action {
    font-size: 12px;
  }
  .product-info {
    padding: 15px 12px;
  }
  .product-action {
    padding: 8px 9px;
  }
  .product-badge {
    font-size: 8px;
  }
  .agent-message p {
    font-size: 13px;
  }
  .agent-message strong {
    font-size: 14px;
  }
  .agent-label {
    font-size: 8px;
  }
  .user-message {
    font-size: 12px;
  }
  .agent-tip {
    font-size: 12px;
  }
  .search-status {
    font-size: 10px;
    flex-wrap: wrap;
    gap: 5px;
  }
  .view-tabs button,
  .crypto-toggle {
    font-size: 12px;
  }
  .prompt-suggestions button {
    font-size: 10px;
  }
  .prompt-suggestions .icon {
    width: 10px;
    height: 10px;
  }
  .prompt-suggestions {
    gap: 6px;
  }
  .preview-caption {
    font-size: 10px;
  }
  .agent-under {
    font-size: 11px;
  }
  .app-toolbar {
    font-size: 10px;
  }
  .preview-badge {
    font-size: 8px;
  }
  .steps-grid {
    display: block;
    margin-top: 40px;
  }
  .step {
    border-right: 0;
    padding: 0 0 34px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .step:last-child {
    padding: 0;
    margin-bottom: 0;
  }
  .step-top {
    grid-column: 1/-1;
    margin-bottom: 20px;
  }
  .step-top > span {
    font-size: 14px;
  }
  .step h3 {
    font-size: 23px;
    grid-column: 1/-1;
  }
  .step > p {
    font-size: 14px;
    min-height: 0;
    margin-top: 15px;
  }
  .step-visual {
    margin-top: 10px;
    height: 150px;
    align-self: center;
  }
  .step-chat > span:first-child {
    font-size: 10px;
    padding: 10px;
    margin-left: 0;
  }
  .step-chat > span:first-child br {
    display: none;
  }
  .small-agent {
    font-size: 11px;
    gap: 6px;
    margin-top: 13px;
  }
  .small-agent > .icon {
    width: 23px;
    height: 23px;
  }
  .step-shortlist > div {
    font-size: 10px;
  }
  .step-shortlist strong {
    display: none;
  }
  .step-reward {
    padding: 13px;
    height: 125px;
    margin-top: 15px;
  }
  .reward-line {
    gap: 9px;
    flex-wrap: wrap;
  }
  .reward-line > .icon {
    display: none;
  }
  .reward-line .reward-coin {
    width: 25px;
    height: 25px;
  }
  .reward-line strong {
    font-size: 16px;
  }
  .reward-line div > span {
    font-size: 7px;
  }
  .reward-line-note {
    font-size: 6px;
    gap: 10px;
    line-height: 1.7;
    margin-top: 12px;
  }
  .how-section {
    padding-top: 10px;
    padding-bottom: 60px;
  }
  .brand-ribbon {
    padding: 16px 0;
  }
  .brand-ribbon > div {
    gap: 26px;
  }
  .brand-ribbon span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .finu-section {
    padding-top: 64px;
    padding-bottom: 56px;
  }
  .finu-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .finu-copy h2 {
    font-size: 42px;
  }
  .finu-copy > p {
    font-size: 15px;
    margin-top: 20px;
  }
  .utility-list {
    gap: 23px;
    margin-top: 28px;
  }
  .utility-list > div {
    gap: 13px;
  }
  .utility-icon {
    width: 35px;
    height: 35px;
  }
  .utility-list h3 {
    font-size: 15px;
  }
  .utility-list p {
    font-size: 13px;
  }
  .finu-link {
    font-size: 13px;
    margin-left: 48px;
  }
  .balance-card {
    padding: 24px;
    transform: rotate(1deg);
  }
  .balance-header {
    font-size: 14px;
  }
  .balance-value {
    font-size: 62px;
  }
  .balance-value > .balance-gain {
    font-size: 6px;
  }
  .balance-subtitle {
    font-size: 12px;
  }
  .balance-credit-row {
    flex-direction: row;
    align-items: center;
  }
  .balance-credit-row > span {
    font-size: 10px;
    max-width: 110px;
  }
  .balance-credit-row strong > span {
    font-size: 10px;
  }
  .balance-button {
    font-size: 13px;
    padding: 13px;
  }
  .activity-header {
    font-size: 8px;
  }
  .activity-row {
    gap: 10px;
  }
  .activity-icon {
    width: 29px;
    height: 29px;
  }
  .activity-row > div {
    font-size: 12px;
  }
  .activity-row > div span {
    font-size: 10px;
  }
  .activity-row strong {
    font-size: 13px;
  }
  .activity-row strong.activity-spend {
    font-size: 11px;
  }
  .loop-flow {
    margin: 25px 12px 0;
    gap: 17px;
  }
  .loop-flow > span {
    font-size: 10px;
  }
  .finu-note {
    font-size: 11px;
  }
  .ownership-inner {
    gap: 15px;
    padding: 24px 0;
  }
  .ownership-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex: none;
  }
  .ownership-icon > .icon {
    width: 21px;
    height: 21px;
  }
  .ownership-inner h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .ownership-inner p {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 5px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-grid > div > p {
    font-size: 14px;
    max-width: none;
    margin-top: 18px;
  }
  .faq-list summary {
    font-size: 15px;
    padding: 21px 0;
    gap: 15px;
  }
  .faq-list details > p {
    font-size: 14px;
    margin: 0 12px 22px 0;
    line-height: 1.8;
  }
  .final-cta {
    padding-top: 5px;
  }
  .cta-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    min-height: 0;
  }
  .cta-inner > div:first-child {
    padding: 46px 0 0;
  }
  .cta-inner .eyebrow {
    justify-content: center;
    font-size: 9px;
  }
  .cta-inner h2 {
    font-size: 39px;
    letter-spacing: -1.8px;
    margin-top: 20px;
  }
  .cta-inner .button {
    font-size: 13px;
    margin-top: 27px;
  }
  .cta-mascot-wrap {
    width: 300px;
    height: 260px;
    margin-top: 10px;
  }
  .cta-mascot-wrap > img {
    width: 280px;
    height: 280px;
    left: 13px;
    bottom: -45px;
  }
  .cta-orbit {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 25px;
    box-shadow:
      0 0 0 40px #72e0a508,
      0 0 0 80px #72e0a504;
  }
  .cta-speech {
    top: 37px;
    right: -7px;
    font-size: 10px;
  }
  .site-footer {
    padding: 31px 0 22px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .footer-top .brand {
    font-size: 24px;
  }
  .footer-top > span {
    margin-left: auto;
    max-width: 135px;
    text-align: right;
    font-size: 11px;
  }
  .footer-top nav {
    margin: 15px 0 0;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    gap: 25px;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    margin-top: 26px;
    padding-top: 20px;
  }
  .comparison th,
  .comparison td {
    font-size: 11px;
  }
  .comparison .table-save {
    font-size: 10px;
  }
}
@media (min-width: 621px) and (max-width: 760px) {
  .finu-grid {
    gap: 25px;
  }
  .balance-card {
    padding: 17px;
  }
  .finu-copy h2 {
    font-size: 36px;
  }
  .loop-flow {
    gap: 9px;
  }
  .agent-window {
    grid-template-columns: 138px 1fr;
  }
  .app-toolbar {
    gap: 6px;
  }
  .preview-badge {
    font-size: 7px;
  }
}
/* Keep each full product in frame within its contact-sheet column. */
.product-visual .product-photo,
.dialog-product-image .product-photo {
  inset: 0 25%;
}
@media (max-width: 620px) {
  .product-visual .product-photo {
    inset: 0;
  }
}

/* Legible product controls and generous touch targets. */
.section-heading > p,
.step > p,
.finu-copy > p,
.faq-grid > div > p,
.faq-list details > p {
  font-size: 16px;
}
.product-action {
  min-height: 36px;
}
.view-tabs button {
  min-height: 34px;
}
.save-button {
  width: 32px;
  height: 32px;
}
@media (min-width: 901px) {
  .new-fetch,
  .sidebar-button,
  .view-tabs button,
  .product-action {
    font-size: 14px;
  }
  .product-meta,
  .product-category,
  .product-price > span,
  .preview-badge,
  .recent-label {
    font-size: 12px;
  }
  .recent-fetch,
  .prompt-suggestions button {
    font-size: 12px;
  }
  .product-visual {
    height: 180px;
  }
}
@media (max-width: 620px) {
  .user-message,
  .agent-message p,
  .view-tabs button,
  .product-action,
  .prompt-input,
  #demo-input {
    font-size: 14px;
  }
  .product-category,
  .product-meta,
  .product-price > span,
  .prompt-suggestions button,
  .preview-caption {
    font-size: 12px;
  }
  .prompt-suggestions button {
    padding: 8px;
  }
  .preview-badge {
    font-size: 9px;
  }
  .product-card {
    grid-template-columns: 35% 1fr;
  }
  .product-info h4 {
    font-size: 17px;
  }
  .step {
    grid-template-columns: 1.1fr 1fr;
    gap: 0 15px;
  }
  .step > p {
    font-size: 15px;
  }
  .agent-under,
  .finu-note {
    font-size: 12px;
  }
}

/* ---------- Live agent: transcript, cards, wallet ---------- */
.agent-turn + .user-message {
  margin-top: 22px;
}
.agent-body {
  min-width: 0;
  flex: 1;
}
.agent-text p + p {
  margin-top: 8px;
}
.agent-text .bullet {
  color: var(--mint);
}
.agent-text.msg-error p:last-child {
  color: #f0b3a0;
}
.thinking-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 22px;
}
.thinking-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.35;
  animation: dot 1.2s infinite ease-in-out;
}
.thinking-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.thinking-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
.agent-status {
  margin-top: -6px;
}
.agent-status .icon {
  animation: spin 1.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.agent-shortlists {
  margin-left: 38px;
}
.shortlist {
  margin-bottom: 26px;
}
.shortlist .search-status {
  margin-left: 0;
  margin-bottom: 14px;
}
.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e9edef;
}
.product-img-empty {
  display: grid;
  place-items: center;
  color: #8b9aa3;
}
.product-img-empty .icon {
  width: 34px;
  height: 34px;
}
.product-why {
  font-size: 11px;
  color: #a9b7bf;
  line-height: 1.55;
  margin: 0 0 12px;
}
.product-actions {
  display: flex;
  gap: 6px;
}
.product-actions .product-action {
  width: auto;
  flex: 1;
  text-decoration: none;
  gap: 6px;
}
.product-action.buy {
  background: #22423a;
  border-color: #3c6b56;
  color: #baf5dc;
}
.product-action.buy:hover {
  background: var(--mint);
  color: #123526;
}
.product-action.ghost {
  flex: 0 0 auto;
  justify-content: center;
}
.product-meta .icon {
  width: 11px;
  height: 11px;
  color: var(--mint);
}
.empty-inline {
  grid-column: 1 / -1;
  padding: 26px 16px;
  border: 1px dashed #33453f;
  border-radius: 9px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.table-buy {
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.table-buy .icon {
  width: 11px;
  height: 11px;
}
.comparison td {
  vertical-align: top;
  max-width: 220px;
}
.recent-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.recent-fetch span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recent-fetch.active {
  background: #ffffff0a;
  color: var(--text);
}
.credits-cta {
  margin: 0 28px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #4a5f3a;
  background: #1c2a1f;
  border-radius: 9px;
  font-size: 12px;
}
.credits-cta > .icon {
  color: var(--mint);
}
.credits-cta .button {
  margin-left: auto;
}
.prompt-form button:disabled,
#demo-form button:disabled {
  opacity: 0.5;
}
.prompt-input:disabled,
#demo-input:disabled {
  opacity: 0.6;
}
.wallet-connect {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.wallet-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid #35473f;
  border-radius: 8px;
  background: #18282c;
  font-size: 13px;
}
.wallet-chip small {
  color: var(--muted);
  font-size: 11px;
}
.wallet-chip .icon {
  width: 15px;
  height: 15px;
  color: var(--mint);
}
.wallet-balance,
.wallet-hint {
  font-size: 12px;
  color: var(--muted);
}
.wallet-connect .text-link {
  font-size: 12px;
  color: var(--muted);
  background: none;
}
.topup-preview > div {
  flex: 1;
  min-width: 0;
}
.topup-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.topup-form input {
  width: 110px;
  padding: 9px 11px;
  border: 1px solid #435c52;
  border-radius: 8px;
  background: #19262e;
  color: var(--text);
  font-size: 14px;
}
.topup-form input:focus {
  outline: none;
  border-color: var(--mint);
}
#topup-quote {
  font-family: var(--display);
  font-size: 14px;
  color: var(--mint);
}
.wallet-fine {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}
.rewards-list {
  margin-bottom: 22px;
}
.reward-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.reward-row > div {
  flex: 1;
  min-width: 0;
}
.reward-row > div span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.reward-row strong {
  font-family: var(--display);
  color: var(--mint);
  white-space: nowrap;
}
.reward-row .button {
  padding: 8px 12px;
  font-size: 12px;
}
.wallet-panel .activity-header,
#wallet-panel .activity-header {
  margin-top: 8px;
}
.button-ghost {
  background: none;
  border: 1px solid #3c5148;
  color: var(--text);
}
.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.dialog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dialog-why {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: #c9d6d3;
  margin: 12px 0 0;
}
.dialog-why .icon {
  color: var(--mint);
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}
.dialog-options {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.dialog-features {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: #b3c0c6;
  line-height: 1.7;
}
.dialog-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dialog-actions .button {
  flex: 1;
  justify-content: center;
}
@media (max-width: 800px) {
  .agent-shortlists {
    margin-left: 0;
  }
  .credits-cta {
    margin: 0 16px 12px;
    flex-wrap: wrap;
  }
  .product-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 620px) {
  .product-why {
    display: none;
  }
  .topup-form input {
    width: 90px;
  }
}
.product-action.buy .label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.product-img,
.dialog-product-image img {
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
}
.agent-text em {
  color: var(--muted);
}

/* ---------- App page (app.fetchinu.fun) ---------- */
.app-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
  background: #080e15f0;
  backdrop-filter: blur(12px);
}
.app-header .brand {
  font-size: 24px;
}
.app-header .brand-mark {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}
.app-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #9ab0a8;
}
.app-header nav a:hover {
  color: var(--mint);
}
.app-main {
  flex: 1;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
}
.app-page .agent-window {
  flex: 1;
  height: calc(100vh - 140px);
  min-height: 540px;
}
.app-page .agent-main,
.demo-window .agent-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.app-page .app-panel,
.demo-window .app-panel {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.app-page .chat-area,
.demo-window .chat-area {
  flex: 1;
}
.app-page .prompt-area,
.demo-window .prompt-area {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: linear-gradient(#10182000, var(--panel) 28%);
}
.app-page .alternate-panel {
  min-height: 0;
}
.app-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #69817c;
}
.app-disclosure {
  color: #56706a;
}
.app-footer nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}
.app-footer nav a:hover {
  color: var(--mint);
}

/* ---------- Landing replay demo ---------- */
/* The stage is a fixed size: nothing the replay renders can change its width or height. */
.demo-window {
  position: relative;
  width: min(100%, 980px);
  height: 560px;
  margin-inline: auto;
  min-height: 0;
}
.demo-window .agent-main {
  height: auto;
  min-height: 0;
}
/* Compact the decorative sidebar so it fits the shorter stage. */
.demo-window .agent-sidebar {
  padding: 18px 14px 14px;
  overflow: hidden;
}
.demo-window .app-brand {
  margin-bottom: 10px;
}
.demo-window .recent-label {
  margin-top: 12px;
  margin-bottom: 6px;
}
.demo-window .sidebar-bottom {
  padding-top: 10px;
}
.demo-window .profile {
  margin-top: 14px;
}
/* Reserve the scrollbar track so growing content never narrows the column. */
.demo-window .app-panel,
.app-page .app-panel {
  scrollbar-gutter: stable;
}
.demo-window .agent-sidebar,
.demo-window .agent-main {
  pointer-events: none;
  user-select: none;
}
.demo-window .product-card {
  animation: cardIn 0.45s ease-out both;
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.demo-window .product-card.demo-hover {
  border-color: #577769;
  transform: translateY(-3px);
}
.demo-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 40;
  width: 32px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  transform: translate(58%, 58%);
  transition:
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.3s;
  filter: drop-shadow(0 4px 8px #0009);
}
.demo-cursor.visible {
  opacity: 1;
}
.demo-cursor svg {
  width: 32px;
  height: 38px;
  fill: #fff;
  stroke: #0b1117;
  stroke-width: 1.3;
  stroke-linejoin: round;
  transition: transform 0.12s;
  transform-origin: 7px 4px;
}
.demo-cursor.pressed svg {
  transform: scale(0.82);
}
.demo-newtab {
  position: absolute;
  top: 72px;
  right: 22px;
  z-index: 28;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  padding: 11px 14px;
  border: 1px solid #3c6b56;
  border-radius: 10px;
  background: #141e27;
  box-shadow: 0 14px 34px #0008;
  font-size: 12px;
  color: #c9d6d3;
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.3s;
  pointer-events: none;
}
.demo-newtab .icon {
  color: var(--mint);
  flex: none;
}
.demo-newtab.visible {
  opacity: 1;
  transform: none;
}
.demo-toast {
  position: absolute;
  left: 50%;
  bottom: 110px;
  z-index: 28;
  padding: 9px 14px;
  border: 1px solid #3c6b56;
  border-radius: 8px;
  background: #1a2a24;
  color: #d8f5e8;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: 0.25s;
  pointer-events: none;
}
.demo-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.demo-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 31;
  box-shadow: 0 14px 34px #0009;
}
@media (max-width: 800px) {
  .demo-window {
    height: 560px;
  }
  .demo-newtab {
    top: auto;
    bottom: 76px;
    left: 14px;
    right: 14px;
    max-width: none;
  }
  .demo-cta {
    right: 12px;
    bottom: 12px;
  }
  .app-page .agent-window {
    height: auto;
    min-height: calc(100vh - 130px);
  }
  .app-header nav {
    display: none;
  }
}

/* ---------- Legal pages ---------- */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 90px;
  font-size: 15px;
  line-height: 1.75;
  color: #c3ced4;
  flex: 1;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 46px);
  letter-spacing: -1.6px;
  color: var(--text);
  margin-bottom: 8px;
}
.legal h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 40px 0 10px;
}
.legal h3 {
  font-size: 16px;
  color: var(--text);
  margin: 22px 0 6px;
}
.legal p,
.legal li {
  margin: 10px 0;
}
.legal ul {
  padding-left: 22px;
}
.legal a {
  color: var(--mint);
}
.legal .legal-meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}
.legal .legal-summary {
  border: 1px solid #33453f;
  border-radius: 12px;
  background: #101820;
  padding: 18px 20px;
  margin: 24px 0 8px;
}
.legal .legal-summary p:first-child {
  margin-top: 0;
}
.legal .legal-summary p:last-child {
  margin-bottom: 0;
}
.legal .legal-note {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Store carts (Cart MCP) ---------- */
.cart-card {
  border: 1px solid #3c6b56;
  border-radius: 12px;
  background: #13211f;
  padding: 16px;
  margin: 4px 0 26px;
}
.cart-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cart-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--mint);
  color: #123526;
  display: grid;
  place-items: center;
  flex: none;
}
.cart-head strong {
  display: block;
  font-size: 14px;
}
.cart-head span:not(.cart-icon) {
  font-size: 12px;
  color: var(--muted);
}
.cart-items {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #c9d6d3;
}
.cart-items img,
.cart-thumb {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  object-fit: contain;
  background: #e9edef;
  flex: none;
  display: grid;
  place-items: center;
  color: #8b9aa3;
}
.cart-items li span {
  flex: 1;
  min-width: 0;
}
.cart-items li strong {
  font-family: var(--display);
  white-space: nowrap;
}
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.cart-note {
  font-size: 11px;
  color: var(--muted);
  flex: 1;
  min-width: 180px;
}

.demo-cta {
  top: 11px;
  right: 16px;
  bottom: auto;
  padding: 9px 14px;
  font-size: 12px;
}
.demo-badge {
  margin-left: 10px;
}
@media (max-width: 800px) {
  .demo-cta {
    top: 9px;
    right: 10px;
    bottom: auto;
  }
}

/* Comparison tables lay out on a fixed grid so long titles can never widen them. */
.comparison table {
  table-layout: fixed;
}
.comparison th,
.comparison td {
  overflow-wrap: anywhere;
  max-width: none;
}
.comparison th:first-child,
.comparison td:first-child {
  width: 20%;
}

/* ---------- Vault page ---------- */
.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 26px 0 8px;
}
.vault-card {
  border: 1px solid #33453f;
  border-radius: 12px;
  background: #101820;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vault-card span {
  font-size: 12px;
  color: var(--muted);
}
.vault-card strong {
  font: 28px var(--display);
  color: var(--mint);
  letter-spacing: -1px;
}
.vault-card small {
  font-size: 12px;
  color: #7b8f89;
}
.vault-card small a {
  color: var(--mint);
}
.split-bar {
  display: flex;
  height: 14px;
  border-radius: 7px;
  overflow: hidden;
  margin: 16px 0 14px;
  border: 1px solid #26332f;
}
.split-reserve {
  background: var(--mint);
}
.split-buyback {
  background: #3f9c78;
}
.split-cashback {
  background: #2c6b55;
}
.split-ops {
  background: #24343a;
}
.split-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 18px;
}
.split-legend li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  margin: 0;
}
.split-legend i {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  flex: none;
}
.split-legend strong {
  margin-left: auto;
  font-family: var(--display);
  color: var(--text);
}
.vault-purchases table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 8px;
}
.vault-purchases th,
.vault-purchases td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}
.vault-purchases th {
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
}
.vault-purchases a {
  color: var(--mint);
}

/* ---------- Own key + MCP ---------- */
.key-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 4px 0 6px;
}
.key-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #35473f;
  border-radius: 8px;
  background: #18282c;
  font-size: 13px;
  font-family: var(--display);
}
.key-chip .icon {
  width: 15px;
  height: 15px;
  color: var(--mint);
}
.key-row .text-link {
  font-size: 12px;
  color: var(--muted);
  background: none;
}
.topup-form input[type="password"] {
  width: min(320px, 100%);
  font-family: var(--display);
  letter-spacing: 1px;
}
.mcp-snippet {
  margin: 6px 0 8px;
  padding: 12px 14px;
  border: 1px solid #33453f;
  border-radius: 9px;
  background: #0d141c;
  overflow-x: auto;
}
.mcp-snippet code {
  font-size: 12px;
  color: #bfe9d6;
  white-space: pre;
}
.link-button {
  display: inline-flex;
  width: auto;
  padding: 0;
  font-size: 12px;
  color: var(--muted);
  background: none;
}
.link-button:hover {
  color: var(--mint);
}
