/* OrbytPay.com — ink / orbital brand site
   Light-first. No purple. No cream-terracotta. No newspaper broadsheet. */

:root {
  --ink: #0c0c0c;
  --ink-soft: #1a1a1a;
  --graphite: #2e2e2e;
  --mute: #5c5c5c;
  --line: #d6d6d2;
  --paper: #f4f4f1;
  --paper-bright: #fbfbf9;
  --signal: #c8f542;
  --signal-ink: #1a2a00;
  --orbit: rgba(12, 12, 12, 0.08);
  --max: 1360px;
  --gutter: clamp(1rem, 3.5vw, 1.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper-bright);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--graphite); }
button { font: inherit; }

/* Atmosphere grain */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

/* Full-bleed frame: header + landing hero span the viewport;
   content stays aligned to --max via padding (not a narrow shell box). */
header.wrap,
.hero.wrap {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding-inline: max(var(--gutter), calc((100% - var(--max)) / 2));
}

/* ——— Nav ——— */
.site-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1.15rem 0;
  min-width: 0;
}

.site-nav .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  white-space: nowrap;
  min-width: 0;
}

.site-nav .brand .mark {
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--paper-bright), 0 0 0 4px var(--ink);
  animation: pulse-orbit 3.2s var(--ease) infinite;
}

.site-nav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  font-size: 0.875rem;
  min-width: 0;
  flex: 1 1 auto;
}

.site-nav nav a { text-decoration: none; color: var(--mute); }
.site-nav nav a:hover { color: var(--ink); }

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: var(--ink);
  color: var(--paper-bright) !important;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav .nav-cta:hover { background: var(--graphite); }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: grid;
  align-content: end;
  align-items: end;
  padding: 1.25rem 0 4.5rem;
  /* Clip only the decorative bleed; never cut brand type. */
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(200, 245, 66, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 40% at 12% 80%, rgba(12, 12, 12, 0.06), transparent 60%),
    linear-gradient(165deg, #ffffff 0%, var(--paper) 48%, #ebebe6 100%);
}

.hero-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(12, 12, 12, 0.025) 11px,
      rgba(12, 12, 12, 0.025) 12px
    );
}

.hero-orbit {
  position: absolute;
  right: max(-8%, -4rem);
  top: 4%;
  width: min(42vw, 640px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.hero-orbit svg { width: 100%; height: 100%; }

.orbit-ring {
  fill: none;
  stroke: var(--ink);
  stroke-opacity: 0.18;
  stroke-width: 1;
}

.orbit-ring.thick { stroke-opacity: 0.28; stroke-width: 1.5; }

.orbit-dot {
  fill: var(--ink);
}

.orbit-signal {
  fill: var(--signal);
  stroke: var(--ink);
  stroke-width: 1.5;
}

.orbit-spin {
  transform-origin: 50% 50%;
  animation: spin-orbit 28s linear infinite;
}

.orbit-spin-rev {
  transform-origin: 50% 50%;
  animation: spin-orbit 42s linear infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(36rem, 100%);
  min-width: 0;
  padding: 0.35rem 0 0.5rem;
  container-type: inline-size;
  container-name: hero-copy;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.65rem, 11vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 1.25rem;
  max-width: 100%;
  overflow: visible;
  /* Extra room so tight Syne metrics / negative tracking never clip */
  padding-inline: 0.02em;
}

@supports (font-size: 1cqi) {
  .hero-brand {
    /* Track the copy column so the wordmark never outruns its lane */
    font-size: clamp(2.55rem, 18cqi, 6.2rem);
  }
}

.hero-brand .hero-eyebrow {
  display: block;
  color: var(--mute);
  font-weight: 700;
  font-size: clamp(0.72rem, 2.4vw, 1.05rem);
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  white-space: nowrap;
}

.hero-brand .hero-wordmark {
  display: block;
  width: max-content;
  max-width: 100%;
  line-height: 1.02;
  overflow: visible;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.6vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  max-width: 22ch;
}

.hero .lede {
  margin: 0 0 1.75rem;
  color: var(--mute);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  max-width: 36ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper-bright);
}

.btn-primary:hover { background: var(--graphite); color: var(--paper-bright); }

.btn-signal {
  background: var(--signal);
  color: var(--signal-ink);
  border-color: var(--ink);
}

.btn-signal:hover { background: #d4ff5c; color: var(--signal-ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--paper-bright); }

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
  position: relative;
}

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

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 0.85rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.section .sub {
  margin: 0;
  color: var(--mute);
  max-width: 42ch;
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse > :first-child { order: 2; }
}

/* Visual: transfer path */
.visual-transfer {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, #fff 0%, var(--paper) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.visual-transfer .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--orbit) 1px, transparent 1px),
    linear-gradient(90deg, var(--orbit) 1px, transparent 1px);
  background-size: 28px 28px;
}

.transfer-lane {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: var(--ink);
  opacity: 0.2;
  transform: translateY(-50%);
}

.transfer-packet {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: var(--signal);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  animation: packet-move 3.6s var(--ease) infinite;
}

.transfer-nodes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
}

