:root {
  --bg: #190203;
  --bg-deep: #130102;
  --bg-soft: #2a0708;
  --surface: rgba(35, 8, 9, 0.72);
  --surface-strong: rgba(44, 9, 11, 0.9);
  --surface-muted: rgba(255, 255, 255, 0.03);
  --ink: #fff3f4;
  --muted: #ccb3b6;
  --muted-strong: #e6d2d5;
  --primary: #f20d0d;
  --primary-dark: #bd0909;
  --border: rgba(242, 13, 13, 0.28);
  --border-soft: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --space-1: 0.45rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.4rem;
  --space-5: 2rem;
  --space-6: 2.8rem;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(65vw 65vw at 8% -10%, rgba(242, 13, 13, 0.2) 0%, transparent 62%),
    radial-gradient(58vw 58vw at 95% 4%, rgba(242, 13, 13, 0.14) 0%, transparent 62%),
    radial-gradient(120vw 80vw at 50% 115%, rgba(242, 13, 13, 0.1) 0%, transparent 66%),
    linear-gradient(180deg, #260506 0%, var(--bg) 42%, var(--bg-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.mode-hub {
  color: #17212b;
  background:
    radial-gradient(68vw 58vw at 8% -12%, rgba(242, 13, 13, 0.12) 0%, transparent 60%),
    radial-gradient(55vw 48vw at 95% 5%, rgba(242, 13, 13, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #f8f9fc 0%, #f2f4f8 100%);
}

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

button,
input,
select {
  font: inherit;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.42;
}

.ambient-orb-left {
  width: 34rem;
  height: 46rem;
  left: -12rem;
  top: 14vh;
  background: rgba(242, 13, 13, 0.38);
  transform: rotate(26deg);
}

.ambient-orb-right {
  width: 40rem;
  height: 52rem;
  right: -15rem;
  bottom: -14rem;
  background: rgba(242, 13, 13, 0.25);
  transform: rotate(-16deg);
}

.ambient-orb-center {
  width: 26rem;
  height: 26rem;
  left: 50%;
  top: 46vh;
  transform: translateX(-50%);
  background: rgba(105, 15, 18, 0.42);
}

.page {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 4.2rem;
}

.nav {
  width: 100%;
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.72rem 1.08rem;
  backdrop-filter: blur(12px);
  background: rgba(25, 2, 3, 0.74);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.25);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  display: inline-grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(242, 13, 13, 0.38);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-family: var(--mono);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.locale-control {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-family: var(--mono);
}

.locale-control select {
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.72rem;
}

.main {
  margin-top: var(--space-5);
}

.screen {
  display: none;
  animation: fadeUp 0.5s ease;
}

.screen-active {
  display: block;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.2rem, 3vw, 2.4rem);
  min-height: clamp(360px, 58vh, 640px);
  box-shadow: none;
  background: var(--bg-soft);
  display: block;
  margin-bottom: var(--space-5);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/claudio.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(42, 7, 8, 0.9) 0%,
      rgba(42, 7, 8, 0.9) 18%,
      rgba(42, 7, 8, 0.54) 24%,
      rgba(42, 7, 8, 0.2) 30%,
      rgba(42, 7, 8, 0) 36%
    ),
    linear-gradient(180deg, rgba(14, 2, 4, 0.12) 0%, rgba(14, 2, 4, 0.42) 100%);
}

.hero-main {
  display: flex;
  align-items: flex-end;
  min-height: inherit;
}

.hero-copy {
  min-width: 0;
  max-width: min(62ch, 56%);
}

.hero-copy h1 {
  margin: var(--space-1) 0 var(--space-2);
  font-size: clamp(2.35rem, 6.1vw, 5.2rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
  max-width: 13ch;
  text-wrap: balance;
}

.subhead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.48;
  color: var(--muted-strong);
  max-width: 44ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff7676;
  font-family: var(--mono);
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.hero-note {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 52ch;
  line-height: 1.45;
}

.trust-list {
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-list li {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-family: var(--mono);
}

.card-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f28f8f;
  margin: 0;
}

.card-meta {
  color: var(--muted-strong);
  line-height: 1.45;
  font-size: 0.93rem;
  margin: 0.42rem 0 0;
  max-width: none;
}

#qr-canvas {
  border: 0;
  border-radius: 14px;
  background: #fff;
  display: block;
  margin: 0 auto;
  width: min(100%, 260px);
  height: auto;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.qr-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-family: var(--mono);
}

.qr-meta-landing {
  justify-content: center;
  flex-wrap: wrap;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(14, 2, 4, 0.72);
  backdrop-filter: blur(5px);
}

.qr-modal[hidden] {
  display: none;
}

.qr-modal-card {
  position: relative;
  width: min(100%, 940px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(95% 120% at 50% 0%, rgba(242, 13, 13, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, rgba(46, 8, 10, 0.96) 0%, rgba(25, 4, 6, 0.98) 100%);
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.48);
  padding: 1.15rem;
}

.qr-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 1rem;
  align-items: stretch;
}

.qr-modal-instructions {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}

.qr-modal-instructions h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.modal-intro {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.45;
  font-size: 0.9rem;
}

.modal-steps {
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.modal-steps li {
  display: grid;
  grid-template-columns: 1.85rem 1fr;
  gap: 0.62rem;
  align-items: flex-start;
}

.modal-step-number {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.58rem;
  display: inline-grid;
  place-items: center;
  font-size: 0.79rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #ff2f2f 0%, var(--primary) 100%);
  box-shadow: 0 9px 20px rgba(242, 13, 13, 0.36);
}

.modal-steps h3 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink);
}

