/* =========================================================
   RELAY — AI Receptionist Product Page
   Isolated theme. Do not import shared.css alongside.
   ========================================================= */

:root {
  --rx-bg: #07070d;
  --rx-bg-2: #0b0c1a;
  --rx-bg-3: #0f1130;
  --rx-surface: rgba(20, 22, 44, 0.55);
  --rx-surface-2: rgba(28, 30, 58, 0.65);
  --rx-line: rgba(255, 255, 255, 0.07);
  --rx-line-strong: rgba(255, 255, 255, 0.14);

  --rx-text: #eef0ff;
  --rx-text-dim: rgba(238, 240, 255, 0.68);
  --rx-text-mute: rgba(238, 240, 255, 0.44);

  --rx-mint: #5eead4;      /* primary accent */
  --rx-mint-soft: rgba(94, 234, 212, 0.14);
  --rx-lavender: #a78bfa;  /* secondary accent */
  --rx-lavender-soft: rgba(167, 139, 250, 0.14);
  --rx-amber: #fdba74;     /* warm highlight */

  --rx-grad-aurora: conic-gradient(
    from 210deg at 50% 50%,
    rgba(94, 234, 212, 0.35),
    rgba(167, 139, 250, 0.28),
    rgba(253, 186, 116, 0.18),
    rgba(94, 234, 212, 0.35)
  );

  --rx-shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.04) inset,
                    0 30px 70px -30px rgba(0, 0, 0, 0.8);
  --rx-shadow-glow: 0 0 0 1px rgba(94, 234, 212, 0.2),
                    0 20px 60px -15px rgba(94, 234, 212, 0.35);

  --rx-radius-sm: 10px;
  --rx-radius: 18px;
  --rx-radius-lg: 28px;

  --rx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rx-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --rx-container: 1180px;
  --rx-header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  color: var(--rx-text);
  background: var(--rx-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.rx-container {
  width: min(100% - 2.4rem, var(--rx-container));
  margin-inline: auto;
}

.rx-skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.rx-skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--rx-text);
  color: var(--rx-bg);
  padding: .7rem 1rem;
  border-radius: 6px;
}

/* =========================================================
   GLOBAL ATMOSPHERIC BACKGROUND
   ========================================================= */
.rx-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(167, 139, 250, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(94, 234, 212, 0.13), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(94, 234, 212, 0.08), transparent 60%),
    linear-gradient(180deg, var(--rx-bg) 0%, var(--rx-bg-2) 50%, var(--rx-bg) 100%);
}
.rx-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 30%, transparent 80%);
}
.rx-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.25) 0.8px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.18) 0.6px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.22) 0.7px, transparent 1px),
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.16) 0.6px, transparent 1px);
  background-size: 320px 320px, 280px 280px, 360px 360px, 240px 240px;
  opacity: 0.7;
  mix-blend-mode: screen;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.rx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(7, 7, 13, 0.55);
  border-bottom: 1px solid var(--rx-line);
}
.rx-header-shell {
  min-height: var(--rx-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.rx-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: "Bricolage Grotesque", "IBM Plex Sans", sans-serif;
}
.rx-brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, #14172e, #090a18);
  border: 1px solid var(--rx-line-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08),
              0 0 24px rgba(94, 234, 212, 0.18);
}
.rx-brand-mark::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94,234,212,0.5), rgba(167,139,250,0.35), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.rx-brand-mark svg { width: 18px; height: 18px; }
.rx-brand-text {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.rx-brand-text small {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rx-text-mute);
  padding: .22rem .45rem;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
}

.rx-nav { display: flex; align-items: center; gap: .2rem; }
.rx-nav a {
  padding: .6rem .9rem;
  border-radius: 8px;
  font-size: .9rem;
  color: var(--rx-text-dim);
  font-weight: 500;
  transition: color .2s var(--rx-ease), background .2s var(--rx-ease);
}
.rx-nav a:hover,
.rx-nav a:focus-visible {
  color: var(--rx-text);
  background: rgba(255,255,255,0.04);
  outline: 0;
}

.rx-header-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.05rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--rx-bg);
  background: var(--rx-mint);
  border-radius: 999px;
  transition: transform .25s var(--rx-ease), box-shadow .3s var(--rx-ease), filter .2s;
  box-shadow: 0 0 0 1px rgba(94,234,212,0.4),
              0 14px 32px -10px rgba(94,234,212,0.5);
}
.rx-header-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 0 0 1px rgba(94,234,212,0.5),
              0 18px 40px -8px rgba(94,234,212,0.6);
}

