* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --background: #050604;
  --surface: rgba(13, 16, 9, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #f7f7f8;
  --muted: #c2c5b4;
  --muted-strong: #e5e0c9;
  --soy-green: #37ef5a;
  --soy-lime: #a9ea47;
  --soy-cream: #f1ddb6;
  --soy-gold: #d9ca61;
  --soy-ink: #050604;
  --line: rgba(241, 221, 182, 0.16);
  --page-padding: clamp(24px, 14vw, 188px);
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.page {
  position: relative;
  min-height: 100vh;
  background: var(--background);
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 144px minmax(440px, 1fr) auto;
  align-items: center;
  gap: 38px;
  height: 64px;
  padding: 0 var(--page-padding);
  border-bottom: 1px solid rgba(241, 221, 182, 0.12);
  background: rgba(7, 9, 5, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 132px;
  min-height: 0;
  padding: 0;
  min-width: 0;
}

.brand-mark-crop,
.brand-word-crop {
  position: relative;
  display: block;
  flex: 0 0 auto;
  height: 28px;
  overflow: hidden;
}

.brand-mark-crop {
  width: 34px;
}

.brand-word-crop {
  width: 90px;
}

.brand-source {
  display: block;
  width: auto;
  max-width: none;
  height: 28px;
}

.brand-mark-source {
  transform: translateX(-3px);
  filter: drop-shadow(0 0 10px rgba(55, 239, 90, 0.26));
}

.brand-word-source {
  transform: translateX(-36px);
  filter: invert(1) brightness(1.48) contrast(1.08) drop-shadow(0 0 12px rgba(241, 221, 182, 0.2));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  justify-self: start;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(241, 221, 182, 0.78);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--soy-green);
}

.nav-link.is-active {
  height: 38px;
  padding: 0 15px;
  background: rgba(241, 221, 182, 0.1);
  color: var(--soy-cream);
  box-shadow: inset 0 0 0 1px rgba(55, 239, 90, 0.18);
}

.nav-caret {
  width: 6px;
  height: 6px;
  border-right: 1px solid rgba(241, 221, 182, 0.54);
  border-bottom: 1px solid rgba(241, 221, 182, 0.54);
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% - 1px);
  left: var(--page-padding);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(1040px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(241, 221, 182, 0.14);
  border-radius: 0 0 12px 12px;
  background:
    radial-gradient(circle at 16% 68%, rgba(55, 239, 90, 0.12), transparent 34%),
    radial-gradient(circle at 72% 32%, rgba(217, 202, 97, 0.08), transparent 28%),
    rgba(16, 16, 14, 0.98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 42px rgba(55, 239, 90, 0.08);
}

.learn-menu {
  grid-template-columns: minmax(300px, 420px) 1fr;
}

.community-menu {
  grid-template-columns: 1fr minmax(280px, 360px);
}

.dropdown-feature,
.dropdown-event {
  min-height: 320px;
  overflow: hidden;
  border-radius: 10px;
}

.dropdown-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(138deg, rgba(5, 6, 4, 0.92) 0%, rgba(5, 6, 4, 0.5) 44%, rgba(169, 234, 71, 0.3) 100%),
    repeating-linear-gradient(0deg, rgba(241, 221, 182, 0.06) 0 1px, transparent 1px 9px),
    #070905;
}

.dropdown-feature h3,
.dropdown-event strong {
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 650;
  letter-spacing: 0;
}

.dropdown-feature p {
  max-width: 300px;
  margin: 14px 0 auto;
  color: rgba(241, 221, 182, 0.72);
  font-size: 18px;
  line-height: 1.4;
}

.dropdown-feature-action,
.dropdown-event button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 12px;
  min-height: 42px;
  padding: 0 9px 0 17px;
  border-radius: 999px;
  background: var(--soy-cream);
  color: var(--soy-ink);
  font-size: 14px;
  font-weight: 850;
}

.dropdown-feature-action span,
.dropdown-event button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 999px;
  background: var(--soy-ink);
  color: var(--soy-green);
}

.dropdown-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.products-menu .dropdown-sections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.learn-menu .dropdown-sections,
.community-menu .dropdown-sections {
  grid-template-columns: 1fr;
}

.dropdown-section h3 {
  margin: 0 0 18px;
  color: rgba(241, 221, 182, 0.62);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dropdown-items {
  display: grid;
  gap: 0;
}

.dropdown-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 80px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(241, 221, 182, 0.08);
}