.modal-steps p {
  margin: 0.16rem 0 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.82rem;
}

.qr-modal-qr {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(100% 90% at 50% 0%, rgba(242, 13, 13, 0.11) 0%, transparent 65%),
    rgba(255, 255, 255, 0.03);
  padding: 1rem;
  display: grid;
  gap: 0.78rem;
  align-content: start;
}

.qr-modal-qr .card-label {
  margin: 0;
}

.qr-modal-qr .card-meta {
  margin: 0;
  max-width: 40ch;
}

.modal-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
}

.qr-modal #qr-canvas {
  margin-top: 0.1rem;
}

.status-dot {
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(242, 13, 13, 0.7);
  animation: pulseDot 1.8s infinite;
}

.qr-panel-footer {
  display: grid;
  gap: var(--space-2);
  justify-items: center;
  margin-top: 0.2rem;
}

.qr-panel-footer .muted {
  margin: 0;
  text-align: center;
}

.section-band {
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
  border: 1px solid var(--border-soft);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.45rem, 3.6vw, 2.8rem);
  background:
    radial-gradient(115% 130% at 14% -18%, rgba(242, 13, 13, 0.2) 0%, transparent 58%),
    linear-gradient(180deg, rgba(38, 8, 10, 0.76) 0%, rgba(21, 5, 7, 0.82) 100%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  flex-wrap: wrap;
  padding: clamp(0.9rem, 1.8vw, 1.3rem) clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1.25rem, 2.8vw, 2.2rem);
  border: 1px solid var(--border-soft);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.02);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
}

.trust-bar-item .material-symbols-outlined {
  font-size: 1.05rem;
  color: #ff8a8a;
}

.hero + .trust-bar {
  margin-top: 0;
}

.trust-bar + .section-band {
  margin-top: 0;
}

.hero + .section-band {
  margin-top: clamp(1.25rem, 2.8vw, 2.2rem);
}

.section-band h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.8vw, 2.95rem);
  letter-spacing: -0.02em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-kicker {
  margin: 0 0 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff7c7c;
  font-family: var(--mono);
}

.section-head {
  display: grid;
  gap: 0.62rem;
  margin-bottom: clamp(1.05rem, 2.3vw, 1.55rem);
}

.section-lead,
.section-head p {
  margin: 0;
  color: var(--muted-strong);
  max-width: 64ch;
  line-height: 1.58;
  font-size: clamp(0.96rem, 1.45vw, 1.1rem);
}

.about .primary-btn {
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
  margin-top: clamp(1.05rem, 2.2vw, 1.6rem);
}

.triptych-item {
  display: grid;
  gap: 0.42rem;
  padding: 0.1rem 1rem 0.2rem 0;
}

.triptych-item + .triptych-item {
  border-left: 1px solid var(--border-soft);
  padding-left: 1.3rem;
}

.triptych-item .material-symbols-outlined {
  font-size: 1.55rem;
  color: #ff8a8a;
}

.triptych-item h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.2;
}

.triptych-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.94rem;
}

