:root {
  color-scheme: dark;
  --ink: #f4f8fa;
  --muted: #8f9aa5;
  --muted-strong: #b9c1c8;
  --cyan: #2edcff;
  --cyan-soft: #9ceeff;
  --lime: #c6ff68;
  --bg: #07090c;
  --bg-deep: #040608;
  --panel: #0d1116;
  --panel-light: #121820;
  --line: rgba(196, 219, 230, 0.13);
  --line-strong: rgba(196, 219, 230, 0.23);
  --radius: 22px;
  --container: min(1380px, calc(100vw - 48px));
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(46, 220, 255, 0.1), transparent 27rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.cymatics-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
  mix-blend-mode: screen;
}

::selection {
  background: var(--cyan);
  color: #001013;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--cyan);
  color: #001013;
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(1160px, calc(100vw - 28px));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 8px 10px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 11, 15, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
}

.brand img,
.footer-brand img {
  border-radius: 10px;
}

.brand span,
.footer-brand div {
  display: grid;
}

.brand strong,
.footer-brand strong {
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand small,
.footer-brand span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 620;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.language-switcher button {
  min-width: 31px;
  height: 29px;
  padding: 0 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--ink);
  color: #080b0e;
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 11px;
  background: var(--ink);
  color: #080b0e;
  font-size: 0.8rem;
  font-weight: 760;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--cyan-soft);
  transform: translateY(-1px);
}

.header-cta svg,
.button svg,
.text-link svg,
.download-arrow {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  width: var(--container);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(160px, 18vh, 210px) 0 0;
}

.hero-glow {
  position: absolute;
  top: 3rem;
  left: 50%;
  width: min(70vw, 880px);
  aspect-ratio: 1.9;
  border: 1px solid rgba(46, 220, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 220, 255, 0.14), rgba(73, 70, 255, 0.05) 35%, transparent 67%);
  filter: blur(24px);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.card-kicker,
.section-index,
.feature-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  color: var(--muted-strong);
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(198, 255, 104, 0.8);
}

.hero h1 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(3.5rem, 8.7vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.072em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--cyan-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86em;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 700px;
  margin: 32px auto 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.platform-cta-group {
  display: flex;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 760;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--cyan);
  box-shadow: 0 12px 36px rgba(46, 220, 255, 0.18);
  color: #031014;
}

.button-primary:hover {
  background: var(--cyan-soft);
  box-shadow: 0 16px 46px rgba(46, 220, 255, 0.26);
  transform: translateY(-2px);
}

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

.button-secondary:hover {
  border-color: rgba(46, 220, 255, 0.42);
  background: rgba(46, 220, 255, 0.08);
  transform: translateY(-2px);
}

.hero-note {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: clamp(72px, 9vw, 120px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #090c11;
  box-shadow:
    0 80px 140px rgba(0, 0, 0, 0.45),
    0 0 90px rgba(46, 220, 255, 0.06);
}

.stage-topbar {
  display: grid;
  height: 48px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.stage-topbar p {
  margin: 0;
}

.stage-topbar p span {
  color: var(--cyan);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #343c45;
}

.stage-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
}

.stage-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(198, 255, 104, 0.7);
}

.stage-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #05070a;
}

.stage-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
  content: "";
  pointer-events: none;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 11.111% 16.666%;
  opacity: 0.5;
  pointer-events: none;
}

.media-chip {
  position: absolute;
  bottom: 18px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 9, 13, 0.66);
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.media-chip-left {
  left: 18px;
}

.media-chip-right {
  right: 18px;
}

.video-toggle,
.product-demo-toggle {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(6, 9, 13, 0.66);
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(10px);
}

.video-toggle svg,
.product-demo-toggle svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.video-toggle .play-icon,
.product-demo-toggle .play-icon {
  display: none;
}

.video-toggle.is-paused .play-icon,
.product-demo-toggle.is-paused .play-icon {
  display: block;
}

