@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,650;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --ink: #0B0D12;
  --ink-2: #141821;
  --ink-3: #1C2230;
  --sand: #F3EEE6;
  --paper: #FAF7F2;
  --mute: #8B8793;
  --line: rgba(255,255,255,.09);
  --line-d: rgba(11,13,18,.1);
  --copper: #E3A23A;
  --copper-2: #C8872A;
  --mint: #5EEAD4;
  --max: 1120px;
  --disp: "Bricolage Grotesque", system-ui, sans-serif;
  --txt: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--txt);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font: inherit; }

.cx { width: min(100% - 1.4rem, var(--max)); margin-inline: auto; }
@media (min-width: 768px) { .cx { width: min(100% - 2rem, var(--max)); } }

/* ===== NAV ===== */
.nx {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
}
.nx--stick {
  position: sticky;
  background: rgba(11,13,18,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
}
.nx__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nx__logo img {
  height: 26px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}
@media (min-width: 768px) { .nx__logo img { height: 30px; } }

.nx__burger {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nx__links {
  display: none;
  flex-direction: column;
  gap: .1rem;
  position: absolute;
  top: calc(100% + .45rem);
  left: .7rem; right: .7rem;
  padding: .65rem;
  border-radius: 18px;
  background: rgba(20,24,33,.98);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.nx__links.open { display: flex; }
.nx__links > li { position: relative; }
.nx__links > li > a {
  display: block;
  padding: .85rem 1rem;
  border-radius: 12px;
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: .94rem;
}
.nx__links > li > a:hover { background: rgba(255,255,255,.06); color: #fff; }
.nx__drop { display: none; padding: .15rem 0 .3rem .5rem; }
.nx__links > li.open > .nx__drop { display: block; }
.nx__drop a {
  display: block;
  padding: .65rem .85rem;
  color: rgba(255,255,255,.55);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
}
.nx__drop a:hover { color: #fff; background: rgba(227,162,58,.12); }
.nx__go {
  background: var(--copper) !important;
  color: var(--ink) !important;
  text-align: center;
  font-weight: 700 !important;
}

@media (min-width: 980px) {
  .nx__burger { display: none; }
  .nx__links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: .05rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nx__links > li > a {
    padding: .5rem .85rem;
    border-radius: 999px;
    font-size: .88rem;
  }
  .nx__go { margin-left: .4rem; padding-inline: 1.15rem !important; }
  .nx__links > li:has(.nx__drop) {
    padding-bottom: 12px;
    margin-bottom: -12px;
  }
  .nx__drop {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding: .4rem;
    margin-top: 0;
    background: rgba(20,24,33,.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.4);
  }
  .nx__drop::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -14px;
    height: 14px;
  }
  .nx__links > li:hover > .nx__drop,
  .nx__links > li:focus-within > .nx__drop { display: block; }
}

/* ===== HERO — split: copy + aside showcase ===== */
.splash {
  position: relative;
  min-height: min(100svh, 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 6.5rem 0 3rem;
}
@media (min-width: 768px) {
  .splash { padding: 7.5rem 0 4rem; }
}
.splash__atm {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.splash__atm .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: float 12s ease-in-out infinite alternate;
}
.splash__atm .orb--1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(227,162,58,.55), transparent 70%);
  top: -80px; right: -60px;
}
.splash__atm .orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(94,234,212,.28), transparent 70%);
  bottom: 10%; left: -80px;
  animation-delay: -4s;
}
.splash__atm .orb--3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -7s;
}
.splash__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
@keyframes float {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(-20px, 24px) scale(1.08); }
}

.splash__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 980px) {
  .splash__layout {
    grid-template-columns: 1.05fr .95fr;
    gap: 2.75rem;
  }
}

