:root {
  color-scheme: dark;
  --bg: #050505;
  --ink: #f7f4ee;
  --muted: #a8a29a;
  --soft: #d9d2c8;
  --panel: #10100f;
  --panel-2: #171513;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --orange: #ff8a00;
  --orange-2: #ffb33c;
  --green: #7de052;
  --cyan: #4bcad3;
  --amazonite: #2cb9ac;
  --salmon: #fe7f78;
  --red: #ff6257;
  --header-height: 100px;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #050505 0%, #090806 44%, #050505 100%);
  color: var(--ink);
  line-height: 1.5;
}

::selection {
  background: rgba(255, 138, 0, 0.36);
}

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

p {
  margin: 0;
  color: var(--muted);
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 7, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: clamp(320px, 30vw, 410px);
  min-width: 0;
}

.brand-logo-img {
  width: 100%;
  height: auto;
  max-height: calc(var(--header-height) - 14px);
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(720px, 86svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #050505;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("img/coinstogo-location-hero-20260619-orange-orbit-v4.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.64;
  filter: saturate(0.9) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 38%, rgba(5, 5, 5, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.16) 48%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(135deg, rgba(255, 138, 0, 0.12), transparent 36%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 46px);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 5.55rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(1.85rem, 3.7vw, 3.55rem);
}

h3 {
  font-size: 1.22rem;
  line-height: 1.08;
}

.hero-copy {
  max-width: 590px;
  margin-top: 24px;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

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

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--orange);
  color: #120b03;
  box-shadow: 0 18px 42px rgba(255, 138, 0, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
}

.button-disabled {
  cursor: not-allowed;
  filter: saturate(0.7);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.section-head p:not(.eyebrow) {
  max-width: 620px;
  color: var(--soft);
  font-size: 1.06rem;
}

.machine-section {
  position: relative;
}

.status-toolbar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 34px 0 20px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.92rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(125, 224, 82, 0.13);
}

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

.machine-card {
  --status-color: var(--cyan);
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.machine-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--status-color);
}

.machine-topline,
.machine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.machine-type {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.machine-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--status-color);
  font-size: 0.76rem;
  font-weight: 900;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--status-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--status-color) 18%, transparent);
}

.machine-card h3 {
  min-height: 42px;
  margin-top: 18px;
}

.machine-card p,
.machine-area {
  margin-top: 8px;
  font-size: 0.91rem;
}

.machine-area {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
}

.machine-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.area-pin {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 179, 60, 0.86);
  border-radius: 999px 999px 999px 2px;
  transform: rotate(-45deg);
}

.area-pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: rgba(255, 179, 60, 0.86);
}

.coin-pills,
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.coin-pills {
  margin-top: 16px;
}

.service-pills {
  margin-top: 18px;
}

.coin-pill,
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 27px;
  padding: 0 9px 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
}

.coin-pill {
  border-color: rgba(255, 138, 0, 0.14);
  background: rgba(255, 138, 0, 0.06);
  color: var(--orange-2);
}

.coin-icon,
.pill-icon {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

.coin-icon img,
.pill-icon img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.coin-icon {
  background: rgba(255, 138, 0, 0.14);
}

.service-pill.is-enabled .pill-icon {
  background: rgba(125, 224, 82, 0.16);
}

.service-pill.is-disabled {
  color: var(--muted);
}

.service-pill.is-disabled .pill-icon {
  background: rgba(255, 98, 87, 0.16);
}

.machine-footer {
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 18px;
}

.machine-link {
  min-width: 44px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 138, 0, 0.22);
  border-radius: 8px;
  background: rgba(255, 138, 0, 0.08);
  color: var(--orange-2);
  padding: 0 9px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.machine-link.is-disabled {
  color: var(--muted);
}

.is-available {
  --status-color: var(--green);
  border-color: rgba(125, 224, 82, 0.3);
}

.is-offline {
  --status-color: var(--red);
}

.flow-section,
.split-section {
  border-top: 1px solid var(--line);
}

.flow-intro {
  position: relative;
  max-width: 860px;
}

.flow-intro::after {
  content: "";
  width: min(320px, 62vw);
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amazonite), var(--salmon));
}