.video-toggle.is-paused .pause-icon,
.product-demo-toggle.is-paused .pause-icon {
  display: none;
}

.proof-strip {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-strip > div {
  display: grid;
  min-height: 124px;
  align-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--cyan-soft);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(110px, 13vw, 190px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.7fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 70px;
}

.section-index {
  margin: 13px 0 0;
  color: var(--cyan);
}

.section-heading h2,
.feature-intro h2,
.faq-heading h2,
.download-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > div > p,
.feature-intro > p,
.faq-heading > p,
.download-copy > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(46, 220, 255, 0.07), transparent 25rem),
    var(--panel);
}

.bento-wide {
  grid-column: 1 / -1;
  min-height: 680px;
}

.bento-tall {
  grid-row: span 2;
}

.card-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(28px, 4vw, 54px);
}

.compact-copy {
  padding-bottom: 28px;
}

.card-kicker {
  color: var(--cyan);
}

.card-copy h3 {
  max-width: 660px;
  margin: 14px 0 0;
  font-size: clamp(1.7rem, 3.1vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.bento-card:not(.bento-wide) .card-copy h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.55rem);
}

.card-copy p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.product-shot {
  position: relative;
  width: calc(100% - 34px);
  flex: 1;
  margin: 0 17px -1px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px 14px 0 0;
  background: #06090d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.product-shot::after {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}

.product-shot img,
.product-shot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bento-card:hover .product-shot img,
.bento-card:hover .product-shot video {
  transform: scale(1.014);
}

.product-shot-overview {
  width: calc(100% - 108px);
  margin-right: 54px;
  margin-left: 54px;
}

.product-shot-video video {
  object-position: top center;
}

.product-demo-toggle {
  top: 16px;
  right: 16px;
}

.product-shot-portrait img {
  object-position: 58% top;
}

.features {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.feature-intro {
  position: sticky;
  top: 130px;
}

.feature-intro .section-index,
.faq-heading .section-index {
  margin: 0 0 30px;
}

.feature-intro h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.85rem;
  font-weight: 720;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.feature-row h3 {
  margin: -7px 0 8px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 630;
  letter-spacing: -0.035em;
}

.feature-row p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.feature-tag {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.55rem;
  white-space: nowrap;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
  overflow: hidden;
}

.step {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: var(--panel);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.step-icon {
  display: grid;
  width: 92px;
  height: 92px;
  margin-top: 64px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(46, 220, 255, 0.04);
  color: var(--cyan);
  place-items: center;
}

.step-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.step h3 {
  margin: 46px 0 10px;
  font-size: 1.45rem;
  font-weight: 630;
  letter-spacing: -0.03em;
}

.step p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.download-section {
  padding-top: 70px;
}

.download-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.8fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  min-height: 610px;
  padding: clamp(42px, 6vw, 86px);
  overflow: hidden;
  border: 1px solid rgba(46, 220, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 80%, rgba(64, 85, 255, 0.19), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(46, 220, 255, 0.16), transparent 28%),
    #0b1015;
}

.download-panel::before {
  position: absolute;
  top: -180px;
  right: -70px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(46, 220, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(46, 220, 255, 0.018),
    0 0 0 140px rgba(46, 220, 255, 0.012);
  content: "";
}

.download-copy,
.download-options {
  position: relative;
  z-index: 1;
}

.download-copy h2 {
  font-size: clamp(3rem, 5.2vw, 5.6rem);
}

.download-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.download-copy li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.59rem;
}

.download-options {
  display: grid;
  gap: 12px;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 8, 11, 0.68);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.download-card:hover,
.download-card.is-recommended {
  border-color: rgba(46, 220, 255, 0.45);
  background: rgba(15, 29, 35, 0.82);
  transform: translateY(-2px);
}

.platform-icon {
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  place-items: center;
}

.platform-icon svg {
  width: 24px;
  fill: currentColor;
}

.download-card > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.download-card strong {
  font-size: 0.98rem;
}

.download-card small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.59rem;
}

.download-arrow {
  color: var(--cyan);
}

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

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 16px;
}