.node {
  background: var(--paper-bright);
  border: 1.5px solid var(--ink);
  padding: 0.85rem 1rem;
  min-width: 7.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.35;
}

.node strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.node.out { background: var(--ink); color: var(--paper-bright); }

/* Checkout chrome (demo only) */
.checkout-chrome {
  background: var(--paper-bright);
  border: 1.5px solid var(--ink);
  padding: 1.25rem 1.35rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  max-width: 22rem;
  margin-inline: auto;
  box-shadow: 12px 12px 0 var(--ink);
}

.checkout-chrome .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.checkout-chrome .word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.checkout-chrome .secure {
  color: var(--mute);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-chrome .meta.fee {
  color: var(--ink-soft);
  font-weight: 550;
}

.checkout-chrome .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.15rem;
}

.checkout-chrome .meta { color: var(--mute); margin-bottom: 1.1rem; }

.checkout-chrome .field {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.55rem;
  background: #fff;
}

.checkout-chrome .field span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.2rem;
}

.checkout-chrome .pay-bar {
  margin-top: 1rem;
  background: var(--ink);
  color: var(--paper-bright);
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Feature strip — not hero cards; section interaction anchors */
.strip {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}

@media (min-width: 720px) {
  .strip { grid-template-columns: repeat(3, 1fr); }
}

.strip article {
  padding: 1.5rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .strip article {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
  .strip article:last-child { border-right: 0; }
}

.strip h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  margin: 0 0 0.45rem;
}

.strip p {
  margin: 0;
  color: var(--mute);
  font-size: 0.92rem;
}

.strip .num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--mute);
  margin-bottom: 0.65rem;
}

/* Code block for developers */
.code-panel {
  background: var(--ink);
  color: #e8e8e4;
  padding: 1.35rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.65;
  overflow-x: auto;
  border: 1.5px solid var(--ink);
}

.code-panel .c { color: #8a8a84; }
.code-panel .s { color: var(--signal); }
.code-panel .k { color: #fff; }

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(200, 245, 66, 0.1), transparent 55%),
    linear-gradient(180deg, #fff, var(--paper-bright));
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  max-width: 16ch;
}

.page-hero .lede {
  margin: 0;
  color: var(--mute);
  max-width: 44ch;
  font-size: 1.05rem;
}

.prose {
  max-width: 62ch;
}

.prose p { color: var(--graphite); margin: 0 0 1.1rem; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 2.2rem 0 0.7rem;
  max-width: none;
}
.prose ul { margin: 0 0 1.1rem; padding-left: 1.15rem; color: var(--graphite); }
.prose li { margin-bottom: 0.35rem; }
.prose a { color: var(--ink); font-weight: 600; }

.brand-timeline {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border-left: 2px solid var(--ink);
}
.brand-timeline > li {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9rem) 1fr;
  gap: 0.85rem 1.25rem;
  margin: 0 0 1.35rem;
  padding: 0 0 0 1.15rem;
  position: relative;
}
.brand-timeline > li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--paper-bright);
}
.brand-timeline time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--mute);
  padding-top: 0.15rem;
}
.brand-timeline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.brand-timeline p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .brand-timeline > li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: var(--paper-bright);
  padding: 4rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.6rem;
  max-width: 18ch;
  color: inherit;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: #b0b0a8;
  max-width: 40ch;
}

.cta-band .btn-primary {
  background: var(--signal);
  color: var(--signal-ink);
}

.cta-band .btn-primary:hover { background: #d4ff5c; }

.cta-band .btn-ghost {
  border-color: #666;
  color: var(--paper-bright);
}

.cta-band .btn-ghost:hover {
  background: var(--paper-bright);
  color: var(--ink);
  border-color: var(--paper-bright);
}

/* Footer */
.site-footer {
  padding: 2.75rem 0 2.25rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-footer p {
  margin: 0.55rem 0 0;
  color: var(--mute);
  font-size: 0.88rem;
  max-width: 28ch;
}

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.site-footer a { text-decoration: none; color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }

.footer-base {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--mute);
  font-family: var(--font-mono);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Legal stub note */
.legal-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--ink);
  background: var(--paper);
  font-size: 0.92rem;
  color: var(--graphite);
}