.rx-back {
  display: none;
}

.rx-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rx-line-strong);
  color: var(--rx-text);
  place-items: center;
}
.rx-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  margin: 3px auto;
  transition: transform .25s var(--rx-ease);
}

@media (max-width: 960px) {
  .rx-nav { display: none; position: absolute; top: 100%; left: 1rem; right: 1rem; flex-direction: column; align-items: stretch; padding: .6rem; background: rgba(11, 12, 26, 0.95); backdrop-filter: blur(18px); border: 1px solid var(--rx-line-strong); border-radius: 14px; margin-top: .4rem; }
  .rx-nav.open { display: flex; }
  .rx-nav a { width: 100%; padding: .9rem 1rem; }
  .rx-menu-toggle { display: grid; }
}
@media (max-width: 520px) {
  .rx-header-cta { display: none; }
  .rx-brand-text small { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.rx-hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.rx-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 50%;
  width: 820px;
  height: 820px;
  transform: translateX(-50%);
  background: var(--rx-grad-aurora);
  opacity: 0.28;
  filter: blur(80px);
  border-radius: 50%;
  animation: rx-orbit 28s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes rx-orbit {
  to { transform: translateX(-50%) rotate(360deg); }
}

.rx-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 980px) {
  .rx-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rx-hero { padding: 4rem 0 3.5rem; }
}

.rx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .42rem .8rem .42rem .55rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rx-text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  margin-bottom: 1.8rem;
}
.rx-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rx-mint);
  box-shadow: 0 0 0 4px rgba(94,234,212,0.2);
  animation: rx-pulse 2.2s ease-in-out infinite;
}
@keyframes rx-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(94,234,212,0.2); transform: scale(1); }
  50%      { box-shadow: 0 0 0 8px rgba(94,234,212,0.05); transform: scale(1.08); }
}

.rx-h1 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 1.6rem;
  color: var(--rx-text);
}
.rx-h1 em {
  font-style: normal;
  background: linear-gradient(110deg, var(--rx-mint) 20%, var(--rx-lavender) 65%, var(--rx-amber) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
}
.rx-h1 .rx-h1-line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: rx-rise .9s var(--rx-ease-out) forwards;
}
.rx-h1 .rx-h1-line:nth-child(1) { animation-delay: .05s; }
.rx-h1 .rx-h1-line:nth-child(2) { animation-delay: .18s; }
.rx-h1 .rx-h1-line:nth-child(3) { animation-delay: .3s; }

@keyframes rx-rise {
  to { opacity: 1; transform: translateY(0); }
}

.rx-hero-lede {
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 50ch;
  color: var(--rx-text-dim);
  margin: 0 0 2.2rem;
  opacity: 0;
  animation: rx-rise .9s var(--rx-ease-out) .45s forwards;
}

.rx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  opacity: 0;
  animation: rx-rise .9s var(--rx-ease-out) .58s forwards;
}
.rx-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .25s var(--rx-ease), box-shadow .3s var(--rx-ease),
              background .25s var(--rx-ease), color .25s var(--rx-ease);
}
.rx-btn-primary {
  color: var(--rx-bg);
  background: var(--rx-mint);
  box-shadow: 0 0 0 1px rgba(94,234,212,0.4),
              0 20px 40px -12px rgba(94,234,212,0.45);
}
.rx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(94,234,212,0.6),
              0 28px 48px -10px rgba(94,234,212,0.55);
  filter: brightness(1.05);
}
.rx-btn-ghost {
  color: var(--rx-text);
  background: transparent;
  border-color: var(--rx-line-strong);
}
.rx-btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.22);
}
.rx-btn-ghost .rx-play {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(94,234,212,0.14);
  color: var(--rx-mint);
}

.rx-hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--rx-line);
  opacity: 0;
  animation: rx-rise .9s var(--rx-ease-out) .75s forwards;
}
.rx-hero-meta > div span {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rx-text-mute);
  margin-bottom: .25rem;
}
.rx-hero-meta > div strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--rx-text);
  letter-spacing: -0.01em;
}
.rx-hero-meta > div strong em {
  font-style: normal;
  color: var(--rx-mint);
}