.flow-demos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.flow-card {
  --flow-accent: var(--amazonite);
  --flow-glow: rgba(44, 185, 172, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, var(--flow-glow), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--flow-accent) 8%, transparent), rgba(255, 255, 255, 0.024) 46%),
    rgba(255, 255, 255, 0.032);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.is-sell-flow {
  --flow-accent: var(--salmon);
  --flow-glow: rgba(254, 127, 120, 0.12);
}

.flow-card-head {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.flow-card h3 {
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.flow-steps {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(112px, 1fr));
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.flow-step {
  display: grid;
  grid-template-columns: 40px 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--flow-accent) 46%, transparent);
  border-radius: 999px;
  color: var(--flow-accent);
  font-size: 0.86rem;
  font-weight: 950;
}

.step-visual {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--flow-accent) 30%, transparent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
}

.flow-step h4 {
  color: var(--ink);
  font-size: 1rem;
}

.flow-step p {
  margin-top: 5px;
  color: var(--soft);
  font-size: 0.94rem;
}

.icon-qr {
  padding: 5px;
  background: #f7f4ee;
}

.icon-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
  image-rendering: pixelated;
}

.icon-package {
  background:
    radial-gradient(circle at 72% 76%, color-mix(in srgb, var(--flow-accent) 22%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--flow-accent) 13%, transparent), rgba(255, 255, 255, 0.045));
}

.step-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.step-icon-crypto-wallet {
  width: 34px;
  height: 34px;
}

@media (prefers-reduced-motion: no-preference) {
  .flow-step:hover .icon-qr img,
  .flow-step:focus-within .icon-qr img,
  .flow-step:hover .step-icon,
  .flow-step:focus-within .step-icon {
    animation: stepPulse 900ms ease both;
  }
}

@keyframes stepPulse {
  50% {
    transform: scale(1.08);
  }
}

.flow-step h4,
.flow-step p {
  overflow-wrap: anywhere;
}

.flow-step strong {
  color: var(--flow-accent);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 84px);
}

.safety-copy p {
  color: var(--soft);
  font-size: 1.08rem;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.support-section {
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, 0.12), transparent 46%),
    #0a0908;
}

.support-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: block;
  padding: clamp(46px, 7vw, 76px) 0;
}

.support-panel h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

.support-panel p {
  max-width: 650px;
  margin-top: 16px;
  color: var(--soft);
}

.support-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.support-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 12px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
}

.contact-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 138, 0, 0.14);
  color: var(--orange-2);
  font-size: 0.62rem;
  font-weight: 950;
}

.support-contact a:hover,
.support-contact a:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.site-footer a {
  color: var(--orange-2);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 34px 0;
}

.footer-brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.footer-grid p {
  max-width: 560px;
  margin-top: 8px;
  font-size: 0.92rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-grid a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--ink);
  outline: none;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #090806 0%, #050505 38%, #050505 100%);
}

.legal-shell {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 104px) 0 96px;
}

.legal-shell h1 {
  margin-top: 10px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-shell section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-shell section:first-of-type {
  margin-top: 40px;
}

.legal-shell h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.legal-shell p,
.legal-shell li {
  color: var(--soft);
  max-width: 66ch;
}

.legal-shell p {
  margin-top: 14px;
}

.legal-shell ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-shell a {
  color: var(--orange-2);
  font-weight: 800;
}

.legal-updated {
  max-width: 62ch;
  margin-top: 18px;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.legal-tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 840;
}

.legal-tabs a:hover,
.legal-tabs a:focus-visible {
  border-color: rgba(255, 138, 0, 0.34);
  color: var(--ink);
  outline: none;
}

.kyc-examples {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.kyc-example-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.kyc-image-frame {
  min-height: 0;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.026);
}

.kyc-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
}