@keyframes spin-orbit {
  to { transform: rotate(360deg); }
}

@keyframes pulse-orbit {
  0%, 100% { box-shadow: 0 0 0 3px var(--paper-bright), 0 0 0 4px var(--ink); }
  50% { box-shadow: 0 0 0 3px var(--paper-bright), 0 0 0 7px rgba(12, 12, 12, 0.35); }
}

@keyframes packet-move {
  0% { left: 8%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(92% - 14px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-spin,
  .orbit-spin-rev,
  .transfer-packet,
  .site-nav .brand .mark {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  /* Keep brand type clear of the orbit on mid widths */
  .hero-orbit {
    width: min(38vw, 420px);
    right: max(-12%, -5rem);
    top: 2%;
    opacity: 0.55;
  }
  .hero-copy { max-width: min(32rem, 100%); }
}

@media (max-width: 720px) {
  .site-nav {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.65rem 0.75rem;
  }
  .site-nav nav .hide-sm { display: none; }
  .site-nav nav {
    gap: 0.3rem 0.85rem;
    font-size: 0.8rem;
  }
  .site-nav .nav-cta {
    padding: 0.4rem 0.7rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-content: start;
    justify-content: flex-start;
    min-height: auto;
    padding: 1.25rem 0 3.25rem;
    gap: 0.25rem;
  }

  .hero-orbit {
    position: relative;
    right: auto;
    top: auto;
    order: -1;
    width: min(72vw, 280px);
    max-width: 100%;
    margin: 0 0 0.35rem auto;
    opacity: 0.7;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0.15rem;
  }

  .hero-brand {
    font-size: clamp(2.5rem, 14vw, 3.75rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
  }

  @supports (font-size: 1cqi) {
    .hero-brand {
      font-size: clamp(2.4rem, 22cqi, 3.75rem);
    }
  }

  .hero-brand .hero-eyebrow {
    white-space: normal;
    letter-spacing: 0.12em;
  }

  .checkout-chrome { box-shadow: 8px 8px 0 var(--ink); }
}

@media (max-width: 420px) {
  .site-nav nav a:not(.nav-cta) {
    font-size: 0.78rem;
  }
  .hero-brand {
    font-size: clamp(2.35rem, 13.5vw, 3.1rem);
  }
  .cta-row .btn {
    width: 100%;
  }
}

/* ——— Checkout showcase (matches marketing B&W composition) ——— */
body.page-checkout {
  background: #0a0a0a;
}

body.page-checkout::before { opacity: 0.02; }

.ck-showcase {
  display: grid;
  min-height: 100svh;
}

@media (min-width: 960px) {
  .ck-showcase { grid-template-columns: 1.05fr 0.95fr; }
}

.ck-dark {
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(255,255,255,0.06), transparent 55%),
    linear-gradient(165deg, #1a1a1a 0%, #0a0a0a 55%, #050505 100%);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.ck-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 10%, transparent 75%);
  pointer-events: none;
}

.ck-dark-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem 2.5rem;
  max-width: 520px;
  margin-inline: auto;
}

.ck-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.ck-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ck-pill:hover {
  border-color: #fff;
  color: #fff;
}

.ck-pill.solid {
  background: #fff;
  color: #0a0a0a !important;
  border-color: #fff;
}

.ck-pill.solid:hover { background: #e8e8e8; color: #0a0a0a !important; }

.ck-pill.invert {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.ck-pill.solid.invert {
  background: #fff;
  color: #0a0a0a !important;
}

.ck-trustline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 550;
  color: rgba(245,245,245,0.72);
}

.ck-trustline span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ck-trustline .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  flex: none;
}

.ck-trustline .dot.live {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.45);
  animation: ck-pulse 2.4s ease-out infinite;
}

@keyframes ck-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
  70% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.ck-phone {
  width: min(100%, 300px);
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.55)) drop-shadow(0 8px 18px rgba(0,0,0,0.25));
  animation: ck-float 8s ease-in-out infinite;
}

@keyframes ck-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ck-phone-bezel {
  background: linear-gradient(165deg, #2a2a2a 0%, #141414 55%, #0a0a0a 100%);
  border-radius: 38px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.4);
}

.ck-notch {
  width: 88px;
  height: 8px;
  margin: 4px auto 10px;
  border-radius: 99px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.ck-screen {
  background: #f5f5f5;
  border-radius: 28px;
  overflow: hidden;
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.ck-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px 8px;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid #e0e0e0;
}

.ck-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 13px;
  color: #0a0a0a;
}