/* Hero visual panel */
.rx-hero-visual {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  animation: rx-rise 1s var(--rx-ease-out) .55s forwards;
}
.rx-hero-card {
  position: relative;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line-strong);
  border-radius: var(--rx-radius-lg);
  padding: 1.3rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--rx-shadow-soft);
  overflow: hidden;
}
.rx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--rx-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(94,234,212,0.5),
    rgba(167,139,250,0.35) 40%,
    transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.rx-hero-card-topbar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .25rem 0 1rem;
  border-bottom: 1px solid var(--rx-line);
  margin-bottom: 1rem;
}
.rx-hero-card-topbar .rx-dots { display: inline-flex; gap: 6px; }
.rx-hero-card-topbar .rx-dots i {
  width: 9px; height: 9px; border-radius: 50%;
  display: block; background: rgba(255,255,255,0.12);
}
.rx-hero-card-topbar .rx-dots i:nth-child(1) { background: #ff5f57; }
.rx-hero-card-topbar .rx-dots i:nth-child(2) { background: #febc2e; }
.rx-hero-card-topbar .rx-dots i:nth-child(3) { background: #28c840; }
.rx-hero-card-topbar .rx-live {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rx-mint);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.rx-hero-card-topbar .rx-live::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rx-mint);
  animation: rx-pulse 1.6s ease-in-out infinite;
}

.rx-call-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.rx-call-who {
  display: flex;
  flex-direction: column;
}
.rx-call-who .label {
  font-family: "JetBrains Mono", monospace;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rx-text-mute);
  margin-bottom: .3rem;
}
.rx-call-who strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rx-text);
  letter-spacing: -0.01em;
}
.rx-call-who em {
  font-style: normal;
  font-size: .82rem;
  color: var(--rx-text-dim);
  margin-top: .15rem;
}
.rx-call-time {
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  color: var(--rx-mint);
  background: var(--rx-mint-soft);
  border: 1px solid rgba(94,234,212,0.22);
  padding: .28rem .55rem;
  border-radius: 7px;
}

.rx-transcript {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1rem 0 1.1rem;
}
.rx-msg {
  display: flex;
  gap: .65rem;
  max-width: 92%;
  opacity: 0;
  transform: translateY(8px);
  animation: rx-rise .7s var(--rx-ease-out) forwards;
}
.rx-msg:nth-child(1) { animation-delay: 1.0s; }
.rx-msg:nth-child(2) { animation-delay: 1.7s; }
.rx-msg:nth-child(3) { animation-delay: 2.3s; }
.rx-msg:nth-child(4) { animation-delay: 2.9s; }
.rx-msg.rx-msg-me { margin-left: auto; flex-direction: row-reverse; }

.rx-avatar {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  font-weight: 700;
  color: var(--rx-text);
  background: linear-gradient(135deg, var(--rx-mint-soft), rgba(167,139,250,0.18));
  border: 1px solid var(--rx-line-strong);
}
.rx-msg-me .rx-avatar {
  background: linear-gradient(135deg, rgba(253,186,116,0.16), rgba(167,139,250,0.18));
}

.rx-bubble {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--rx-text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--rx-line);
  padding: .6rem .85rem;
  border-radius: 14px;
  border-top-left-radius: 4px;
}
.rx-msg-me .rx-bubble {
  background: linear-gradient(135deg, rgba(94,234,212,0.14), rgba(94,234,212,0.06));
  border-color: rgba(94,234,212,0.25);
  border-top-left-radius: 14px;
  border-top-right-radius: 4px;
}

.rx-outcome {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem .9rem;
  background: rgba(94,234,212,0.07);
  border: 1px solid rgba(94,234,212,0.18);
  border-radius: 14px;
  margin-top: .3rem;
}
.rx-outcome-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--rx-mint-soft);
  color: var(--rx-mint);
}
.rx-outcome-icon svg { width: 16px; height: 16px; }
.rx-outcome-text { display: flex; flex-direction: column; line-height: 1.25; }
.rx-outcome-text .lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rx-mint);
}
.rx-outcome-text .val {
  font-size: .86rem;
  color: var(--rx-text);
  font-weight: 500;
}