.about-clarifier {
  margin: clamp(1.15rem, 2.3vw, 1.7rem) 0 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.52;
  max-width: 58ch;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.flow-step {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.86rem;
  align-items: flex-start;
  padding: clamp(0.95rem, 1.8vw, 1.35rem) 1.15rem;
}

.flow-step + .flow-step {
  border-left: 1px solid var(--border-soft);
}

.flow-index {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-size: 0.94rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #ff3535 0%, var(--primary) 100%);
  box-shadow: 0 10px 22px rgba(242, 13, 13, 0.36);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--ink);
  line-height: 1.28;
}

.step-desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.use-cases {
  background:
    radial-gradient(120% 130% at 8% -20%, rgba(242, 13, 13, 0.22) 0%, transparent 58%),
    linear-gradient(180deg, rgba(44, 8, 10, 0.82) 0%, rgba(23, 5, 7, 0.9) 100%);
}

.use-case-rail {
  margin-top: 0.55rem;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.use-case-row {
  display: grid;
  grid-template-columns: 6.4rem minmax(210px, 0.95fr) minmax(0, 1.3fr);
  gap: clamp(1rem, 2.1vw, 1.8rem);
  align-items: center;
  padding: clamp(1.1rem, 2.1vw, 1.6rem) 0.2rem;
  border-top: 1px solid var(--border-soft);
}

.use-case-row:first-child {
  border-top: 0;
}

.use-case-marker {
  display: grid;
  gap: 0.5rem;
  justify-items: start;
}

.use-case-number {
  font-family: var(--mono);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  color: #ff8c8c;
  letter-spacing: 0.06em;
  line-height: 1;
}

.use-case-marker .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  border-radius: 0.68rem;
  display: grid;
  place-items: center;
  font-size: 1.16rem;
  color: #ffb5b5;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.use-case-row h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.36rem);
  color: var(--ink);
  line-height: 1.25;
}

.use-case-row p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.97rem;
  line-height: 1.58;
  max-width: 62ch;
}

.how-footnote {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.52;
  padding-top: clamp(0.8rem, 1.5vw, 1.1rem);
  border-top: 1px solid var(--border-soft);
}

.how-footnote a {
  color: #ff8a8a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.how-footnote a:hover {
  color: var(--ink);
}

.pricing-trial-banner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.88rem 1.15rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(242, 13, 13, 0.32);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(120% 180% at 0% 50%, rgba(242, 13, 13, 0.18) 0%, transparent 65%),
    rgba(242, 13, 13, 0.06);
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.45;
}

.pricing-trial-banner .material-symbols-outlined {
  font-size: 1.2rem;
  color: #ff8a8a;
  flex-shrink: 0;
}

.pricing-price {
  margin: 0.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.pricing-features {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.pricing-features li {
  font-size: 0.86rem;
  color: var(--muted-strong);
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: #ff7676;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.06rem;
}

.pricing-featured {
  position: relative;
  border: 1px solid rgba(242, 13, 13, 0.45) !important;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(130% 160% at 50% 0%, rgba(242, 13, 13, 0.2) 0%, transparent 65%),
    rgba(255, 255, 255, 0.03) !important;
  padding: 1.15rem 1.3rem !important;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3535 0%, var(--primary) 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  box-shadow: 0 6px 18px rgba(242, 13, 13, 0.35);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.45rem);
}

.proof-metric {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--border-soft);
}

.proof-value {
  font-size: clamp(1.36rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.08;
}

.proof-label {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
  font-family: var(--mono);
}

.privacy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 2.8vw, 2.4rem);
}

.privacy-copy p {
  margin: 0.72rem 0 0;
  color: var(--muted-strong);
  line-height: 1.58;
  font-size: 1rem;
  max-width: 54ch;
}

.privacy-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.privacy-points li {
  border-top: 1px solid var(--border-soft);
  padding: 1.05rem 0;
  color: var(--muted-strong);
  line-height: 1.52;
  font-size: 0.95rem;
}

.privacy-points li:first-child {
  border-top: 0;
  padding-top: 0;
}

.cta-band {
  margin-bottom: clamp(2.3rem, 4vw, 3.5rem);
  border: 1px solid rgba(242, 13, 13, 0.34);
  border-radius: var(--radius);
  padding: clamp(1.45rem, 3.2vw, 2.5rem);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(242, 13, 13, 0.22) 0%, transparent 65%),
    linear-gradient(180deg, rgba(58, 10, 12, 0.9) 0%, rgba(31, 6, 8, 0.95) 100%);
  text-align: center;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  letter-spacing: -0.02em;
  max-width: 22ch;
  line-height: 1.08;
}