.dropdown-section.is-compact .dropdown-item {
  grid-template-columns: 24px 1fr;
  min-height: 48px;
}

.dropdown-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: rgba(241, 221, 182, 0.1);
  color: var(--soy-cream);
  font-size: 21px;
  font-weight: 800;
}

.dropdown-section.is-compact .dropdown-icon {
  width: 24px;
  height: 24px;
  background: transparent;
  color: var(--soy-cream);
  font-size: 17px;
}

.dropdown-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.dropdown-copy strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0;
}

.dropdown-copy small {
  color: rgba(241, 221, 182, 0.62);
  font-size: 15px;
  line-height: 1.35;
}

.dropdown-item:hover .dropdown-icon {
  background: rgba(55, 239, 90, 0.14);
  color: var(--soy-green);
}

.dropdown-item:hover .dropdown-copy strong {
  color: var(--soy-green);
}

.dropdown-event {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px 22px;
  background:
    linear-gradient(180deg, rgba(241, 221, 182, 0.16), rgba(5, 6, 4, 0.1)),
    linear-gradient(135deg, #38ef5c 0%, #a9ea47 48%, #d9ca61 100%);
  box-shadow: inset 0 0 0 1px rgba(241, 221, 182, 0.34), 0 20px 54px rgba(55, 239, 90, 0.22);
}

.dropdown-event::before {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 0;
  width: 78%;
  height: 78%;
  background:
    linear-gradient(115deg, transparent 0 19%, rgba(5, 6, 4, 0.72) 20% 24%, transparent 25% 31%, rgba(5, 6, 4, 0.64) 32% 48%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(5, 6, 4, 0.72) 0 3px, transparent 3px 10px),
    repeating-linear-gradient(0deg, rgba(5, 6, 4, 0.44) 0 2px, transparent 2px 9px);
  clip-path: polygon(24% 0, 74% 0, 88% 100%, 0 100%, 9% 42%);
  content: "";
  opacity: 0.78;
}

.dropdown-event::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(5, 6, 4, 0.13) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, rgba(241, 221, 182, 0.14), transparent 38%, rgba(5, 6, 4, 0.18));
  content: "";
  opacity: 0.5;
}

.dropdown-event strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--soy-ink);
}

.dropdown-event strong::before {
  width: 38px;
  height: 38px;
  background:
    linear-gradient(90deg, var(--soy-ink) 0 24px, transparent 24px),
    linear-gradient(90deg, var(--soy-ink) 0 32px, transparent 32px),
    linear-gradient(90deg, var(--soy-ink) 0 24px, transparent 24px);
  background-position: 0 5px, 0 16px, 0 27px;
  background-repeat: no-repeat;
  background-size: 38px 6px;
  content: "";
}

.dropdown-event span {
  margin-top: 9px;
  color: var(--soy-ink);
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
}

.dropdown-event small {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 6, 4, 0.62);
  color: var(--soy-cream);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.dropdown-event small + small {
  margin-top: 8px;
}

.dropdown-event button {
  margin-top: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.search-pill,
.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border: 1px solid rgba(241, 221, 182, 0.18);
  border-radius: 999px;
  background: rgba(22, 27, 13, 0.82);
  color: rgba(241, 221, 182, 0.82);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.search-pill {
  justify-content: flex-start;
  width: 286px;
  min-width: 286px;
  padding: 0 8px 0 15px;
  gap: 10px;
}

.search-icon {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1.5px solid rgba(241, 221, 182, 0.68);
  border-radius: 999px;
}

.search-icon::after {
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 6px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(241, 221, 182, 0.68);
  content: "";
  transform: rotate(45deg);
}

.search-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.keyboard-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  border-radius: 6px;
  background: rgba(241, 221, 182, 0.08);
  color: rgba(241, 221, 182, 0.54);
  font-size: 10px;
  font-weight: 800;
}

.language-control {
  position: relative;
}

.language-button {
  min-width: 62px;
  gap: 6px;
  padding: 0 0;
  border-color: transparent;
  background: transparent;
  color: rgba(241, 221, 182, 0.78);
}

.globe-icon {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.86;
}

.globe-icon::before,
.globe-icon::after {
  position: absolute;
  content: "";
}

.globe-icon::before {
  inset: 2px 4px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 999px;
}

.globe-icon::after {
  left: 1px;
  right: 1px;
  top: 5px;
  border-top: 1px solid currentColor;
}