/* Waveform visual under the card */
.rx-wave {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rx-line);
}
.rx-wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
}
.rx-wave-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--rx-mint), rgba(94,234,212,0.2));
  border-radius: 2px;
  animation: rx-wave 1.3s ease-in-out infinite;
  min-height: 4px;
}
.rx-wave-bars span:nth-child(1) { animation-delay: 0s; }
.rx-wave-bars span:nth-child(2) { animation-delay: .1s; }
.rx-wave-bars span:nth-child(3) { animation-delay: .2s; }
.rx-wave-bars span:nth-child(4) { animation-delay: .3s; }
.rx-wave-bars span:nth-child(5) { animation-delay: .4s; }
.rx-wave-bars span:nth-child(6) { animation-delay: .5s; }
.rx-wave-bars span:nth-child(7) { animation-delay: .6s; }
.rx-wave-bars span:nth-child(8) { animation-delay: .7s; }
.rx-wave-bars span:nth-child(9) { animation-delay: .8s; }
.rx-wave-bars span:nth-child(10) { animation-delay: .9s; }
.rx-wave-bars span:nth-child(11) { animation-delay: 1.0s; }
.rx-wave-bars span:nth-child(12) { animation-delay: 1.1s; }
.rx-wave-bars span:nth-child(13) { animation-delay: 1.2s; }
.rx-wave-bars span:nth-child(14) { animation-delay: 1.1s; }
.rx-wave-bars span:nth-child(15) { animation-delay: 1.0s; }
.rx-wave-bars span:nth-child(16) { animation-delay: .9s; }
.rx-wave-bars span:nth-child(17) { animation-delay: .8s; }
.rx-wave-bars span:nth-child(18) { animation-delay: .7s; }
.rx-wave-bars span:nth-child(19) { animation-delay: .6s; }
.rx-wave-bars span:nth-child(20) { animation-delay: .5s; }
.rx-wave-bars span:nth-child(21) { animation-delay: .4s; }
.rx-wave-bars span:nth-child(22) { animation-delay: .3s; }
.rx-wave-bars span:nth-child(23) { animation-delay: .2s; }
.rx-wave-bars span:nth-child(24) { animation-delay: .1s; }
@keyframes rx-wave {
  0%, 100% { transform: scaleY(0.3); }
  50%      { transform: scaleY(1); }
}

/* Hero floating side badge */
.rx-hero-badge {
  position: absolute;
  bottom: -22px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .95rem;
  background: rgba(11,12,26,0.85);
  border: 1px solid var(--rx-line-strong);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  font-size: .82rem;
}
.rx-hero-badge-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(253,186,116,0.25), rgba(167,139,250,0.2));
  color: var(--rx-amber);
}
.rx-hero-badge strong { color: var(--rx-text); }
.rx-hero-badge em { font-style: normal; color: var(--rx-text-dim); }

@media (max-width: 600px) {
  .rx-hero-badge { left: 50%; transform: translateX(-50%); bottom: -28px; }
}

/* =========================================================
   TRUSTSTRIP
   ========================================================= */
.rx-trust {
  padding: 3rem 0;
  border-top: 1px solid var(--rx-line);
  border-bottom: 1px solid var(--rx-line);
  background: rgba(11, 12, 26, 0.4);
}
.rx-trust-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 760px) { .rx-trust-grid { grid-template-columns: 1fr; } }
.rx-trust-label {
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rx-text-mute);
  max-width: 16ch;
  line-height: 1.5;
}
.rx-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  list-style: none;
  padding: 0; margin: 0;
}
.rx-trust-items li {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  font-size: .85rem;
  color: var(--rx-text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rx-line);
  border-radius: 999px;
}
.rx-trust-items li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rx-mint);
  box-shadow: 0 0 8px var(--rx-mint);
}

/* =========================================================
   SECTION DEFAULTS
   ========================================================= */
.rx-section { padding: 6.5rem 0; position: relative; }
@media (max-width: 760px) { .rx-section { padding: 4.5rem 0; } }

.rx-section-head {
  max-width: 42rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.rx-section-head.rx-left { text-align: left; margin-inline: 0; }
.rx-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rx-mint);
  margin-bottom: 1rem;
}
.rx-section-eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rx-mint));
}
.rx-h2 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
  margin: 0 0 1rem;
}
.rx-h2 em {
  font-style: italic;
  font-family: "Bricolage Grotesque", serif;
  color: var(--rx-mint);
  font-weight: 400;
}
.rx-section-lede {
  font-size: 1.05rem;
  color: var(--rx-text-dim);
  line-height: 1.65;
  margin: 0;
  max-width: 50ch;
}
.rx-section-head:not(.rx-left) .rx-section-lede { margin-inline: auto; }