.ck-orb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
  align-self: center;
  flex: none;
}

.ck-orb::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0a0a0a;
  top: -2px;
  right: -1.5px;
  box-shadow: 0 0 0 1.5px #fff;
}

.ck-w2 { font-weight: 500; color: #6b6b6b; }

.ck-secure {
  font-size: 9.5px;
  font-weight: 650;
  color: #999;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.ck-progress { display: flex; gap: 4px; align-items: center; }
.ck-dot {
  width: 14px;
  height: 3px;
  border-radius: 99px;
  background: #e0e0e0;
}
.ck-dot.on { width: 22px; background: #0a0a0a; }
.ck-dot.done { background: #6b6b6b; }

.ck-rail {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 8px 10px 10px;
  font-size: 8.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  flex: none;
}
.ck-rail span { opacity: 0.4; }
.ck-rail .on { color: #0a0a0a; opacity: 1; }
.ck-rail .done { color: #6b6b6b; opacity: 0.85; }

.ck-stage {
  flex: 1;
  padding: 0 12px 14px;
  overflow: auto;
}

.ckd-panel {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  padding: 18px 14px 16px;
  text-align: center;
}

.ckd-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #0a0a0a;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.015em;
  border: 1px solid #e0e0e0;
}

.ckd-card-vis {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 14px auto 12px;
  aspect-ratio: 1.586;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a 0%, #141414 55%, #0a0a0a 100%);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
  color: #fff;
  text-align: left;
}

.ckd-card-vis::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 90% -10%, rgba(255,255,255,0.16), transparent 55%);
}

.ckd-cv-chip {
  position: absolute;
  top: 38px;
  left: 16px;
  width: 30px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, #e8e8e8, #cccccc);
  z-index: 1;
}

.ckd-cv-brand {
  position: absolute;
  top: 12px;
  right: 16px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  opacity: 0.92;
  z-index: 1;
}

.ckd-cv-amt {
  position: absolute;
  top: 12px;
  left: 16px;
  font-weight: 800;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  z-index: 1;
}

.ckd-cv-dots {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  opacity: 0.9;
  z-index: 1;
}

.ckd-card-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 2px 0 6px;
}

.ckd-card-sub {
  margin: 0 auto 4px;
  max-width: 28ch;
  font-size: 11.5px;
  line-height: 1.45;
  color: #6b6b6b;
  font-weight: 500;
}

.ckd-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.ckd-secure-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 2px;
  font-size: 10px;
  color: #999;
  font-weight: 600;
}

.ckd-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 10px auto 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0e0e0;
  font-size: 10px;
  font-weight: 550;
  color: #6b6b6b;
}

.ckd-mark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0a0a0a;
  flex: none;
}

.ck-meta {
  text-align: center;
  color: rgba(245,245,245,0.85);
}

.ck-caption-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.ck-caption-sub {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: rgba(245,245,245,0.55);
}

.ck-light {
  background: #ffffff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ck-light-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 1.5rem 1.5rem 2.5rem;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}

.ck-nav-rect {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  width: 100%;
  justify-content: flex-start;
}

.ck-nav-rect a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border-radius: 2px;
}

.ck-nav-rect a.is-on,
.ck-nav-rect a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.ck-light .checkout-chrome {
  width: 100%;
  max-width: 22rem;
  margin: 0;
}

.ck-light-note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--mute);
  text-align: center;
  max-width: 28rem;
}

.ck-live-band {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
}

.ck-live-band h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ck-live-band p {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  color: rgba(245,245,245,0.7);
  font-size: 0.95rem;
}

.ck-pill-row.band { justify-content: center; }

body.page-checkout .ck-foot {
  background: #0a0a0a;
  border-top: 1px solid #222;
  color: rgba(245,245,245,0.7);
}

body.page-checkout .ck-foot .brand { color: #fff; }
body.page-checkout .ck-foot h4 { color: rgba(245,245,245,0.55); }
body.page-checkout .ck-foot a { color: rgba(245,245,245,0.75); }
body.page-checkout .ck-foot a:hover { color: #fff; }
body.page-checkout .ck-foot p { color: rgba(245,245,245,0.55); }
body.page-checkout .ck-foot .footer-base {
  border-top-color: #222;
  color: rgba(245,245,245,0.45);
}

@media (prefers-reduced-motion: reduce) {
  .ck-phone,
  .ck-trustline .dot.live { animation: none; }
}

@media (max-width: 959px) {
  .ck-showcase { min-height: auto; }
  .ck-phone { width: min(100%, 280px); }
  .ck-screen { min-height: 460px; }
}
