:root {
  --bg: #080a12;
  --bg-soft: #111522;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.72);
  --muted-2: rgba(247, 243, 234, 0.52);
  --line: rgba(255, 255, 255, 0.13);
  --gold: #f2c879;
  --gold-2: #ffe3a6;
  --rose: #e9a1b6;
  --violet: #9b8cff;
  --cyan: #8ce8ff;
  --green: #89f0c2;
  --danger: #ff9b8e;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, #06070d 0%, #0b0f1b 48%, #070812 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(242, 200, 121, 0.16);
  border-radius: 50%;
}

body::before {
  width: 860px;
  height: 860px;
  left: -520px;
  top: -240px;
  border-right-color: transparent;
  transform: rotate(-18deg);
}

body::after {
  width: 720px;
  height: 720px;
  right: -430px;
  top: 320px;
  border-left-color: transparent;
  border-bottom-color: rgba(155, 140, 255, 0.28);
  transform: rotate(22deg);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; }

main {
  position: relative;
  z-index: 1;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(8, 10, 18, 0.72);
  backdrop-filter: blur(22px);
  border-radius: 0 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b0f1b;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(242, 200, 121, 0.08);
}

.brand-logo {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.brand-orbit {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(242, 200, 121, 0.42);
  border-radius: 50%;
  border-left-color: transparent;
  transform: rotate(-22deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong { font-size: 1rem; letter-spacing: 0; }
.brand-text small { color: var(--muted-2); font-size: 0.72rem; margin-top: 4px; }

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav { color: var(--muted); font-size: 0.92rem; }
.main-nav a, .login-link, .locale { transition: color .2s ease; }
.main-nav a:hover, .login-link:hover, .locale:hover { color: var(--text); }
.header-actions { gap: 12px; }
.login-link, .locale { color: var(--muted); font-size: 0.92rem; }
.locale.is-active { color: var(--gold); font-weight: 800; }
.inline { display: inline; margin: 0; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  padding: 12px 18px;
  color: #131016;
  background: linear-gradient(135deg, #fff0c8, #f2c879 45%, #e9a1b6);
  box-shadow: 0 18px 48px rgba(242, 200, 121, 0.25);
}

.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 64px rgba(242, 200, 121, 0.34);
}

.btn-small { padding: 11px 18px; font-size: 0.9rem; min-height: 40px; }
.btn-large { padding: 17px 24px; font-size: 1rem; min-height: 56px; }
.btn-primary { color: #131016; }

.btn-ghost,
.btn-secondary,
.button.secondary,
.link-button {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.btn-secondary,
.button.secondary {
  border-color: rgba(242, 200, 121, 0.35);
  background: rgba(242, 200, 121, 0.10);
}

.link-button {
  min-height: auto;
  padding: 0;
  color: var(--muted);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.nav-toggle {
  min-height: 46px;
  padding: 0;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.nav-toggle:hover {
  transform: none;
  box-shadow: none;
}

.full-width { width: 100%; }

.hero-section,
.section,
.logos-band,
.site-footer,
.page-section {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  padding: 96px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(137, 240, 194, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(137, 240, 194, 0.42); }
  70% { box-shadow: 0 0 0 12px rgba(137, 240, 194, 0); }
  100% { box-shadow: 0 0 0 0 rgba(137, 240, 194, 0); }
}

.hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  max-width: 820px;
}

.hero-copy h1 span {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ffffff, #ffe3a6 55%, #e9a1b6);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead,
.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-free-note {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--gold-2);
  font-weight: 800;
}

.trust-strip {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip strong { display: block; font-size: 1.1rem; color: var(--text); }
.trust-strip span { display: block; margin-top: 5px; color: var(--muted-2); font-size: 0.86rem; line-height: 1.35; }

.hero-arc,
.final-arc {
  position: absolute;
  border: 1px solid rgba(242, 200, 121, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-arc-left {
  width: 660px;
  height: 660px;
  left: -430px;
  top: 60px;
  border-right-color: transparent;
  transform: rotate(-18deg);
}

.hero-arc-right {
  width: 520px;
  height: 520px;
  right: -260px;
  top: 160px;
  border-left-color: transparent;
  border-bottom-color: rgba(155, 140, 255, 0.35);
  transform: rotate(22deg);
}

.premium-card,
.panel,
.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.panel,
.card {
  padding: 28px;
}

.panel.narrow { max-width: 640px; margin: 72px auto; }

.hero-card {
  padding: 18px;
  min-height: 560px;
  transform: rotate(1.2deg);
}

.mini-window {
  position: relative;
  z-index: 2;
  height: 100%;
  border-radius: 26px;
  background: rgba(5, 7, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.window-top {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted-2);
}

.window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.window-top span:first-child { background: var(--rose); }
.window-top span:nth-child(2) { background: var(--gold); }
.window-top span:nth-child(3) { background: var(--green); }
.window-top em { margin-left: auto; font-style: normal; font-size: 0.78rem; }

.chat-flow { padding: 24px; }

.message {
  max-width: 88%;
  padding: 16px 17px;
  border-radius: 20px;
  margin-bottom: 18px;
  line-height: 1.52;
  font-size: 0.95rem;
}

.user-msg,
.message.user {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.ai-msg,
.message.assistant {
  background: linear-gradient(135deg, rgba(242, 200, 121, 0.16), rgba(155, 140, 255, 0.12));
  border: 1px solid rgba(242, 200, 121, 0.22);
}

.protocol-panel,
.progress-panel {
  margin-top: 28px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(242, 200, 121, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.protocol-header span {
  display: block;
  color: var(--muted-2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}

.protocol-header strong {
  display: block;
  margin-top: 5px;
  font-size: 1.18rem;
}

.progress-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 22px 0 14px;
}

.progress-line span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.progress-line span.active {
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 10, 18, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
}

.floating-note strong,
.floating-note span { display: block; }
.floating-note strong { font-size: 0.88rem; }
.floating-note span { color: var(--muted-2); margin-top: 3px; font-size: 0.76rem; }
.note-one { top: 92px; right: -24px; }
.note-two { bottom: 74px; left: -28px; }

.logos-band {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.logos-band p {
  margin: 0;
  color: var(--muted-2);
  font-weight: 700;
  white-space: nowrap;
}

.keyword-row { display: flex; gap: 12px; flex-wrap: wrap; }

.keyword-row span,
.badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.86rem;
}

.badge {
  color: var(--gold-2);
  font-weight: 800;
  padding: 5px 10px;
}

.badge.danger { color: var(--danger); background: rgba(255, 155, 142, 0.12); }

.section {
  padding: 112px 0 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.method-copy h2,
.demo-text h2,
.pricing-copy h2,
.final-cta h2,
.page-title,
.panel h1 {
  margin: 14px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.panel h1.compact-page-title {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.section-heading p,
.method-copy p,
.demo-text p,
.pricing-copy p,
.final-cta p,
.panel p,
.card p {
  color: var(--muted);
  line-height: 1.72;
}

.comparison-grid,
.grid.cols-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.compare-card,
.protocol-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  padding: 30px;
}

.compare-card { position: relative; overflow: hidden; }
.compare-card h3 { font-size: 1.35rem; margin-bottom: 22px; }

.compare-card ul,
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card li,
.pricing-features li {
  position: relative;
  padding-left: 30px;
  margin: 15px 0;
  color: var(--muted);
  line-height: 1.55;
}

.compare-card li::before,
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.compare-card.muted { opacity: 0.78; }

.compare-card.highlighted {
  background:
    linear-gradient(145deg, rgba(242, 200, 121, 0.14), rgba(155, 140, 255, 0.10)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 200, 121, 0.30);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.halo-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -120px;
  border-radius: 50%;
  border: 1px solid rgba(242, 200, 121, 0.25);
}

.method-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.method-shell::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -350px;
  top: -190px;
  border: 1px solid rgba(242, 200, 121, 0.22);
  border-radius: 50%;
  border-left-color: transparent;
}

.method-copy { position: relative; z-index: 1; align-self: center; }

.method-steps,
.grid.cols-4,
.grid.cols-3,
.grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.method-steps { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.step-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 900;
}

.step-card h3 { margin-bottom: 10px; }
.step-card p, .protocol-card p { color: var(--muted); line-height: 1.6; margin-bottom: 0; }

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.protocol-card {
  min-height: 270px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.protocol-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 200, 121, 0.34);
  background: rgba(255, 255, 255, 0.075);
}

.protocol-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 28px;
  color: var(--gold);
  border: 1px solid rgba(242, 200, 121, 0.32);
  background: rgba(242, 200, 121, 0.08);
  font-size: 1.4rem;
}

.protocol-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: invert(88%) sepia(32%) saturate(706%) hue-rotate(343deg) brightness(102%) contrast(98%);
}

.protocol-card h3 { font-size: 1.18rem; line-height: 1.18; }

.demo-layout,
.chat-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.demo-sequence {
  position: relative;
  display: grid;
  gap: 16px;
}

.sequence-line {
  position: absolute;
  left: 25px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.08));
}

.sequence-item {
  position: relative;
  padding: 22px 24px 22px 66px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.sequence-item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 24px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  box-shadow: 0 0 0 8px rgba(242, 200, 121, 0.08);
}

.sequence-item span {
  display: block;
  color: var(--gold-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 8px;
}

.sequence-item p { color: var(--muted); margin: 0; line-height: 1.55; }

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 44px;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 42px;
  border: 1px solid rgba(242, 200, 121, 0.30);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

.pricing-copy h2 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  color: var(--gold-2);
}

.pricing-features {
  padding: 28px;
  border-radius: 26px;
  background: rgba(5, 7, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-features small {
  display: block;
  margin-top: 15px;
  color: var(--muted-2);
  text-align: center;
}

.pricing-features .btn {
  margin-top: 22px;
}

.pricing-page {
  display: grid;
  gap: 64px;
}

.pricing-page .section-heading.compact {
  margin-bottom: 24px;
}

.pricing-page .section-heading.compact h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.pricing-warning,
.pricing-advantages {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: var(--radius-lg);
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(242, 200, 121, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
}

.pricing-warning h2,
.pricing-advantages h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.pricing-warning p,
.pricing-advantages p,
.pricing-advantages li {
  color: var(--muted);
  line-height: 1.68;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pricing-plan-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.pricing-plan-card.is-featured {
  border-color: rgba(242, 200, 121, 0.38);
  background:
    linear-gradient(145deg, rgba(242, 200, 121, 0.13), rgba(155, 140, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.pricing-plan-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.pricing-plan-card strong {
  color: var(--gold-2);
  font-size: 1.65rem;
}

.pricing-plan-card ul,
.pricing-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-plan-card li,
.pricing-advantages li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}

.pricing-plan-card li::before,
.pricing-advantages li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.pricing-compare-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.5;
}

.pricing-compare-table thead th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-compare-table tbody th {
  color: var(--gold-2);
  width: 160px;
}

.pricing-compare-table tr:last-child th,
.pricing-compare-table tr:last-child td {
  border-bottom: 0;
}

.customer-proof-section {
  padding-top: 56px;
}

.customer-proof-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 92px;
  padding: 24px 28px;
  border: 1px solid rgba(242, 200, 121, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(242, 200, 121, 0.10), rgba(255, 255, 255, 0.05));
  text-align: center;
}

.customer-proof-card img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: invert(88%) sepia(32%) saturate(706%) hue-rotate(343deg) brightness(102%) contrast(98%);
}

.customer-proof-card p {
  margin: 0;
  color: var(--gold-2);
  font-weight: 850;
  line-height: 1.45;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.seo-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: rgba(255, 255, 255, 0.052);
}

.seo-panel.highlighted {
  border-color: rgba(242, 200, 121, 0.30);
  background: linear-gradient(145deg, rgba(242, 200, 121, 0.12), rgba(155, 140, 255, 0.08));
}

.seo-panel h2 {
  margin: 16px 0 14px;
  font-size: 2rem;
  line-height: 1.05;
}

.seo-panel p,
.seo-panel li {
  color: var(--muted);
}

.seo-panel ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.seo-panel li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.seo-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.internal-links-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.internal-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.internal-links-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(242, 200, 121, 0.25);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(242, 200, 121, 0.07);
  font-weight: 800;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.052);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 850;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 78px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.055);
}

.final-cta p { max-width: 680px; margin-left: auto; margin-right: auto; }

.final-arc {
  width: 780px;
  height: 780px;
  left: 50%;
  top: -560px;
  transform: translateX(-50%);
  border-bottom-color: transparent;
}

.site-footer {
  z-index: 1;
  margin-top: 80px;
  padding: 32px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-2);
}

.site-footer strong { color: var(--text); }
.site-footer p { margin: 8px 0 0; max-width: 420px; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }

.page-section { padding: 80px 0 0; }
.band { padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--line); }

.conversion-shell {
  max-width: 1040px;
  margin: 72px auto 0;
  display: grid;
  gap: 28px;
}

.conversion-hero h1 {
  max-width: 860px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.conversion-grid article,
.trial-recap {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.conversion-grid h2,
.conversion-form h2,
.trial-next h2,
.trial-recap h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.conversion-grid p,
.conversion-form p,
.trial-next p {
  color: var(--muted);
}

.trial-messages {
  margin-top: 28px;
}

.trial-interface .chat-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.trial-conversation {
  min-width: 0;
}

.trial-composer {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.trial-next {
  position: sticky;
  top: 112px;
}

.trial-recap {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

form.stack { display: grid; gap: 16px; }
.stack { display: grid; gap: 18px; }
label { display: grid; gap: 8px; color: var(--text); font-weight: 800; }

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(5, 7, 14, 0.64);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

input[type="radio"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(242, 200, 121, 0.46); }

.textarea-limit-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: -8px;
  color: var(--muted-2);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.45;
}

.textarea-help {
  max-width: 640px;
}

.textarea-counter {
  flex: 0 0 auto;
  color: var(--muted);
  font-weight: 800;
  font-style: normal;
}

.textarea-counter.is-near-limit {
  color: var(--gold-2);
}

textarea.is-over-limit {
  border-color: var(--danger);
}

.card ul,
.panel ul {
  color: var(--muted);
  line-height: 1.7;
}

.legal-document-disclaimer h2 + ul,
.legal-document-disclaimer h3 + ul {
  list-style: none;
  margin: 24px 0 30px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  color: #111521;
}

.legal-document-disclaimer h2 + ul li,
.legal-document-disclaimer h3 + ul li {
  position: relative;
  padding-left: 18px;
  color: #111521;
}

.legal-document-disclaimer h2 + ul li + li,
.legal-document-disclaimer h3 + ul li + li {
  margin-top: 10px;
}

.legal-document-disclaimer h2 + ul li::before,
.legal-document-disclaimer h3 + ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
}

.legal-document-disclaimer h2 + ul strong,
.legal-document-disclaimer h2 + ul a,
.legal-document-disclaimer h3 + ul strong,
.legal-document-disclaimer h3 + ul a {
  color: #05070d;
  font-weight: 950;
}

.legal-document-disclaimer h2 + ul a,
.legal-document-disclaimer h3 + ul a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

th, td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
}

th { color: var(--gold-2); background: rgba(255, 255, 255, 0.05); }
pre { white-space: pre-wrap; color: var(--muted); overflow: auto; }

.blog-page,
.blog-article {
  width: min(var(--max), calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.blog-search,
.blog-owner-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.blog-owner-filters {
  grid-template-columns: minmax(0, 1fr) 160px 160px auto;
  margin: 0;
}

.blog-locale-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 36px;
}

.blog-locale-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
}

.blog-locale-tabs a.is-active {
  color: #131016;
  border-color: transparent;
  background: linear-gradient(135deg, #fff0c8, #f2c879 45%, #e9a1b6);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.blog-card h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.blog-card p {
  color: var(--muted);
  line-height: 1.65;
}

.blog-read-link {
  margin-top: auto;
  color: var(--gold-2);
  font-weight: 850;
}

.empty-state {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.blog-article {
  max-width: 900px;
}

.blog-article-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.blog-article-head p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.blog-content {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  line-height: 1.78;
}

.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5 {
  margin: 30px 0 12px;
  color: var(--text);
  line-height: 1.15;
}

.blog-content p,
.blog-content ul {
  margin: 0 0 18px;
}

.blog-content a {
  color: var(--gold-2);
  font-weight: 800;
}

.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.blog-toolbar button {
  min-width: 42px;
  min-height: 38px;
  padding: 8px 12px;
  box-shadow: none;
}

.blog-content-editor {
  min-height: 420px;
}

.blog-editor label .meta {
  font-weight: 500;
  line-height: 1.45;
}

.blog-markdown-preview {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.blog-markdown-preview summary {
  cursor: pointer;
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 12px;
}

.blog-markdown-preview .blog-content {
  margin-top: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.choice-label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

.choice-label input {
  margin-top: 2px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flash {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(137, 240, 194, 0.28);
  border-radius: 18px;
  background: rgba(137, 240, 194, 0.10);
  color: var(--text);
}

.app-shell,
.owner-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.side-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.side-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.side-nav span {
  margin: 12px 12px 2px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.side-nav-home {
  color: var(--text) !important;
  background: rgba(242, 200, 121, 0.12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.member-top-nav {
  margin-left: auto;
}

.app-shell-chat {
  align-items: start;
}

.app-shell-chat .side-nav {
  align-self: start;
  align-content: start;
}

.chat-page {
  display: grid;
  gap: 18px;
}

.workflow-ribbon {
  position: sticky;
  top: 78px;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 10, 18, 0.86);
  backdrop-filter: blur(18px);
}

.workflow-ribbon span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.workflow-ribbon span.is-current {
  color: #131016;
  background: linear-gradient(135deg, #fff0c8, #f2c879);
  font-weight: 900;
}

.dialogue-overview,
.chat-panel {
  width: 100%;
}

.dialogue-title-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.dialogue-title-form input {
  width: 100%;
  min-height: 48px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 900;
}

.dialogue-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.dialogue-summary-grid div,
.dialogue-questions {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.052);
}

.dialogue-summary-grid span,
.dialogue-questions span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.dialogue-summary-grid strong {
  display: block;
  color: var(--gold-2);
  line-height: 1.28;
}

.dialogue-questions {
  margin-top: 12px;
}

.dialogue-questions ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.memory-strip li,
.memory-mini-list li {
  margin: 8px 0;
}

.muted-link {
  margin-left: 8px;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}

.check-row input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.memory-list {
  display: grid;
  gap: 14px;
}

.memory-card,
.memory-case-block {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.052);
}

.memory-card textarea {
  min-height: 92px;
}

.memory-mini-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.dialogue-list {
  display: grid;
  gap: 14px;
}

.dialogue-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.052);
}

.dialogue-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.dashboard-cockpit,
.account-grid {
  display: grid;
  gap: 22px;
}

.cockpit-hero {
  display: grid;
  gap: 14px;
}

.dashboard-action-copy {
  max-width: 760px;
  margin: 2px 0 0;
  color: var(--text);
  font-weight: 700;
}

.dashboard-choice-stack {
  width: min(100%, 520px);
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.dashboard-choice-stack .button,
.dashboard-choice-stack button {
  width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.dashboard-choice-stack span {
  color: var(--muted-2);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.billing-page {
  gap: 24px;
}

.billing-hero .lead {
  max-width: 920px;
}

.local-billing-badge {
  justify-self: start;
  border-radius: 999px;
  background: rgba(242, 200, 121, 0.12);
}

.section-mini-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-mini-heading h2 {
  margin: 8px 0;
}

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

.billing-plan-card {
  position: relative;
  display: grid;
  gap: 13px;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.052);
}

.billing-plan-card.is-featured {
  border-color: rgba(242, 200, 121, 0.46);
  background: rgba(242, 200, 121, 0.085);
}

.billing-plan-card h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.plan-badge {
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  color: #131016;
  background: linear-gradient(135deg, #fff0c8, #f2c879);
  font-size: 0.74rem;
  font-weight: 900;
}

.plan-price {
  margin: 0;
  color: var(--gold-2) !important;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.plan-duration {
  margin: -8px 0 0;
  color: var(--muted-2) !important;
  font-weight: 800;
}

.billing-plan-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.billing-plan-card .button {
  margin-top: 8px;
  justify-content: center;
  text-align: center;
}

.current-subscription-panel strong {
  color: var(--gold-2);
}

.cta-row,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.stat-card,
.case-row,
.receipt-lines div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.052);
}

.stat-card {
  min-height: 116px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  gap: 10px;
}

.stat-card span,
.case-row span,
.receipt-lines dt {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.stat-card strong {
  color: var(--gold-2);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.stat-card a {
  color: var(--gold);
  font-weight: 800;
}

.case-list {
  display: grid;
  gap: 10px;
}

.member-disclaimer {
  max-width: 900px;
  margin: 22px auto 0;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.case-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--text);
}

.case-row strong,
.case-row span {
  display: block;
}

.export-row {
  align-items: center;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 800;
}

.workflow-steps li.is-active {
  color: #131016;
  border-color: rgba(242, 200, 121, 0.55);
  background: linear-gradient(135deg, #fff0c8, #f2c879);
}

.workflow-steps.compact {
  grid-template-columns: 1fr;
  margin-bottom: 18px;
}

.account-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.danger-panel {
  grid-column: 1 / -1;
  border-color: rgba(255, 155, 142, 0.32);
  background: rgba(255, 155, 142, 0.075);
}

.button.danger,
button.danger {
  color: #2c0806;
  background: linear-gradient(135deg, #ffd1ca, #ff9b8e);
  box-shadow: 0 18px 48px rgba(255, 155, 142, 0.18);
}

.two-line-button {
  max-width: 330px;
  white-space: normal;
  text-align: center;
  line-height: 1.16;
}

.help-note {
  margin: -4px 0 14px;
  color: var(--muted-2);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.5;
}

.recovery-codes {
  margin-top: 20px;
}

.recovery-codes code {
  display: block;
  white-space: pre-wrap;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--gold-2);
}

.two-factor-box {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 22px 0;
}

.google-authenticator-box {
  grid-template-columns: 282px minmax(0, 1fr);
  align-items: stretch;
}

.google-auth-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.google-auth-header img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.google-qr {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(242, 200, 121, 0.30);
  border-radius: 22px;
  background: rgba(242, 200, 121, 0.08);
}

.google-qr img {
  width: 260px;
  height: 260px;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.google-qr figcaption {
  margin-top: 10px;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 800;
}

.authenticator-steps {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.authenticator-steps div,
.manual-key-card,
.setup-fields div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.052);
}

.authenticator-steps div {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
}

.authenticator-steps span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #131016;
  background: var(--gold);
  font-weight: 900;
}

.authenticator-steps .warning-step {
  border-color: rgba(255, 155, 142, 0.38);
  background: rgba(255, 155, 142, 0.09);
}

.authenticator-steps .warning-step span {
  background: var(--danger);
}

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

.manual-key-card {
  padding: 18px;
}

.setup-fields {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.setup-fields div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
}

.setup-fields dt {
  color: var(--muted-2);
  font-size: 0.84rem;
}

.setup-fields dd {
  margin: 0;
  color: var(--text);
  overflow-wrap: anywhere;
  font-weight: 800;
}

.secret-code {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold-2);
  background: rgba(0, 0, 0, 0.28);
}

.receipt-panel {
  max-width: 760px;
  margin: 72px auto 0;
}

.receipt-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.receipt-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
}

.receipt-lines dd {
  margin: 0;
  color: var(--gold-2);
  font-weight: 900;
}

.messages {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.ukizz-is-thinking {
  cursor: progress;
}

.stack.is-thinking textarea {
  opacity: 0.82;
}

.stack.is-thinking button[aria-busy="true"] {
  opacity: 0.78;
  cursor: progress;
}

.ukizz-thinking-message {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: min(620px, 100%);
  animation: thinkingFadeIn .28s ease both;
}

.ukizz-thinking-animation {
  display: grid;
  min-height: 58px;
  place-items: center;
}

.ukizz-thinking-track {
  position: relative;
  width: 118px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f4efe6);
  box-shadow: inset 0 0 0 1px rgba(19, 16, 22, 0.08), 0 12px 28px rgba(0, 0, 0, 0.2);
}

.ukizz-thinking-track::after {
  content: "";
  position: absolute;
  inset: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(242, 200, 121, 0.18), transparent);
  opacity: 0.8;
}

.ukizz-thinking-ball {
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 11px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #fff9dc 0 18%, #f2c879 38%, #c7776f 100%);
  box-shadow: 0 0 14px rgba(242, 200, 121, 0.92), 0 0 28px rgba(199, 119, 111, 0.45);
  animation: ukizzRocketBall 1.34s cubic-bezier(.42, 0, .58, 1) infinite alternate;
}

.ukizz-thinking-ball::before,
.ukizz-thinking-ball::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  transform-origin: right center;
}

.ukizz-thinking-ball::before {
  width: 36px;
  background: linear-gradient(90deg, rgba(242, 200, 121, 0), rgba(242, 200, 121, 0.86));
  filter: blur(0.4px);
}

.ukizz-thinking-ball::after {
  width: 24px;
  background: linear-gradient(90deg, rgba(155, 140, 255, 0), rgba(155, 140, 255, 0.7));
  filter: blur(2px);
}

.ukizz-thinking-copy {
  display: grid;
  gap: 5px;
}

.ukizz-thinking-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.ukizz-thinking-step {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

@keyframes ukizzRocketBall {
  0% {
    transform: translate(0, 10px);
  }
  45% {
    transform: translate(46px, -8px);
  }
  100% {
    transform: translate(82px, 10px);
  }
}

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

.message p:last-child { margin-bottom: 0; }
.meta { color: var(--muted-2); font-size: 0.88rem; }
.stat { display: grid; gap: 3px; }
.stat strong { font-size: 1.8rem; color: var(--gold-2); }

@media (prefers-reduced-motion: reduce) {
  .ukizz-thinking-ball,
  .ukizz-thinking-message {
    animation: none;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: block; }

  .site-header.is-open {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 12px 8px;
  }

  .hero-grid,
  .comparison-grid,
  .method-shell,
  .demo-layout,
  .pricing-card,
  .pricing-warning,
  .pricing-advantages,
  .app-shell,
  .owner-shell,
  .conversion-grid,
  .chat-layout,
  .account-grid,
  .billing-plan-grid,
  .grid.cols-2,
  .seo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .protocol-grid,
  .pricing-plan-grid,
  .blog-grid,
  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-owner-filters {
    grid-template-columns: 1fr 1fr;
  }

  .logos-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .internal-links-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .side-nav { position: static; }
  .kpi-grid,
  .workflow-steps,
  .workflow-ribbon,
  .dialogue-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dialogue-card-head,
  .dialogue-title-form {
    grid-template-columns: 1fr;
  }
  .case-row,
  .receipt-lines div,
  .two-factor-box,
  .google-authenticator-box {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .google-qr img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
  .trial-next { position: static; }
}

@media (max-width: 640px) {
  .site-header { width: 100%; }
  .brand { min-width: 0; }
  .brand-text small { display: none; }
  .hero-section { padding-top: 62px; }

  .trust-strip,
  .method-steps,
  .protocol-grid,
  .pricing-plan-grid,
  .blog-grid,
  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .blog-search,
  .blog-owner-filters {
    grid-template-columns: 1fr;
  }

  .kpi-grid,
  .workflow-steps,
  .workflow-ribbon,
  .dialogue-summary-grid {
    grid-template-columns: 1fr;
  }

  .ukizz-thinking-message {
    grid-template-columns: 1fr;
  }

  .row-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .row-actions .button,
  .row-actions form,
  .row-actions button {
    width: 100%;
  }

  .hero-copy h1 { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .btn-large { width: 100%; }
  .hero-card { min-height: auto; transform: none; }
  .floating-note { display: none; }
  .section { padding-top: 82px; }

  .compare-card,
  .protocol-card,
  .step-card,
  .blog-card,
  .blog-content,
  .pricing-card,
  .method-shell,
  .seo-panel,
  .panel,
  .card {
    padding: 24px;
  }

  .site-footer { flex-direction: column; }

  .customer-proof-card {
    align-items: center;
    flex-direction: column;
    padding: 22px;
  }
}