/* =========================================================
   FEATURES
   ========================================================= */
.rx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 980px) { .rx-features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .rx-features-grid { grid-template-columns: 1fr; } }

.rx-feature {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-lg);
  backdrop-filter: blur(12px);
  transition: border-color .35s var(--rx-ease), transform .4s var(--rx-ease);
  overflow: hidden;
}
.rx-feature:hover {
  border-color: rgba(94,234,212,0.28);
  transform: translateY(-3px);
}
.rx-feature::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rx-mint), transparent);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .3s var(--rx-ease);
}
.rx-feature:hover::after { opacity: 1; }

.rx-feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(94,234,212,0.14), rgba(167,139,250,0.1));
  border: 1px solid var(--rx-line-strong);
  color: var(--rx-mint);
  margin-bottom: 1.6rem;
}
.rx-feature-icon svg { width: 24px; height: 24px; }
.rx-feature h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin: 0 0 .55rem;
  color: var(--rx-text);
}
.rx-feature p {
  font-size: .94rem;
  color: var(--rx-text-dim);
  line-height: 1.6;
  margin: 0 0 1.3rem;
}
.rx-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  padding: 0; margin: 0;
}
.rx-feature-chips li {
  font-family: "JetBrains Mono", monospace;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border-radius: 6px;
  color: var(--rx-text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rx-line);
}

/* =========================================================
   SEQUENCE (How it works)
   ========================================================= */
.rx-sequence {
  background: linear-gradient(180deg, transparent, rgba(11,12,26,0.5) 40%, transparent);
}
.rx-sequence-title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: left;
  margin: 0 0 3.5rem;
  color: rgba(255,255,255,0.06);
  text-transform: uppercase;
}
.rx-steps {
  display: grid;
  gap: 1rem;
}
.rx-step {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  padding: 2.2rem;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-lg);
  backdrop-filter: blur(12px);
  align-items: center;
  transition: border-color .3s var(--rx-ease);
}
.rx-step:hover { border-color: rgba(167,139,250,0.24); }

.rx-step-alt { grid-template-columns: 1.3fr 1fr; }
.rx-step-alt .rx-step-body { order: 2; }
.rx-step-alt .rx-step-visual { order: 1; }

@media (max-width: 860px) {
  .rx-step,
  .rx-step-alt { grid-template-columns: 1fr; padding: 1.6rem; gap: 1.6rem; }
  .rx-step-alt .rx-step-body { order: 1; }
  .rx-step-alt .rx-step-visual { order: 2; }
}

.rx-step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: .8rem;
  letter-spacing: .16em;
  color: var(--rx-lavender);
  margin-bottom: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.rx-step-num::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--rx-lavender);
}
.rx-step h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 .8rem;
}
.rx-step p {
  font-size: .97rem;
  color: var(--rx-text-dim);
  line-height: 1.65;
  margin: 0 0 1.1rem;
}
.rx-step-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.rx-step-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--rx-text-dim);
}
.rx-step-list li::before {
  content: "→";
  color: var(--rx-mint);
  font-weight: 700;
  margin-top: -2px;
}

.rx-step-visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--rx-radius);
  background: linear-gradient(135deg, rgba(11,12,26,0.9), rgba(15,17,48,0.7));
  border: 1px solid var(--rx-line);
  overflow: hidden;
  padding: 1.5rem;
}
.rx-step-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Step 1 Visual — voice profile */
.rx-step-voice {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative;
  z-index: 1;
}
.rx-voice-sample {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .85rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--rx-line);
  border-radius: 10px;
  font-size: .85rem;
}
.rx-voice-sample .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rx-mint);
}
.rx-voice-sample .name { color: var(--rx-text); font-weight: 600; }
.rx-voice-sample .muted { color: var(--rx-text-mute); font-family: "JetBrains Mono", monospace; font-size: .72rem; margin-left: auto; }