.splash__copy { max-width: 36rem; }
.splash__eyebrow {
  display: inline-block;
  margin-bottom: 1rem !important;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
  color: rgba(255,255,255,.72) !important;
  max-width: none !important;
  animation: up .8s var(--ease) both;
}
.splash__brand { display: none !important; }
.splash h1 {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(2.2rem, 6.5vw, 3.9rem);
  letter-spacing: -.045em;
  line-height: .98;
  max-width: 12ch;
  margin-bottom: 1rem;
  animation: up .9s .05s var(--ease) both;
}
.splash h1 span {
  display: block;
  background: linear-gradient(105deg, var(--copper), #F0C878 45%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.splash__copy > p:not(.splash__eyebrow) {
  max-width: 36ch;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.02rem, 2.2vw, 1.15rem);
  font-weight: 500;
  margin-bottom: 1.7rem;
  animation: up 1s .1s var(--ease) both;
}
.splash__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  animation: up 1.05s .15s var(--ease) both;
}
.splash__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
  animation: up 1.1s .2s var(--ease) both;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
}
.chip i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(94,234,212,.2);
}

/* hero right panel */
.splash__aside {
  display: grid;
  gap: .85rem;
  animation: up 1.05s .18s var(--ease) both;
}
.hero-card--product {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 60px rgba(0,0,0,.35);
  transition: transform .35s var(--ease), border-color .35s;
}
.hero-card--product:hover {
  transform: translateY(-4px);
  border-color: rgba(227,162,58,.4);
}
.hero-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  font-weight: 700;
}
.hero-card__top span {
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-card__top strong { color: var(--copper); font-family: var(--disp); font-size: .95rem; }
.hero-card__browser { background: #0f131c; }
.hero-card__dots {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .8rem;
  background: #1a1f2b;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-card__dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3a4154;
}
.hero-card__dots i:nth-child(1) { background: #FF5F57; }
.hero-card__dots i:nth-child(2) { background: #FEBC2E; }
.hero-card__dots i:nth-child(3) { background: #28C840; }
.hero-card__dots em {
  margin-left: .45rem;
  font-style: normal;
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-card__browser img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: top center;
  background: #0f131c;
}
.hero-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem 1.1rem;
}
.hero-card__foot h3 {
  font-family: var(--disp);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.hero-card__foot span {
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--copper);
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.hero-mini {
  padding: .95rem .9rem;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, border-color .2s, transform .2s;
}
.hero-mini:hover {
  background: rgba(227,162,58,.12);
  border-color: rgba(227,162,58,.35);
  transform: translateY(-2px);
}
.hero-mini strong {
  display: block;
  font-family: var(--disp);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: .2rem;
}
.hero-mini span {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
}

@media (max-width: 979px) {
  .splash__aside { max-width: 520px; }
}

@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* marquee */
.ticker {
  background: var(--copper);
  color: var(--ink);
  overflow: hidden;
  border-block: 1px solid rgba(0,0,0,.08);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: .85rem 0;
  font-family: var(--disp);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.01em;
  animation: tick 28s linear infinite;
}
.ticker__track span { white-space: nowrap; opacity: .9; }
.ticker__track span::before {
  content: "◆";
  margin-right: 2.5rem;
  opacity: .45;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* buttons */
.b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 50px;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: .94rem;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
.b:hover { transform: translateY(-2px); }
.b--brand, .b--lime {
  background: var(--copper);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(227,162,58,.35);
}
.b--brand:hover, .b--lime:hover { background: #EBB14A; }
.b--line, .b--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.b--line:hover, .b--ghost:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
}
.b--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 28px rgba(11,13,18,.18);
}
.b--dark:hover { background: #1a2030; }
.b--full { width: 100%; }

/* ===== PRODUCTS — browser frame, contain, NOT cover bg ===== */
.stage {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(227,162,58,.12), transparent 55%),
    var(--sand);
}
.stage__head { margin-bottom: 2rem; }
.stage__head small {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: .55rem;
}
.stage__head h2 {
  font-family: var(--disp);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -.035em;
  font-weight: 800;
  line-height: 1.05;
  max-width: 16ch;
}
.stage__lead {
  margin-top: .75rem;
  color: var(--mute);
  font-weight: 500;
  max-width: 48ch;
  font-size: 1.02rem;
}
.stage__more {
  margin: .5rem 0 1.5rem;
  font-weight: 700;
}
.stage__more a { color: var(--copper-2); }
.stage__more a:hover { text-decoration: underline; }

/* services */
.svc {
  padding: 3.5rem 0 3rem;
  background: var(--sand);
}
.svc__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .svc__grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.svc__item {
  position: relative;
  padding: 1.45rem 1.3rem 1.5rem;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line-d);
  box-shadow: 0 12px 32px rgba(11,13,18,.04);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  display: block;
  color: inherit;
}
.svc__item:hover {
  transform: translateY(-4px);
  border-color: rgba(200,135,42,.35);
  box-shadow: 0 20px 44px rgba(11,13,18,.08);
}
.svc__no {
  display: block;
  font-family: var(--disp);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: -.02em;
  color: var(--copper);
  margin-bottom: .85rem;
}
.svc__item h3 {
  font-family: var(--disp);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .45rem;
  line-height: 1.2;
}
.svc__item p {
  color: var(--mute);
  font-size: .94rem;
  font-weight: 500;
}

/* services detail page */
.svc--page { padding-top: 2rem; }
.svc-detail {
  display: grid;
  gap: 1.15rem;
}
.svc-detail__item {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line-d);
  box-shadow: 0 14px 36px rgba(11,13,18,.05);
  scroll-margin-top: 5.5rem;
}
@media (min-width: 860px) {
  .svc-detail__item {
    grid-template-columns: .95fr 1.15fr;
    gap: 1.75rem;
    padding: 1.85rem 1.75rem;
    align-items: start;
  }
}
.svc-detail__head h2 {
  font-family: var(--disp);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  letter-spacing: -.03em;
  font-weight: 800;
  margin: .35rem 0 .55rem;
  line-height: 1.15;
}
.svc-detail__lead {
  color: var(--mute);
  font-weight: 600;
  font-size: 1.02rem;
  max-width: 36ch;
}
.svc-detail__body p {
  color: var(--mute);
  font-weight: 500;
  margin-bottom: .85rem;
}
.svc-detail__body .ticks { margin-bottom: 1.15rem; }
.svc-detail__body .b { margin-top: .25rem; }

/* bottom CTA */
.cta {
  padding: 3rem 0;
  background: var(--ink);
  color: #fff;
  border-block: 1px solid var(--line);
}
.cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta__inner {
    grid-template-columns: 1.4fr auto;
    gap: 2rem;
  }
}
.cta h2 {
  font-family: var(--disp);
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  letter-spacing: -.03em;
  font-weight: 800;
  margin-bottom: .5rem;
}
.cta p {
  color: rgba(255,255,255,.58);
  font-weight: 500;
  max-width: 42ch;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.band {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(160deg, #fff, #F7F2EA);
  border: 1px solid rgba(11,13,18,.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 28px 60px rgba(11,13,18,.07);
}
@media (min-width: 900px) {
  .band {
    grid-template-columns: 1.15fr .95fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 1.6rem 1.5rem 1.5rem;
    margin-bottom: 2.25rem;
  }
  .band:nth-child(even) .browser { order: 2; }
  .band:nth-child(even) .band__text { order: 1; }
}

/* browser chrome — product image lives HERE properly */
.browser {
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(11,13,18,.12);
  box-shadow:
    0 20px 50px rgba(11,13,18,.14),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform .45s var(--ease);
}
.band:hover .browser {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-4px);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem .85rem;
  background: #1a1f2b;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.browser__bar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3a4154;
}
.browser__bar i:nth-child(1) { background: #FF5F57; }
.browser__bar i:nth-child(2) { background: #FEBC2E; }
.browser__bar i:nth-child(3) { background: #28C840; }
.browser__url {
  margin-left: .5rem;
  flex: 1;
  min-width: 0;
  padding: .28rem .7rem;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser__shot {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: top center;
  background: #0f131c;
}

.band__text { padding: .35rem .25rem 0; }
@media (min-width: 900px) { .band__text { padding: .5rem 1rem .5rem 0; } }
.band__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: .55rem;
}
.band__text h2 {
  font-family: var(--disp);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: -.03em;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: .55rem;
}
.band__text p {
  color: var(--mute);
  font-size: 1rem;
  font-weight: 500;
  max-width: 42ch;
  margin-bottom: 1rem;
}
.band__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-d);
}
.band__price {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}
.band__price span {
  font-family: var(--txt);
  font-size: .78rem;
  font-weight: 600;
  color: var(--mute);
  margin-left: .25rem;
}

/* ===== FLOW ===== */
.flow {
  position: relative;
  padding: 3.75rem 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.flow::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,162,58,.2), transparent 65%);
  top: -160px; right: -100px;
  pointer-events: none;
}
.flow__head { margin-bottom: 2rem; position: relative; }
.flow__head small {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .5rem;
}
.flow__head h2 {
  font-family: var(--disp);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -.035em;
  font-weight: 800;
  max-width: 12ch;
}
.flow__head p {
  margin-top: .65rem;
  color: rgba(255,255,255,.55);
  max-width: 38ch;
  font-weight: 500;
}
.flow__grid {
  display: grid;
  gap: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .flow__grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.flow__card {
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s;
}
.flow__card:hover {
  transform: translateY(-5px);
  border-color: rgba(227,162,58,.4);
}
.flow__num {
  font-family: var(--disp);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--copper);
  line-height: 1;
  margin-bottom: .9rem;
}
.flow__card h3 {
  font-family: var(--disp);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
}
.flow__card p {
  color: rgba(255,255,255,.55);
  font-size: .94rem;
  font-weight: 500;
}

/* ===== FAQ ===== */
.faq {
  padding: 3.5rem 0 4rem;
  background: var(--sand);
}
.faq__head { margin-bottom: 1.5rem; }
.faq__head small {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-bottom: .5rem;
}
.faq__head h2 {
  font-family: var(--disp);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  letter-spacing: -.035em;
  font-weight: 800;
}
.ask { display: grid; gap: .6rem; max-width: 700px; }
.ask details {
  background: var(--paper);
  border: 1px solid var(--line-d);
  border-radius: 16px;
  padding: 1.05rem 1.2rem;
  box-shadow: 0 8px 24px rgba(11,13,18,.04);
}
.ask summary {
  font-family: var(--disp);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.ask summary::-webkit-details-marker { display: none; }
.ask summary::after { content: "+"; color: var(--mute); font-weight: 500; }
.ask details[open] summary::after { content: "–"; color: var(--ink); }
.ask p { margin-top: .55rem; color: var(--mute); font-weight: 500; }

/* ===== INNER ===== */
.headband {
  position: relative;
  padding: 6.5rem 0 2.75rem;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.headband::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,162,58,.22), transparent 65%);
  top: -120px; right: -60px;
}
.headband h1 {
  position: relative;
  font-family: var(--disp);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  letter-spacing: -.035em;
  font-weight: 800;
}
.headband p {
  position: relative;
  margin-top: .5rem;
  color: rgba(255,255,255,.55);
  max-width: 48ch;
  font-weight: 500;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin-bottom: .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
}
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--copper); }