.language-caret {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 178px;
  padding: 6px;
  border: 1px solid rgba(241, 221, 182, 0.18);
  border-radius: 8px;
  background: rgba(12, 15, 8, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42), 0 0 34px rgba(55, 239, 90, 0.08);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 6px;
  background: transparent;
  color: rgba(241, 221, 182, 0.8);
  text-align: left;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(169, 234, 71, 0.1);
  color: var(--soy-green);
}

.language-option span {
  font-size: 12px;
  font-weight: 850;
}

.language-option small {
  color: rgba(241, 221, 182, 0.54);
  font-size: 11px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 64px var(--page-padding) 34px;
  isolation: isolate;
}

.market-canvas {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 83% 14%, rgba(217, 202, 97, 0.28), transparent 27%),
    radial-gradient(circle at 76% 52%, rgba(55, 239, 90, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(5, 6, 4, 0.08) 0%, rgba(5, 6, 4, 0.2) 44%, rgba(5, 6, 4, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 6, 4, 0.88) 0%, rgba(5, 6, 4, 0.3) 50%, rgba(5, 6, 4, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.hero-content {
  width: min(640px, 100%);
  padding-top: clamp(84px, 12.8vh, 126px);
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(50px, 5.55vw, 74px);
  font-weight: 470;
  letter-spacing: 0;
  line-height: 1;
}

h1 span {
  display: block;
}

h1 span:first-child {
  font-weight: 690;
}

.hero-subtitle {
  width: min(400px, 100%);
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.promo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.primary-button {
  gap: 10px;
  padding: 0 8px 0 19px;
  background: var(--soy-cream);
  color: var(--soy-ink);
}

.primary-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: var(--soy-ink);
  color: var(--soy-green);
}

.secondary-button {
  padding: 0 19px;
  border: 1px solid rgba(241, 221, 182, 0.18);
  background: rgba(241, 221, 182, 0.04);
  color: var(--soy-cream);
}

.hero-buy-button {
  border-color: rgba(169, 234, 71, 0.3);
  background-image: linear-gradient(
    120deg,
    rgba(241, 221, 182, 0.04) 0%,
    rgba(241, 221, 182, 0.04) 38%,
    rgba(169, 234, 71, 0.18) 50%,
    rgba(241, 221, 182, 0.04) 62%,
    rgba(241, 221, 182, 0.04) 100%
  );
  background-size: 220% 100%;
  box-shadow: 0 0 0 1px rgba(169, 234, 71, 0.08), 0 0 20px rgba(55, 239, 90, 0.12);
  animation: hero-buy-button-sheen 2.7s ease-in-out infinite, hero-buy-button-pulse 2.7s ease-in-out infinite;
}

.secondary-button:hover {
  border-color: rgba(55, 239, 90, 0.26);
  background: rgba(55, 239, 90, 0.08);
  color: #ffffff;
}

.secondary-button:focus-visible {
  outline: 2px solid var(--soy-green);
  outline-offset: 3px;
}

.x-link {
  width: 43px;
  min-width: 43px;
  padding: 0;
}

.x-link-icon {
  width: 14px;
  height: 14px;
  color: rgba(241, 221, 182, 0.88);
  flex: 0 0 auto;
}

.x-link:hover .x-link-icon {
  color: var(--soy-green);
}

@keyframes hero-buy-button-sheen {
  0% {
    background-position: -140% 0;
  }

  55% {
    background-position: 0 0;
  }

  100% {
    background-position: 140% 0;
  }
}

@keyframes hero-buy-button-pulse {
  0%,
  100% {
    border-color: rgba(169, 234, 71, 0.24);
    box-shadow: 0 0 0 1px rgba(169, 234, 71, 0.08), 0 0 20px rgba(55, 239, 90, 0.12);
  }

  50% {
    border-color: rgba(169, 234, 71, 0.48);
    box-shadow: 0 0 0 1px rgba(169, 234, 71, 0.14), 0 0 32px rgba(55, 239, 90, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-buy-button {
    animation: none;
    background-image: none;
    box-shadow: none;
    border-color: rgba(241, 221, 182, 0.18);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(420px, 100%);
  margin-top: 27px;
}

.stat-item {
  min-height: 54px;
  padding: 11px 0 0;
  border-top: 1px solid rgba(241, 221, 182, 0.18);
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(241, 221, 182, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stat-item strong {
  color: var(--soy-cream);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.promo-card {
  position: absolute;
  left: var(--page-padding);
  bottom: 30px;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 17px;
  width: min(448px, calc(100vw - 40px));
  min-height: 126px;
  padding: 9px 18px 9px 9px;
  border: 1px solid rgba(241, 221, 182, 0.54);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(250, 238, 207, 0.98), rgba(219, 205, 101, 0.96));
  color: var(--soy-ink);
  box-shadow: 0 22px 80px rgba(55, 239, 90, 0.2), 0 16px 56px rgba(95, 81, 23, 0.28);
}

.promo-logo {
  width: 100%;
  height: 108px;
  object-fit: contain;
  padding: 12px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(55, 239, 90, 0.18), rgba(217, 202, 97, 0.28)),
    #fff2cd;
}

.promo-copy {
  align-self: center;
  min-width: 0;
}

.promo-copy h2 {
  margin: 0 0 7px;
  color: #0b0710;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0;
}

.promo-copy p {
  max-width: 280px;
  margin: 0;
  color: rgba(9, 7, 15, 0.64);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.promo-link {
  min-height: 32px;
  margin-top: 14px;
  padding: 0 17px;
  background: var(--soy-ink);
  color: var(--soy-green);
}

.ask-button {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px 0 10px;
  border: 1px solid rgba(241, 221, 182, 0.22);
  border-radius: 999px;
  background: rgba(7, 9, 5, 0.88);
  color: var(--soy-cream);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.ask-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--soy-green), var(--soy-gold));
  color: var(--soy-ink);
  font-weight: 900;
}

.buy-modal-overlay {
  position: fixed;
  z-index: 55;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(55, 239, 90, 0.08), transparent 32%),
    rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(18px);
}

.buy-modal {
  position: relative;
  isolation: isolate;
  width: min(980px, 100%);
  max-height: min(840px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(241, 221, 182, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 10%, rgba(55, 239, 90, 0.16), transparent 26%),
    radial-gradient(circle at 14% 82%, rgba(217, 202, 97, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    rgba(12, 15, 8, 0.98);
  color: var(--soy-cream);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.68), 0 0 62px rgba(55, 239, 90, 0.12);
  scrollbar-gutter: stable;
}

.buy-modal::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 160px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(241, 221, 182, 0.08), transparent 72%);
  content: "";
}

.buy-modal-header {
  position: relative;
  padding-right: 68px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(241, 221, 182, 0.12);
}

.buy-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  border: 1px solid rgba(55, 239, 90, 0.18);
  border-radius: 999px;
  background: rgba(55, 239, 90, 0.08);
  color: var(--soy-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buy-modal h2 {
  margin: 0;
  color: #ffffff;
  max-width: 10ch;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.98;
}

.buy-modal-header p {
  max-width: 54ch;
  margin: 16px 0 0;
  color: rgba(241, 221, 182, 0.78);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.55;
}

.buy-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(241, 221, 182, 0.18);
  border-radius: 999px;
  background: rgba(241, 221, 182, 0.08);
  color: rgba(241, 221, 182, 0.78);
  font-size: 15px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.buy-close:hover {
  border-color: rgba(241, 221, 182, 0.32);
  background: rgba(241, 221, 182, 0.16);
  color: #ffffff;
  transform: translateY(-1px);
}

.buy-close:focus-visible,
.buy-modal-footer a:focus-visible {
  outline: 2px solid var(--soy-green);
  outline-offset: 3px;
}

.buy-steps {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.buy-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 368px);
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: 64px 20px 20px;
  border: 1px solid rgba(241, 221, 182, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 35%),
    rgba(241, 221, 182, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(55, 239, 90, 0.2);
  border-radius: 999px;
  background: rgba(55, 239, 90, 0.12);
  color: var(--soy-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.step-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.step-copy h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(23px, 2.2vw, 28px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.05;
}

.step-copy p {
  max-width: 48ch;
  margin: 0;
  color: rgba(241, 221, 182, 0.8);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.6;
}

.step-copy a {
  color: var(--soy-green);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(55, 239, 90, 0.42);
  text-underline-offset: 3px;
}

.step-important {
  max-width: 560px;
  padding: 14px 15px;
  border: 1px solid rgba(55, 239, 90, 0.22);
  border-radius: 16px;
  background: rgba(55, 239, 90, 0.08);
}

.step-important strong {
  color: var(--soy-green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.step-important p {
  margin-top: 6px;
}

.buy-image-frame,
.buy-image-stack {
  display: grid;
  align-self: stretch;
  gap: 14px;
}

.buy-image-frame,
.buy-image-stack img {
  width: 100%;
}

.buy-image-frame,
.buy-image-stack img {
  overflow: hidden;
  border: 1px solid rgba(210, 216, 245, 0.64);
  border-radius: 18px;
  background: #f7f8ff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.buy-image-frame img,
.buy-image-stack img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.buy-modal-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(241, 221, 182, 0.12);
}

.buy-modal-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--soy-cream);
  color: var(--soy-ink);
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.buy-modal-footer a + a {
  background: linear-gradient(135deg, var(--soy-green), var(--soy-lime));
  box-shadow: 0 14px 34px rgba(55, 239, 90, 0.2);
}

.buy-modal-footer a:hover {
  transform: translateY(-1px);
}

.buy-modal-footer a:first-child {
  border-color: rgba(241, 221, 182, 0.12);
}

.ask-modal-overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.ask-modal {
  width: min(536px, 100%);
  max-height: min(680px, calc(100vh - 48px));
  overflow: auto;
  padding: 15px;
  border: 1px solid rgba(241, 221, 182, 0.2);
  border-radius: 12px;
  background: rgba(14, 16, 12, 0.98);
  color: var(--soy-cream);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62), 0 0 52px rgba(55, 239, 90, 0.1);
}

.ask-modal-header,
.ask-modal-tools,
.ask-modal-title-row,
.ask-modal-intro,
.ask-modal-footer {
  display: flex;
  align-items: center;
}

.ask-modal-header {
  justify-content: space-between;
  gap: 16px;
}

.ask-modal-title-row {
  gap: 6px;
}

.ask-modal h2 {
  margin: 0;
  color: var(--soy-cream);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
}

.ask-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(241, 221, 182, 0.5);
  border-radius: 999px;
  color: rgba(241, 221, 182, 0.72);
  font-size: 8px;
  font-weight: 800;
}

.ask-modal-tools {
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(241, 221, 182, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.ask-search-chip,
.ask-active-chip,
.ask-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.ask-search-chip {
  gap: 7px;
  padding: 0 11px;
  color: rgba(241, 221, 182, 0.62);
}

.ask-search-chip .search-icon {
  width: 11px;
  height: 11px;
}

.ask-active-chip {
  gap: 6px;
  padding: 0 11px;
  background: linear-gradient(135deg, rgba(55, 239, 90, 0.22), rgba(217, 202, 97, 0.2));
  color: var(--soy-cream);
}

.ask-active-chip span {
  color: var(--soy-green);
}

.ask-close {
  width: 25px;
  border: 1px solid rgba(241, 221, 182, 0.12);
  background: rgba(241, 221, 182, 0.07);
  color: rgba(241, 221, 182, 0.78);
}

.ask-modal-intro {
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
  padding: 0 10px;
}

.ask-avatar {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  overflow: hidden;
  border: 1px solid rgba(55, 239, 90, 0.34);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(241, 221, 182, 0.22), rgba(15, 19, 9, 0.96));
}

.ask-avatar img {
  width: 60px;
  max-width: none;
  filter: drop-shadow(0 0 8px rgba(55, 239, 90, 0.34));
}

.ask-modal-intro p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.ask-examples {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  padding: 0 60px;
}

.ask-section-label {
  color: rgba(241, 221, 182, 0.56);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ask-example {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  font-size: 12px;
  font-weight: 650;
}

.ask-example:hover {
  background: rgba(169, 234, 71, 0.12);
  color: var(--soy-cream);
}

.ask-answer {
  margin: 16px 60px 0;
  padding: 13px 15px;
  border: 1px solid rgba(55, 239, 90, 0.2);
  border-radius: 8px;
  background: rgba(55, 239, 90, 0.07);
}

.ask-answer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 540;
  line-height: 1.5;
}

.ask-answer a {
  color: var(--soy-green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(55, 239, 90, 0.4);
  text-underline-offset: 3px;
}

.ask-form {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  margin-top: 28px;
  padding: 5px 6px 5px 15px;
  border: 1px solid rgba(241, 221, 182, 0.1);
  border-radius: 999px;
  background: rgba(241, 221, 182, 0.12);
}

.ask-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--soy-cream);
  font: inherit;
  font-size: 13px;
}

.ask-form input::placeholder {
  color: rgba(241, 221, 182, 0.42);
}

.ask-form button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(241, 221, 182, 0.18);
  color: var(--soy-cream);
  font-size: 17px;
  font-weight: 800;
}

.ask-modal-footer {
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.ask-modal-footer strong {
  color: var(--soy-cream);
}

.ask-footer-pill {
  min-height: 26px;
  padding: 6px 12px;
  border: 1px solid rgba(241, 221, 182, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  padding: 18px var(--page-padding) 24px;
  border-top: 1px solid rgba(241, 221, 182, 0.1);
  background: var(--background);
  color: rgba(241, 221, 182, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer strong {
  color: rgba(241, 221, 182, 0.84);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr;
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .search-pill {
    width: 240px;
  }

  .hero-content {
    padding-top: clamp(74px, 10.4vh, 112px);
  }

  .buy-step {
    grid-template-columns: minmax(0, 1fr) minmax(248px, 320px);
  }
}

@media (max-width: 760px) {
  :root {
    --page-padding: 16px;
  }

  .site-header {
    height: 60px;
    padding: 0 16px;
  }

  .brand {
    gap: 8px;
    width: 112px;
  }

  .brand-mark-crop,
  .brand-word-crop {
    height: 24px;
  }

  .brand-mark-crop {
    width: 29px;
  }

  .brand-word-crop {
    width: 76px;
  }

  .brand-source {
    height: 24px;
  }

  .brand-mark-source {
    transform: translateX(-3px);
  }

  .brand-word-source {
    transform: translateX(-31px);
  }

  .search-pill {
    display: none;
  }

  .hero {
    min-height: 905px;
    padding: 60px var(--page-padding) 28px;
  }

  .hero-content {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 62px);
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 26px;
  }

  .stat-item {
    min-height: 48px;
  }

  .promo-card {
    left: var(--page-padding);
    right: var(--page-padding);
    bottom: 66px;
    grid-template-columns: 112px 1fr;
    width: auto;
    gap: 14px;
    padding: 8px 14px 8px 8px;
  }

  .promo-logo {
    height: 96px;
  }

  .promo-copy h2 {
    font-size: 16px;
  }

  .promo-copy p {
    font-size: 12px;
  }

  .buy-modal-overlay {
    align-items: flex-start;
    padding: 72px 12px 20px;
  }

  .buy-modal {
    max-height: none;
    padding: 18px;
    border-radius: 22px;
  }

  .buy-modal-header {
    padding-right: 54px;
    padding-bottom: 22px;
  }

  .buy-modal h2 {
    max-width: none;
    font-size: clamp(32px, 10vw, 42px);
  }

  .buy-modal-header p {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }

  .buy-close {
    width: 40px;
    height: 40px;
  }

  .buy-steps {
    gap: 14px;
    margin-top: 20px;
  }

  .buy-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .step-number {
    position: static;
    justify-self: start;
    margin-bottom: -2px;
  }

  .step-copy {
    gap: 12px;
  }

  .step-copy h3 {
    font-size: 24px;
  }

  .step-copy p {
    max-width: none;
  }

  .buy-modal-footer {
    grid-template-columns: 1fr;
  }

  .buy-modal-footer a {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 980px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: row;
    width: 100%;
  }

  .primary-button {
    flex: 1 1 auto;
  }

  .secondary-button.hero-buy-button {
    flex: 1 1 auto;
    width: auto;
  }

  .secondary-button {
    width: 100%;
  }

  .x-link {
    flex: 0 0 43px;
    width: 43px;
  }

  .promo-card {
    grid-template-columns: 1fr;
  }

  .promo-logo {
    height: 88px;
  }

  .buy-modal-overlay {
    padding: 68px 10px 16px;
  }

  .buy-modal {
    padding: 14px;
    border-radius: 18px;
  }

  .buy-modal-header {
    padding-right: 48px;
    padding-bottom: 18px;
  }

  .buy-kicker {
    min-height: 26px;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  .buy-modal h2 {
    font-size: 30px;
  }

  .buy-modal-header p,
  .step-copy p {
    font-size: 14px;
  }

  .buy-step {
    padding: 16px;
    border-radius: 20px;
  }

  .step-copy h3 {
    font-size: 22px;
  }

  .step-important {
    padding: 12px 13px;
  }

  .buy-modal-footer {
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .ask-modal-overlay {
    align-items: flex-start;
    padding: 76px 12px 20px;
  }

  .ask-modal {
    padding: 12px;
  }

  .ask-modal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ask-examples,
  .ask-answer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .ask-answer {
    padding: 13px 15px;
  }
}