.support-card {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.support-card-copy {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 52px);
}

.support-card-copy h3 {
  max-width: 640px;
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.paypal-card .support-card-copy h3 {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}

.support-card-copy p {
  max-width: 570px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.bank-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.7fr);
  align-items: center;
  background:
    radial-gradient(circle at 20% 80%, rgba(46, 220, 255, 0.07), transparent 28rem),
    var(--panel);
}

.bank-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  margin: 24px 28px 24px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 8, 11, 0.76);
}

.qr-frame {
  padding: 8px;
  border-radius: 13px;
  background: #fff;
}

.qr-frame img {
  width: 100%;
  border-radius: 8px;
}

.bank-details {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.bank-details > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 14px;
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
}

.bank-details dt,
.paypal-account span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-details dd {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.74rem;
  text-align: right;
}

.bank-details .bank-amount dd {
  color: var(--lime);
  font-weight: 760;
}

.copy-account {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
  padding: 0 13px;
  border: 1px solid rgba(46, 220, 255, 0.28);
  border-radius: 10px;
  background: rgba(46, 220, 255, 0.08);
  color: var(--cyan-soft);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.copy-account:hover {
  background: rgba(46, 220, 255, 0.14);
}

.copy-account svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.copy-status {
  min-height: 18px;
  margin-top: 8px;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-align: center;
}

.paypal-card {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 112, 186, 0.22), transparent 24rem),
    linear-gradient(155deg, #0c121a, #0b0e13 65%);
}

.paypal-mark {
  display: grid;
  width: 86px;
  height: 86px;
  margin: 48px 48px 0;
  border: 1px solid rgba(78, 164, 255, 0.34);
  border-radius: 24px;
  background: #0877be;
  box-shadow: 0 20px 60px rgba(0, 112, 186, 0.2);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 3.4rem;
  font-style: italic;
  font-weight: 700;
  place-items: center;
}

.paypal-card .support-card-copy {
  padding-top: 34px;
  padding-bottom: 26px;
}