.kw {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.25rem;
}
.kw__tag {
  display: inline-flex;
  padding: .4rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--line-d);
  background: var(--sand);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-soft, #344054);
  letter-spacing: -.01em;
}
.pd-faq { margin-top: 1.75rem; }
.pd-faq .ask { max-width: none; }

.box {
  width: min(100% - 1.4rem, var(--max));
  margin: -1.4rem auto 2.75rem;
  background: var(--paper);
  border: 1px solid var(--line-d);
  border-radius: 22px;
  padding: 1.4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 50px rgba(11,13,18,.08);
}
@media (min-width: 768px) {
  .box {
    width: min(100% - 2rem, var(--max));
    margin: -1.6rem auto 3.25rem;
    padding: 1.85rem;
  }
}

.pd {
  width: min(100% - 1.4rem, var(--max));
  margin: -1.4rem auto 2.75rem;
  display: grid;
  gap: 1.15rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .pd { width: min(100% - 2rem, var(--max)); margin-bottom: 3.25rem; }
}
@media (min-width: 980px) {
  .pd { grid-template-columns: 1.3fr .8fr; align-items: start; }
}
.pd__main, .pd__buy {
  background: var(--paper);
  border: 1px solid var(--line-d);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(11,13,18,.06);
}
@media (min-width: 768px) {
  .pd__main, .pd__buy { padding: 1.5rem; }
}
.pd__main > img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line-d);
  background: #11151e;
  object-fit: contain;
  max-height: 400px;
  margin-bottom: 1.15rem;
}
.prose p { color: var(--mute); margin-bottom: .85rem; font-weight: 500; }
.rk-prose-h, .prose-h {
  font-family: var(--disp);
  font-size: 1.05rem;
  letter-spacing: -.02em;
  margin: 1.25rem 0 .45rem;
  font-weight: 700;
}
.rk-bullets, .ticks { margin: .3rem 0 1rem; }
.rk-bullets li, .ticks li {
  position: relative;
  padding: .32rem 0 .32rem 1.15rem;
  font-weight: 500;
  color: #2a2e3a;
}
.rk-bullets li::before, .ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .72rem;
  width: .4rem; height: .4rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(227,162,58,.2);
}
@media (min-width: 980px) {
  .pd__buy { position: sticky; top: 5.2rem; }
}
.pd__price {
  font-family: var(--disp);
  font-size: clamp(1.5rem, 3.5vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.pd__price small {
  display: block;
  margin-top: .2rem;
  font-family: var(--txt);
  font-size: .8rem;
  font-weight: 600;
  color: var(--mute);
}
.pd__inc {
  margin: 1rem 0;
  padding: 1rem;
  background: var(--sand);
  border-radius: 14px;
  border: 1px solid var(--line-d);
  font-size: .92rem;
}
.opt {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .9rem;
  margin-bottom: .5rem;
  border: 1px solid var(--line-d);
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  transition: .2s var(--ease);
}
.opt.on {
  border-color: rgba(200,135,42,.55);
  background: linear-gradient(135deg, rgba(227,162,58,.16), rgba(227,162,58,.04));
}
.opt input { margin-top: .15rem; accent-color: var(--copper-2); }
.opt strong { display: block; font-weight: 700; }
.opt .amt {
  font-family: var(--disp);
  font-size: .85rem;
  font-weight: 700;
  color: var(--copper-2);
}
.opt small { display: block; margin-top: .2rem; color: var(--mute); font-weight: 500; }
.pd__sum {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-d);
  font-weight: 700;
}
.pd__sum strong {
  font-family: var(--disp);
  font-size: 1.2rem;
}
.pd__buy .b { margin-top: .4rem; }
.gap { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .65rem; }
.b--line.ink, .gap .b--line {
  color: var(--ink);
  border-color: var(--line-d);
  background: #fff;
}

.demo-box {
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--line-d);
  background: linear-gradient(160deg, #fff, var(--sand));
}
.demo-box > p {
  color: var(--mute);
  font-weight: 500;
  margin-bottom: .75rem;
}
.demo-creds {
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-d);
}
@media (min-width: 520px) {
  .demo-creds { grid-template-columns: 1fr 1fr; }
}
.demo-creds div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem .85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-d);
}
.demo-creds span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
}
.demo-creds code {
  font-family: var(--txt);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}

