:root {
  --green: #2bae66;
  --gold: #ecc765;
  --ink: #06100b;
  --ink-2: #0b1711;
  --panel: #102019;
  --panel-2: #14281f;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #aab8b0;
  --text: #f4fbf7;
  --white: #ffffff;
  --danger: #ef4f4f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --soft-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 10%, rgba(43, 174, 102, 0.24), transparent 32rem),
    radial-gradient(circle at 8% 22%, rgba(236, 199, 101, 0.16), transparent 28rem),
    linear-gradient(180deg, #07100b 0%, #0a120e 45%, #050807 100%);
  color: var(--text);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body[data-theme="light"] {
  --ink: #f7fbf7;
  --ink-2: #edf6ef;
  --panel: #ffffff;
  --panel-2: #f2faf4;
  --line: rgba(6, 16, 11, 0.12);
  --muted: #52645a;
  --text: #07100b;
  --white: #07100b;
  --shadow: var(--soft-shadow);
  background:
    radial-gradient(circle at 78% 10%, rgba(43, 174, 102, 0.15), transparent 30rem),
    radial-gradient(circle at 8% 22%, rgba(236, 199, 101, 0.18), transparent 26rem),
    linear-gradient(180deg, #f7fbf7 0%, #eef7f0 48%, #ffffff 100%);
  color: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 11, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(43, 174, 102, 0.32);
  background: rgba(7, 16, 11, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a,
.mobile-menu a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--green);
}

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

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.theme-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.theme-switch button {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.theme-switch button span {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
}

.theme-switch button.is-active {
  color: #06100b;
  background: var(--green);
}

.mobile-theme {
  width: max-content;
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #06100b;
  background: var(--gold);
}

.mobile-language {
  width: max-content;
}

.link-button {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button {
  color: #06100b;
  background: linear-gradient(135deg, var(--gold), #fff1b0);
  box-shadow: 0 18px 42px rgba(236, 199, 101, 0.16);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.primary-button.large {
  min-width: 220px;
}

.secondary-button {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  inset: 104px 16px auto;
  z-index: 19;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 18, 14, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.hero {
  min-height: 100vh;
  padding: 132px 24px 52px;
  display: flex;
  align-items: center;
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-heading span,
.section-kicker,
.start-section span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(43, 174, 102, 0.16);
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(4.1rem, 9.4vw, 7.8rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
}

.tagline {
  margin: 16px 0 0;
  color: var(--green);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: #d5e0da;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 610px;
}

.hero-stats div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.55rem;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.phone-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #0a110d;
  box-shadow: var(--shadow);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-phone {
  position: absolute;
  right: 0;
  top: 48px;
  width: min(330px, 64vw);
  height: 600px;
}

.floating-phone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(240px, 43vw);
  height: 430px;
  transform: rotate(-3deg);
}

.terminal-card {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: min(420px, 86vw);
  padding: 16px;
  border: 1px solid rgba(43, 174, 102, 0.32);
  border-radius: 8px;
  background: rgba(16, 32, 25, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.terminal-top span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

.terminal-top span:nth-child(3) {
  background: var(--danger);
}

.terminal-top em {
  margin-left: auto;
  font-style: normal;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.price-row span {
  font-weight: 900;
}

.price-row strong {
  font-size: 1.35rem;
}

.price-row b {
  color: var(--green);
}

.market-line {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 92px;
  margin-top: 20px;
  padding: 12px;
  border-radius: 8px;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 22px);
}

.market-line span {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.logo-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.logo-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #d8e4de;
  font-weight: 900;
}

.logo-strip span:last-child {
  border-right: 0;
}

.section,
.platform-section,
.trust-section,
.start-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.trust-panel h2,
.start-section h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.trust-panel p,
.start-section p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.market-card,
.account-card,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.market-card {
  min-height: 248px;
  padding: 22px;
}

.market-card.featured {
  background:
    linear-gradient(180deg, rgba(236, 199, 101, 0.16), rgba(43, 174, 102, 0.07)),
    rgba(255, 255, 255, 0.045);
  border-color: rgba(236, 199, 101, 0.34);
}

.market-card b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #07100b;
  background: var(--gold);
  font-size: 1.1rem;
}

.market-card h3 {
  margin: 28px 0 0;
  font-size: 1.15rem;
}

.market-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

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

.account-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
}

.account-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.account-card.highlight {
  border-color: rgba(236, 199, 101, 0.42);
  background:
    linear-gradient(180deg, rgba(236, 199, 101, 0.16), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.account-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.account-name {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1;
}

.account-badge {
  padding: 7px 10px;
  border-radius: 999px;
  color: #06100b;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.deposit {
  margin: 26px 0;
}

.deposit span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.deposit strong {
  display: block;
  margin-top: 4px;
  font-size: 2.4rem;
  letter-spacing: 0;
}

.account-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.account-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.account-list strong {
  color: var(--text);
  text-align: right;
}

.account-card .secondary-button {
  margin-top: auto;
  width: 100%;
}

.platform-section {
  padding: 112px 0 0;
}

.platform-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.platform-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.feature-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #07100b;
  background: var(--green);
  font-weight: 900;
}

.feature-row h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(43, 174, 102, 0.12), rgba(236, 199, 101, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.app-gallery img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.app-gallery img:nth-child(2) {
  transform: translateY(-34px);
}

.trust-section {
  padding: 112px 0 0;
}

.trust-panel {
  padding: 34px;
  border: 1px solid rgba(43, 174, 102, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(43, 174, 102, 0.16), rgba(236, 199, 101, 0.07)),
    rgba(255, 255, 255, 0.035);
}

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

.trust-grid article {
  padding: 20px;
}

.trust-grid strong {
  display: block;
  font-size: 1.05rem;
}

.trust-grid p {
  font-size: 0.92rem;
}

.start-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 110px 0;
}

.start-section div {
  max-width: 720px;
}

.legal-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.legal-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 142px 0 80px;
}

.legal-hero {
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
}

.legal-hero span {
  display: inline-flex;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.legal-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.request-hero h1 {
  color: var(--green);
}

.legal-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-document {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.legal-document section {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.legal-document h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.2;
}

.legal-document h3 {
  margin: 20px 0 8px;
  color: var(--gold);
  font-size: 1rem;
}

.legal-document p,
.legal-document li {
  color: #d5e0da;
  line-height: 1.78;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 12px;
}

.legal-document ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-document a {
  color: var(--gold);
  font-weight: 800;
}

.request-page {
  width: min(1120px, calc(100% - 32px));
}

.centered-legal-hero {
  text-align: center;
}

.centered-legal-hero p {
  margin-left: auto;
  margin-right: auto;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.request-layout.single {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
}

.pdf-viewer {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.pdf-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pdf-frame {
  width: 100%;
  height: min(78vh, 860px);
  min-height: 620px;
  border: 1px solid rgba(43, 174, 102, 0.28);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pdf-fallback {
  margin: 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.inline-document {
  margin-top: 0;
}

.inline-document section {
  background:
    linear-gradient(180deg, rgba(43, 174, 102, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(43, 174, 102, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.request-form input {
  min-height: 52px;
  padding: 0 15px;
}

.request-form textarea {
  min-height: 150px;
  padding: 15px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--green);
  background: rgba(43, 174, 102, 0.08);
}

.request-form ::placeholder {
  color: rgba(213, 224, 218, 0.48);
}

.request-form button {
  width: 100%;
  cursor: pointer;
}

.request-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(3, 7, 5, 0.78);
  backdrop-filter: blur(14px);
}

.form-modal[aria-hidden="false"] {
  display: grid;
}

.form-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(43, 174, 102, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(43, 174, 102, 0.14), rgba(236, 199, 101, 0.08)),
    #101f18;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-modal[data-state="error"] .form-modal__panel {
  border-color: rgba(239, 79, 79, 0.48);
}

.form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-modal__icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #06100b;
  background: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-modal[data-state="error"] .form-modal__icon {
  color: var(--white);
  background: var(--danger);
}

.form-modal h2 {
  margin: 18px 0 0;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

.form-modal p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

body[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 42px rgba(12, 40, 24, 0.1);
}

body[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
}

body[data-theme="light"] .mobile-menu {
  background: rgba(255, 255, 255, 0.96);
}

body[data-theme="light"] .language-switch,
body[data-theme="light"] .theme-switch,
body[data-theme="light"] .menu-toggle {
  background: rgba(6, 16, 11, 0.04);
}

body[data-theme="light"] .secondary-button {
  background: rgba(6, 16, 11, 0.04);
  border-color: rgba(6, 16, 11, 0.16);
}

body[data-theme="light"] .hero-lede,
body[data-theme="light"] .logo-strip span,
body[data-theme="light"] .legal-document p,
body[data-theme="light"] .legal-document li {
  color: #42534a;
}

body[data-theme="light"] .hero-stats div,
body[data-theme="light"] .logo-strip,
body[data-theme="light"] .market-card,
body[data-theme="light"] .account-card,
body[data-theme="light"] .trust-grid article,
body[data-theme="light"] .legal-document section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 247, 0.86));
}

body[data-theme="light"] .terminal-card,
body[data-theme="light"] .trust-panel,
body[data-theme="light"] .app-gallery,
body[data-theme="light"] .request-form,
body[data-theme="light"] .form-modal__panel {
  background:
    linear-gradient(135deg, rgba(43, 174, 102, 0.12), rgba(236, 199, 101, 0.12)),
    rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .phone-shell {
  background: #eaf4ed;
  border-color: rgba(6, 16, 11, 0.12);
}

body[data-theme="light"] .account-card.highlight,
body[data-theme="light"] .market-card.featured {
  background:
    linear-gradient(180deg, rgba(236, 199, 101, 0.28), rgba(43, 174, 102, 0.09)),
    #ffffff;
}

body[data-theme="light"] .account-list li {
  border-bottom-color: rgba(6, 16, 11, 0.1);
}

body[data-theme="light"] .request-form input,
body[data-theme="light"] .request-form textarea {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(6, 16, 11, 0.15);
}

body[data-theme="light"] .request-form ::placeholder {
  color: rgba(82, 100, 90, 0.68);
}

.footer-content {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
}

.footer-menu a {
  transition: color 180ms ease;
}

.footer-menu a:hover {
  color: var(--green);
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .legal-header .header-actions {
    display: flex;
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-visual {
    min-height: 610px;
  }

  .main-phone {
    right: 8%;
  }

  .floating-phone {
    left: 7%;
  }

  .market-grid,
  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-copy {
    align-content: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    left: 12px;
    right: 12px;
    width: auto;
    height: 66px;
    margin-top: 12px;
    transform: none;
  }

  .legal-header {
    position: fixed;
    left: 12px;
    right: 12px;
    transform: none;
  }

  .legal-page {
    padding-top: 104px;
  }

  .legal-document section {
    padding: 20px;
  }

  .request-layout,
  .request-layout.single {
    grid-template-columns: 1fr;
  }

  .request-form {
    padding: 20px;
  }

  .brand-logo {
    width: 136px;
  }

  .legal-header .header-actions .primary-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 112px 16px 40px;
  }

  .hero-grid {
    gap: 34px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.4rem);
  }

  .hero-actions,
  .start-section {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a,
  .start-section a {
    width: 100%;
  }

  .hero-stats,
  .logo-strip,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 78px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .terminal-card {
    left: 0;
    top: 0;
  }

  .main-phone {
    top: 72px;
    right: 0;
    width: 270px;
    height: 500px;
  }

  .floating-phone {
    left: 0;
    width: 190px;
    height: 340px;
  }

  .logo-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .logo-strip span:last-child {
    border-bottom: 0;
  }

  .section,
  .platform-section,
  .trust-section {
    padding-top: 82px;
  }

  .market-grid,
  .account-grid,
  .app-gallery {
    grid-template-columns: 1fr;
  }

  .market-card {
    min-height: 0;
  }

  .app-gallery img {
    max-width: 280px;
    margin: 0 auto;
  }

  .app-gallery img:nth-child(2) {
    transform: none;
  }

  .trust-panel {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .footer-content {
    justify-items: start;
  }

  .footer-menu {
    justify-content: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 500px;
  }

  .main-phone {
    width: 230px;
    height: 430px;
  }

  .floating-phone {
    width: 160px;
    height: 290px;
  }

  .terminal-card {
    width: 100%;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