.paypal-account {
  display: grid;
  gap: 7px;
  margin: auto 48px 0;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.paypal-account strong {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.paypal-form {
  margin: 18px 48px 0;
}

.paypal-form button,
.contact-action > a {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: #f2f6fb;
  color: #08111b;
  cursor: pointer;
  font-weight: 760;
  transition: background 180ms ease, transform 180ms ease;
}

.paypal-form button:hover,
.contact-action > a:hover {
  background: var(--cyan-soft);
  transform: translateY(-2px);
}

.paypal-form button svg,
.contact-action > a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.paypal-card > small {
  margin: 10px 48px 38px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.55rem;
}

.contact-section {
  padding-top: 56px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
  min-height: 520px;
  padding: clamp(38px, 6vw, 80px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(198, 255, 104, 0.09), transparent 24rem),
    #0b1014;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.contact-copy h2 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(3rem, 5.7vw, 6rem);
  font-weight: 670;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

.contact-copy > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-action {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 8, 11, 0.72);
}

.contact-action ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.contact-action li {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  text-align: center;
}

.contact-action > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 22px;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 630;
  letter-spacing: -0.01em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -8px 48px 30px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  width: var(--container);
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a,
.site-footer > p {
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-links a:hover {
  color: var(--ink);
}

.site-footer > p {
  justify-self: end;
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(8, 11, 15, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .language-switcher {
    justify-self: stretch;
    margin: 4px 0 0;
  }

  .language-switcher button {
    flex: 1;
    height: 38px;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    justify-self: end;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: transparent;
    cursor: pointer;
    place-content: center;
    gap: 5px;
  }

  .nav-toggle span {
    width: 16px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .features,
  .faq {
    grid-template-columns: 1fr;
  }

  .feature-intro,
  .faq-heading {
    position: static;
  }

  .feature-intro {
    max-width: 780px;
  }

  .faq-heading {
    max-width: 700px;
  }

  .download-panel {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .bank-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .bank-content {
    width: min(440px, calc(100% - 56px));
    margin: 0 auto 36px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 28px);
    --radius: 17px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body::before {
    background-size: 40px 40px;
  }

  .cymatics-background {
    opacity: 0.52;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 60px;
    border-radius: 15px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 134px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero h1 em {
    margin-top: 5px;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .platform-cta-group {
    width: 100%;
    flex-direction: column;
  }

  .hero-stage {
    margin-top: 64px;
  }

  .stage-topbar {
    grid-template-columns: 1fr auto;
  }

  .stage-topbar p {
    display: none;
  }

  .stage-status {
    font-size: 0.52rem;
  }

  .media-chip {
    bottom: 8px;
    padding: 5px 6px;
    font-size: 0.46rem;
  }

  .media-chip-left {
    left: 8px;
  }

  .media-chip-right {
    right: 8px;
  }

  .video-toggle,
  .product-demo-toggle {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > div {
    min-height: 98px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-strip span {
    font-size: 0.68rem;
  }

  .section {
    padding: 104px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-index {
    margin-top: 0;
  }

  .section-heading h2,
  .feature-intro h2,
  .faq-heading h2,
  .download-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading > div > p,
  .feature-intro > p,
  .faq-heading > p,
  .download-copy > p {
    margin-top: 16px;
    font-size: 0.92rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-wide {
    grid-column: auto;
    min-height: 480px;
  }

  .bento-tall {
    grid-row: auto;
    min-height: 530px;
  }

  .card-copy {
    padding: 28px 24px;
  }

  .card-copy h3,
  .bento-card:not(.bento-wide) .card-copy h3 {
    font-size: 1.75rem;
  }

  .product-shot,
  .product-shot-overview {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
  }

  .product-shot img,
  .product-shot video {
    width: auto;
    min-width: 760px;
    max-width: none;
    object-position: top left;
  }

  .product-shot-portrait img {
    object-position: 48% top;
  }

  .product-shot-video video {
    width: 100%;
    min-width: 0;
    height: 100%;
    object-position: 50% top;
  }

  .product-shot-video {
    flex: none;
    aspect-ratio: 16 / 10;
  }

  .features,
  .faq {
    gap: 64px;
  }

  .feature-row {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .feature-tag {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step-icon {
    margin-top: 40px;
  }

  .step h3 {
    margin-top: 36px;
  }

  .download-section {
    padding-top: 36px;
  }

  .download-panel {
    gap: 42px;
    min-height: auto;
    padding: 34px 22px;
    border-radius: 20px;
  }

  .download-panel::before {
    width: 350px;
    height: 350px;
  }

  .download-copy ul {
    gap: 6px;
    margin-top: 24px;
  }

  .download-card {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 88px;
    padding: 13px;
  }

  .platform-icon {
    width: 46px;
    height: 46px;
  }

  .download-card strong {
    font-size: 0.88rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
  }

  .support-card-copy {
    padding: 30px 24px;
  }

  .support-card-copy h3,
  .paypal-card .support-card-copy h3 {
    font-size: 2rem;
  }

  .bank-content {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 12px;
  }

  .paypal-mark {
    width: 68px;
    height: 68px;
    margin: 28px 24px 0;
    border-radius: 18px;
    font-size: 2.7rem;
  }

  .paypal-account,
  .paypal-form {
    margin-right: 24px;
    margin-left: 24px;
  }

  .paypal-card > small {
    margin-right: 24px;
    margin-bottom: 28px;
    margin-left: 24px;
  }

  .contact-section {
    padding-top: 28px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: auto;
    padding: 36px 22px;
    border-radius: 20px;
  }

  .contact-copy h2 {
    font-size: 3.25rem;
  }

  .contact-action {
    padding: 14px;
  }

  .contact-action ul {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding: 24px 0;
    font-size: 0.98rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .site-footer > p {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .cymatics-background {
    opacity: 0.48;
  }
}