.ft {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid var(--line);
}
.ft__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .ft__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
}
.ft__brand img { height: 28px; margin-bottom: .85rem; }
.ft__brand p {
  font-size: .92rem;
  font-weight: 500;
  max-width: 28ch;
  line-height: 1.5;
}
.ft h4 {
  font-family: var(--disp);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: .7rem;
}
.ft__grid a {
  display: block;
  padding: .25rem 0;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: color .15s;
}
.ft__grid a:hover { color: var(--copper); }
.ft__row {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 500;
}
@media (min-width: 640px) {
  .ft__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.ft__row a { color: var(--copper); font-weight: 700; }

.ft__pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .85rem 1.25rem;
  padding: 1.1rem 0 1.35rem;
  border-top: 1px solid var(--line);
}
.ft__pay-band {
  display: block;
  width: min(100%, 429px);
  height: auto;
  opacity: .92;
}
.pay-badges {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.pay-badges__label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--mute);
  margin: 0 0 .65rem;
}
.pay-badges img {
  display: block;
  width: min(100%, 429px);
  height: auto;
}

.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; margin-bottom: .35rem; font-size: .9rem; }
.field input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  min-height: 48px;
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line-d);
  background: #fff;
}
.field input:not([type="checkbox"]):not([type="radio"]):focus {
  outline: none;
  border-color: rgba(200,135,42,.55);
  box-shadow: 0 0 0 3px rgba(227,162,58,.18);
}
.field input[type="checkbox"],
.field input[type="radio"] {
  width: 1.05rem;
  height: 1.05rem;
  min-height: 0;
  padding: 0;
  margin: .15rem .55rem 0 0;
  flex-shrink: 0;
  accent-color: var(--copper-2);
  vertical-align: middle;
  cursor: pointer;
}
.check {
  display: flex !important;
  align-items: flex-start;
  gap: .55rem;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  cursor: pointer;
  line-height: 1.45;
  color: var(--ink);
}
.check input {
  width: 1.05rem !important;
  height: 1.05rem !important;
  min-height: 0 !important;
  margin: .2rem 0 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
  accent-color: var(--copper-2);
  cursor: pointer;
}
.alert {
  padding: .85rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.alert--ok { background: #ecfdf3; color: #027a48; }
.alert--no { background: #fef3f2; color: #b42318; }

.box.prose h2,
.box.prose p[style*="font-size:18px"] {
  font-family: var(--disp);
  letter-spacing: -.02em;
  font-weight: 700;
}
.box.prose p { color: var(--mute); margin-bottom: .85rem; font-weight: 500; }
.box.prose b, .box.prose strong { color: var(--ink); }

.auth {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 60% 45% at 20% 20%, rgba(227,162,58,.22), transparent 55%),
    var(--ink);
}
.auth__card {
  width: min(100%, 430px);
  background: var(--paper);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
}
.auth__card > a {
  display: flex;
  justify-content: center;
  background: var(--ink);
  border-radius: 14px;
  padding: .95rem;
  margin-bottom: 1.25rem;
}
.auth__card img { height: 28px; margin: 0; }
.auth__card h1 {
  font-family: var(--disp);
  font-size: 1.4rem;
  letter-spacing: -.025em;
  text-align: center;
  margin-bottom: .3rem;
  font-weight: 800;
}
.auth__card > p {
  text-align: center;
  color: var(--mute);
  margin-bottom: 1.25rem;
  font-size: .95rem;
  font-weight: 500;
}
.auth__links {
  margin-top: 1rem;
  text-align: center;
  font-size: .9rem;
  color: var(--mute);
  font-weight: 500;
}
.auth__links a { font-weight: 700; color: var(--ink); }
.field--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  font-size: .9rem;
}
.check a { font-weight: 700; color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.check span { color: var(--mute); font-weight: 500; font-size: .88rem; }

.catalog { padding: 1.5rem 0 3rem; background: var(--sand); }
.catalog .band {
  width: min(100% - 1.4rem, var(--max));
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .catalog .band { width: min(100% - 2rem, var(--max)); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track, .splash__atm .orb { animation: none !important; }
}