/* Step 2 Visual — schedule */
.rx-step-schedule {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .6rem;
}
.rx-schedule-day {
  flex: 1;
  padding: .6rem .5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rx-line);
  border-radius: 10px;
  text-align: center;
}
.rx-schedule-day .day-name {
  font-family: "JetBrains Mono", monospace;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rx-text-mute);
  margin-bottom: .35rem;
}
.rx-schedule-day .day-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rx-text);
  margin-bottom: .4rem;
}
.rx-schedule-day .slot {
  font-size: .62rem;
  padding: .18rem 0;
  border-radius: 4px;
  margin-bottom: 2px;
  background: rgba(94,234,212,0.09);
  color: var(--rx-mint);
  font-family: "JetBrains Mono", monospace;
}
.rx-schedule-day .slot.taken { background: rgba(255,255,255,0.03); color: var(--rx-text-mute); text-decoration: line-through; }
.rx-schedule-day.today { border-color: rgba(94,234,212,0.4); background: rgba(94,234,212,0.04); }

/* Step 3 Visual — connection/flow */
.rx-step-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.rx-flow-line {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .85rem;
  color: var(--rx-text-dim);
  font-family: "JetBrains Mono", monospace;
}
.rx-flow-line .node {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(94,234,212,0.08);
  border: 1px solid rgba(94,234,212,0.25);
  color: var(--rx-mint);
}
.rx-flow-line.dim .node { background: rgba(255,255,255,0.03); border-color: var(--rx-line); color: var(--rx-text-mute); }
.rx-flow-line .line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(94,234,212,0.4), transparent);
}
.rx-flow-line .status {
  font-size: .7rem;
  padding: .22rem .45rem;
  border-radius: 5px;
  background: var(--rx-mint-soft);
  color: var(--rx-mint);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rx-flow-line.dim .status { background: rgba(255,255,255,0.04); color: var(--rx-text-mute); }

/* =========================================================
   DEMO SECTION
   ========================================================= */
.rx-demo {
  position: relative;
}
.rx-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .rx-demo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.rx-demo-copy .rx-h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.rx-demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.rx-demo-stat {
  padding: 1.2rem;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
}
.rx-demo-stat .n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--rx-mint), var(--rx-lavender));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: .4rem;
}
.rx-demo-stat .l {
  font-size: .85rem;
  color: var(--rx-text-dim);
}

/* Big transcript */
.rx-transcript-big {
  position: relative;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line-strong);
  border-radius: var(--rx-radius-lg);
  padding: 1.6rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--rx-shadow-soft);
}
.rx-transcript-big::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--rx-radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(167,139,250,0.4), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.rx-transcript-big-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rx-line);
  margin-bottom: 1.2rem;
}
.rx-transcript-big-header .title {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.rx-transcript-big-header .meta {
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  color: var(--rx-text-mute);
  letter-spacing: .08em;
}
.rx-transcript-big .rx-transcript { margin: 0; }

/* =========================================================
   INTEGRATIONS
   ========================================================= */
.rx-integrations {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(94,234,212,0.06), transparent);
}
.rx-integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
}
@media (max-width: 980px) { .rx-integrations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .rx-integrations-grid { grid-template-columns: repeat(2, 1fr); } }

.rx-int {
  padding: 1.4rem 1rem;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform .3s var(--rx-ease), border-color .3s;
}
.rx-int:hover {
  transform: translateY(-3px);
  border-color: rgba(94,234,212,0.22);
}
.rx-int svg, .rx-int .rx-int-mark {
  width: 32px; height: 32px;
  margin: 0 auto .6rem;
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: var(--rx-text-dim);
}
.rx-int-name {
  font-size: .82rem;
  color: var(--rx-text);
  font-weight: 500;
}

/* =========================================================
   PRICING
   ========================================================= */
.rx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 900px) { .rx-pricing-grid { grid-template-columns: 1fr; } }

.rx-price {
  position: relative;
  padding: 2rem 1.8rem;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  backdrop-filter: blur(12px);
}
.rx-price-feat {
  border-color: rgba(94,234,212,0.36);
  background: linear-gradient(180deg, rgba(94,234,212,0.08), rgba(94,234,212,0.02));
  box-shadow: 0 20px 60px -20px rgba(94,234,212,0.3);
}
.rx-price-feat::before {
  content: "Most popular";
  position: absolute;
  top: -12px; left: 1.6rem;
  padding: .28rem .7rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rx-bg);
  background: var(--rx-mint);
  border-radius: 999px;
}