.cta-band p {
  margin: 0;
  color: var(--muted-strong);
  max-width: 56ch;
  line-height: 1.55;
  font-size: 1.02rem;
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: clamp(1.15rem, 2.4vw, 2rem);
  background:
    radial-gradient(95% 100% at 80% -20%, rgba(242, 13, 13, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(46, 9, 10, 0.9) 0%, rgba(23, 4, 5, 0.94) 100%);
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto var(--space-4);
}

.panel-header h2 {
  margin: 0 0 var(--space-1);
  font-size: clamp(1.6rem, 3.5vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.panel-header p {
  margin: 0;
  color: var(--muted-strong);
  max-width: 52ch;
  line-height: 1.5;
}

.panel-hub {
  max-width: 940px;
}

.hub-tutorial {
  margin: var(--space-3) 0 var(--space-4);
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.hub-tutorial li {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.82rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.42;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hub-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(242, 13, 13, 0.12);
  color: #ffd6d6;
  font-size: 0.71rem;
  font-family: var(--mono);
  margin-bottom: var(--space-3);
}

.success-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
}

.form {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
}

.form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: var(--muted-strong);
}

.form input,
.form select {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.form input::placeholder {
  color: #b89295;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--muted-strong);
}

.form-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-1);
}

.form-status {
  font-size: 0.78rem;
  color: var(--muted);
}

.faq {
  margin-top: clamp(2.4rem, 4.2vw, 3.8rem);
  display: grid;
  gap: 0.95rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: clamp(1.45rem, 3.1vw, 2.45rem);
  background:
    radial-gradient(105% 120% at 12% 0%, rgba(242, 13, 13, 0.14) 0%, transparent 54%),
    linear-gradient(180deg, rgba(33, 6, 8, 0.68) 0%, rgba(19, 4, 6, 0.76) 100%);
}

.faq h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.faq-item {
  border-top: 1px solid var(--border-soft);
  padding: 1.05rem 0;
}

.faq-item:first-of-type {
  border-top: 0;
  padding-top: 0.2rem;
}

.faq-item h3 {
  margin: 0 0 0.42rem;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  margin-top: var(--space-6);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-title {
  color: var(--muted-strong);
  margin-bottom: var(--space-2);
  font-size: 1rem;
}

.footer-meta {
  color: #9d7e82;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--mono);
}

body.mode-hub .ambient-orb-left {
  background: rgba(242, 13, 13, 0.14);
}

body.mode-hub .ambient-orb-right {
  background: rgba(242, 13, 13, 0.1);
}

body.mode-hub .ambient-orb-center {
  background: rgba(242, 13, 13, 0.08);
}

body.mode-hub .nav {
  border-color: rgba(18, 27, 39, 0.15);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
}

body.mode-hub .logo-text {
  color: #111827;
}

body.mode-hub .logo-sub {
  color: #8494ac;
}

body.mode-hub .nav-links a {
  color: #495468;
}

body.mode-hub .nav-links a:hover {
  color: #111827;
}

body.mode-hub .locale-control {
  color: #50617b;
}

body.mode-hub .locale-control select {
  border-color: #ccd5e2;
  background: #fff;
  color: #0f172a;
}

body.mode-hub .panel {
  border-color: #e2e8f0;
  background: #fff;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

body.mode-hub .panel-header h2 {
  color: #111827;
}

body.mode-hub .panel-header p {
  color: #5b6475;
}

body.mode-hub .hub-tutorial li {
  border-color: #dde4ee;
  background: #f7f9fc;
  color: #334155;
}

body.mode-hub .hub-status {
  border-color: #f0b6b6;
  background: #fff2f2;
  color: #9e1212;
}

body.mode-hub .form label {
  color: #334155;
}

body.mode-hub .form input,
body.mode-hub .form select {
  border-color: #d4dbe6;
  background: #fff;
  color: #0f172a;
}

body.mode-hub .form input::placeholder {
  color: #90a0b6;
}

body.mode-hub .form-status {
  color: #4b5563;
}

body.mode-hub .ghost-btn {
  border-color: #d2d9e4;
  background: #fff;
  color: #243141;
}

body.mode-hub .ghost-btn:hover {
  background: #f7f9fc;
  border-color: #c4cfdd;
}

body.mode-hub .text-btn {
  color: #4b5563;
}

body.mode-hub .text-btn:hover {
  color: #111827;
}

body.mode-hub .footer {
  border-top-color: #d9e0ea;
}

body.mode-hub .footer-title {
  color: #344254;
}

body.mode-hub .footer-meta {
  color: #6b7280;
}

.primary-btn,
.ghost-btn,
.text-btn {
  border-radius: 999px;
  padding: 0.74rem 1.12rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.86rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease;
}

.primary-btn {
  background: linear-gradient(180deg, #ff2f2f 0%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(242, 13, 13, 0.4);
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(242, 13, 13, 0.45);
}

.primary-btn:active {
  transform: translateY(0);
}

.ghost-btn {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted-strong);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border);
}

.text-btn {
  border-color: transparent;
  background: transparent;
  color: var(--muted-strong);
}

.text-btn:hover {
  color: #fff;
}

.muted {
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 13, 13, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(242, 13, 13, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 13, 13, 0);
  }
}

@media (max-width: 980px) {
  .trust-bar {
    gap: 1rem 1.4rem;
    justify-content: flex-start;
  }

  .hero {
    min-height: clamp(340px, 52vh, 560px);
  }

  .hero-copy {
    max-width: min(60ch, 76%);
  }

  .triptych {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .triptych-item {
    padding: 0.05rem 0;
  }

  .triptych-item + .triptych-item {
    border-left: 0;
    border-top: 1px solid var(--border-soft);
    padding-top: 1.1rem;
    padding-left: 0;
  }

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

  .flow-step {
    padding: 1rem 0;
    border-top: 1px solid var(--border-soft);
  }

  .flow-step:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .flow-step + .flow-step {
    border-left: 0;
  }

  .use-case-row {
    grid-template-columns: 4.1rem minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: 0.85rem;
    padding: 1rem 0;
  }

  .use-case-number {
    font-size: 1.15rem;
  }

  .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1.2rem;
  }

  .privacy {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .qr-modal-layout {
    grid-template-columns: 1fr;
  }

  .qr-modal-qr {
    justify-self: center;
    width: min(100%, 520px);
  }

}

@media (max-width: 760px) {
  .trust-bar {
    gap: 0.75rem 1.1rem;
  }

  .trust-bar-item {
    font-size: 0.79rem;
  }

  .pricing-trial-banner {
    font-size: 0.84rem;
  }

  .pricing-featured {
    padding: 1rem !important;
  }

  .page {
    width: min(1200px, calc(100% - 1.1rem));
    padding-top: 0.95rem;
  }

  .nav {
    border-radius: 20px;
    padding: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-actions,
  .form-actions,
  .success-actions,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .faq {
    margin-top: var(--space-5);
    gap: 0.72rem;
  }

  .primary-btn,
  .ghost-btn,
  .text-btn {
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .section-band {
    padding: 1.12rem;
  }

  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .use-case-row {
    grid-template-columns: 1fr;
    gap: 0.52rem;
    padding: 1rem 0.1rem;
  }

  .use-case-marker {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.55rem;
  }

  .use-case-number {
    font-size: 1.02rem;
  }

  .flow-step {
    grid-template-columns: 1.95rem 1fr;
    gap: 0.7rem;
  }

  .flow-index {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 0.6rem;
    font-size: 0.84rem;
  }

  .faq-item h3 {
    font-size: 1.02rem;
  }

  .faq-item p,
  .use-case-row p,
  .step-desc,
  .triptych-item p {
    font-size: 0.92rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .qr-modal {
    padding: 0.72rem;
  }

  .qr-modal-card {
    padding: 0.88rem;
  }

  .qr-modal-instructions {
    padding: 0.82rem;
    gap: 0.65rem;
  }

  .modal-steps li {
    grid-template-columns: 1.6rem 1fr;
    gap: 0.52rem;
  }

  .modal-step-number {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.48rem;
    font-size: 0.72rem;
  }

  .qr-modal-qr {
    width: 100%;
    padding: 0.82rem;
  }

  .qr-panel-footer {
    justify-items: stretch;
  }

  .qr-panel-footer .ghost-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