.kyc-example-copy {
  align-content: center;
  display: grid;
  gap: 8px;
  padding: clamp(16px, 3vw, 24px);
}

.kyc-example-copy span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 999px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 950;
}

.kyc-example-copy h3 {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.2;
}

.kyc-example-copy p {
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.kyc-note {
  padding: 14px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 8px;
  background: rgba(255, 138, 0, 0.06);
}

.icon-options-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 0%, rgba(75, 202, 211, 0.08), transparent 34%),
    linear-gradient(180deg, #090806 0%, #050505 42%, #050505 100%);
}

.icon-options-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 820;
}

.icon-options-shell h1 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.icon-options-intro {
  max-width: 650px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 1.08rem;
}

.icon-options-edit-note {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-options-edit-note code {
  color: var(--orange-2);
  font-size: 0.92em;
}

.icon-option-set {
  margin-top: 52px;
}

.icon-option-set h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.icon-option-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.icon-option-card {
  min-height: 178px;
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 138, 0, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.icon-option-card.is-selected {
  border-color: rgba(255, 138, 0, 0.38);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 138, 0, 0.14), transparent 36%),
    rgba(255, 138, 0, 0.045);
}

.option-code {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 28px;
  border: 1px solid rgba(75, 202, 211, 0.38);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 950;
}

.option-visual {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 202, 211, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 76%, rgba(255, 138, 0, 0.13), transparent 32%),
    rgba(75, 202, 211, 0.06);
}

.option-visual img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.option-accent-orange {
  border-color: rgba(255, 138, 0, 0.28);
  background:
    radial-gradient(circle at 78% 76%, rgba(255, 138, 0, 0.18), transparent 34%),
    rgba(255, 138, 0, 0.06);
}

.option-accent-green {
  border-color: rgba(125, 224, 82, 0.26);
  background:
    radial-gradient(circle at 78% 76%, rgba(125, 224, 82, 0.15), transparent 34%),
    rgba(125, 224, 82, 0.055);
}

.option-accent-soft {
  border-color: rgba(247, 244, 238, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.option-missing {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 950;
}

.icon-option-card h3 {
  font-size: 1rem;
  line-height: 1.05;
}

.icon-option-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .hero-inner {
    padding-bottom: 54px;
  }

  .hero-media {
    background-size: cover;
    background-position: 62% center;
    opacity: 0.48;
  }

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

  .flow-demos {
    grid-template-columns: 1fr;
  }

  .icon-option-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1180px);
    padding: 0 10px 0 12px;
  }

  .brand-mark {
    width: clamp(214px, 58vw, 260px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(310px, calc(100vw - 20px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 8, 7, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-size: cover;
    background-position: 64% center;
    opacity: 0.34;
  }

  .hero-inner,
  .section,
  .footer-grid,
  .legal-shell {
    width: min(100% - 28px, 1180px);
  }

  .machine-grid,
  .flow-demos,
  .kyc-examples,
  .icon-option-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .kyc-image-frame img {
    height: 100%;
  }

  .icon-options-shell {
    width: min(100% - 28px, 1180px);
    padding: 48px 0 72px;
  }

  .flow-card {
    padding: 18px;
  }

  .flow-card-head {
    padding-bottom: 14px;
  }

  .flow-card h3 {
    font-size: 1.55rem;
  }

  .flow-steps {
    gap: 10px;
    margin-top: 14px;
    grid-template-rows: repeat(3, minmax(118px, 1fr));
  }

  .flow-step {
    grid-template-columns: 32px 46px minmax(0, 1fr);
    gap: 10px;
    min-height: 118px;
    padding: 12px;
  }

  .step-number {
    width: 30px;
    height: 30px;
  }

  .step-visual {
    width: 44px;
    height: 44px;
  }

  .flow-step p {
    font-size: 0.9rem;
  }

  .status-toolbar {
    min-height: 0;
    align-items: flex-start;
    padding: 10px 12px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