.rx-price-head .tier {
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rx-text-mute);
  margin-bottom: .6rem;
}
.rx-price-head .amt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.rx-price-head .amt small {
  font-size: .85rem;
  font-weight: 500;
  color: var(--rx-text-mute);
  margin-left: .35rem;
}
.rx-price-head .desc {
  color: var(--rx-text-dim);
  font-size: .9rem;
  margin-top: .7rem;
  line-height: 1.55;
}
.rx-price-feats {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .65rem;
  border-top: 1px dashed var(--rx-line);
  padding-top: 1.2rem;
}
.rx-price-feats li {
  display: flex;
  gap: .55rem;
  font-size: .9rem;
  color: var(--rx-text-dim);
  line-height: 1.5;
}
.rx-price-feats li::before {
  content: "✓";
  color: var(--rx-mint);
  font-weight: 700;
  margin-top: -1px;
}
.rx-price .rx-btn { justify-content: center; margin-top: auto; }

/* =========================================================
   FAQ
   ========================================================= */
.rx-faq-grid {
  display: grid;
  gap: .7rem;
  max-width: 800px;
  margin: 0 auto;
}
.rx-faq-item {
  background: var(--rx-surface);
  border: 1px solid var(--rx-line);
  border-radius: var(--rx-radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: border-color .3s var(--rx-ease);
}
.rx-faq-item[open] { border-color: rgba(167,139,250,0.3); }
.rx-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--rx-text);
}
.rx-faq-item summary::-webkit-details-marker { display: none; }
.rx-faq-item summary::after {
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .28s var(--rx-ease);
  flex-shrink: 0;
  color: var(--rx-text-dim);
}
.rx-faq-item[open] summary::after { transform: rotate(225deg); }
.rx-faq-item p {
  padding: 0 1.3rem 1.2rem;
  margin: 0;
  font-size: .94rem;
  line-height: 1.65;
  color: var(--rx-text-dim);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.rx-finalcta {
  padding: 8rem 0;
  position: relative;
  text-align: center;
}
.rx-finalcta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: var(--rx-grad-aurora);
  opacity: 0.22;
  filter: blur(90px);
  border-radius: 50%;
  animation: rx-orbit 32s linear infinite;
  pointer-events: none;
}
.rx-finalcta-inner { position: relative; z-index: 1; }
.rx-finalcta .rx-h2 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.3rem;
}
.rx-finalcta-lede {
  font-size: 1.1rem;
  color: var(--rx-text-dim);
  max-width: 44ch;
  margin: 0 auto 2.4rem;
  line-height: 1.6;
}
.rx-finalcta-form {
  display: flex;
  gap: .55rem;
  max-width: 480px;
  margin: 0 auto;
  padding: .4rem;
  background: var(--rx-surface);
  border: 1px solid var(--rx-line-strong);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}
.rx-finalcta-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: .75rem 1.1rem;
  color: var(--rx-text);
  font-size: .95rem;
  min-height: 48px;
}
.rx-finalcta-form input::placeholder { color: var(--rx-text-mute); }
.rx-finalcta-form .rx-btn { flex-shrink: 0; padding: .8rem 1.3rem; }

.rx-finalcta-note {
  margin-top: 1.2rem;
  font-family: "JetBrains Mono", monospace;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--rx-text-mute);
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .rx-finalcta-form { flex-direction: column; border-radius: 18px; padding: .8rem; }
  .rx-finalcta-form .rx-btn { width: 100%; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.rx-footer {
  border-top: 1px solid var(--rx-line);
  background: rgba(7,7,13,0.6);
  padding: 2.8rem 0 2rem;
}
.rx-footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: .86rem;
  color: var(--rx-text-mute);
}
.rx-footer-shell a {
  color: var(--rx-text-dim);
  transition: color .2s;
}
.rx-footer-shell a:hover { color: var(--rx-text); }
.rx-footer-links {
  display: flex; gap: 1.3rem; list-style: none; padding: 0; margin: 0;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; scroll-behavior: auto !important; }
  .rx-h1 .rx-h1-line,
  .rx-hero-lede,
  .rx-hero-actions,
  .rx-hero-meta,
  .rx-hero-visual,
  .rx-msg { opacity: 1 !important; transform: none !important; }
}
