@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --background: 0 0% 4%;
  --foreground: 0 0% 100%;
  --card: 0 0% 7%;
  --card-foreground: 0 0% 100%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 15%;
  --muted-foreground: 0 0% 71%;
  --primary: 86 100% 50%;
  --primary-foreground: 0 0% 4%;
  --accent: 131 78% 37%;
  --accent-foreground: 0 0% 100%;
  --border: 0 0% 18%;
  --input: 0 0% 18%;
  --ring: 86 100% 50%;
  --safe-top: env(safe-area-inset-top, 0px);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.34);
  --shadow-deep: 0 24px 70px rgba(0, 0, 0, 0.52);
  --radius: 1.25rem;
  --radius-sm: 0.9rem;
  --text: hsl(var(--foreground));
  --text-soft: hsl(var(--muted-foreground));
  --panel: hsl(var(--card) / 0.9);
  --panel-2: hsl(var(--secondary) / 0.84);
  --line: hsl(var(--border));
  --line-strong: hsl(var(--primary) / 0.45);
  --glow: hsl(var(--primary) / 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: hsl(var(--background));
  overflow-x: hidden;
  overflow-y: auto;
}

body.clive-disabled .chat-shell,
body.clive-disabled .chat-launcher,
body.clive-disabled .hero-chat-wrap,
body.clive-disabled [data-open-chat],
body.clive-disabled a[href="/clive"] {
  display: none !important;
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("/assets/images/hero-portrait-left.png");
  background-size:cover;
  background-position:bottom right;
  opacity:0.22;
  filter:grayscale(1) contrast(1.05);
  mix-blend-mode:screen;
  pointer-events:none;
  z-index:0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero::before{
    background-position:top right;
  }
}
.hero > *{
  position:relative;
  z-index:1;
}

.phone-input-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.phone-flag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:40px;
  border:1px solid var(--g700);
  border-radius:6px;
  background:var(--g900);
  font-size:18px;
}
.phone-country{
  font-family:var(--fa);
  font-size:11px;
  color:var(--g400);
  letter-spacing:.08em;
  text-transform:uppercase;
}
@media (max-width: 640px){
  .phone-input-row{flex-direction:column;align-items:stretch;}
  .phone-flag{width:100%;height:36px;justify-content:flex-start;padding:0 12px;}
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(204, 255, 0, 0.12), transparent 28%),
    radial-gradient(circle at 80% 24%, rgba(10, 168, 63, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(9, 9, 9, 0.98)),
    hsl(var(--background));
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    url("/assets/images/uthrivelabs-background.png") center top / cover no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.42) 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: calc(80px + var(--safe-top));
  width: 100%;
  width: min(1280px, calc(100vw - 4rem));
  margin: 0 auto;
  padding: calc(0.55rem + var(--safe-top)) 0 0.55rem;
  border-bottom: 1px solid hsl(var(--border) / 0.85);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.brand-link.wordmark {
  gap: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-logo {
  width: clamp(220px, 28vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.48));
}

.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav a {
  padding: 0.3rem 0;
  color: hsl(var(--muted-foreground));
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: hsl(var(--primary));
}

.site-nav .nav-cta {
  min-height: 46px;
  margin-left: 0.75rem;
  padding: 0 1.45rem;
  border: 1px solid hsl(var(--primary) / 0.24);
  border-radius: 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
}

.site-nav .nav-cta:hover {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary) / 0.92);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: hsl(var(--foreground));
}

.auth-controls {
  position: fixed;
  top: calc(1rem + var(--safe-top));
  right: 1rem;
  z-index: 24;
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.try-btn,
.link-btn {
  height: 38px;
  padding: 0 0.95rem;
  border-radius: 0;
  border: 1px solid hsl(var(--border));
  background: rgba(20, 20, 20, 0.92);
  color: hsl(var(--foreground));
  cursor: pointer;
}

.try-btn:hover,
.link-btn:hover {
  border-color: hsl(var(--primary) / 0.55);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.18), 0 0 22px var(--glow);
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 0;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--primary) / 0.3);
  font-size: 0.82rem;
  font-weight: 600;
}

.biz-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 4rem;
  display: grid;
  gap: 1.5rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  border: none;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.24) 70%, rgba(5, 5, 5, 0.66) 100%),
    url("/assets/images/hero-main.jpg") center center / cover no-repeat;
}

.hero-stage::before {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.74fr);
  gap: 1.2rem;
  align-items: center;
  min-height: 82vh;
  width: min(1280px, calc(100vw - 3rem));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.hero-copy,
.hero-chat-wrap,
.symptom-card,
.biz-section,
.trust-strip p,
.quiet-line,
.site-footer {
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 0.25rem);
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.96), rgba(11, 11, 11, 0.94));
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy::before {
  content: none;
}

.hero-copy::after {
  content: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 0;
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.26);
  color: hsl(var(--foreground));
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-accent {
  color: hsl(var(--primary));
}

.hero-sub {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 0;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.2), 0 14px 34px hsl(var(--primary) / 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: hsl(var(--primary) / 0.92);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.24), 0 18px 38px hsl(var(--primary) / 0.28);
}

.btn-secondary {
  background: hsl(var(--secondary));
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-secondary:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.18), 0 0 22px hsl(var(--primary) / 0.12);
}

.btn-tertiary {
  background: transparent;
  border-color: hsl(var(--primary) / 0.52);
  color: hsl(var(--primary));
  cursor: pointer;
}

.btn-tertiary:hover {
  background: hsl(var(--primary) / 0.14);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.24), 0 0 20px hsl(var(--primary) / 0.14);
}

.hero-chat-wrap {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-chat-wrap::before {
  content: none;
}

.chat-shell {
  position: relative;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
}

.hero-chat-wrap > .chat-shell {
  display: block;
}

.chat-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.chat-head,
.chat-input-row,
.chat-voice-settings {
  background: rgba(13, 13, 13, 0.94);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid hsl(var(--border));
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 700;
}

.chat-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
}

.chat-status,
.voice-help,
#chatVoiceStatus {
  color: hsl(var(--muted-foreground));
  font-size: 0.86rem;
}

.chat-body {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.72), rgba(7, 7, 7, 0.88));
}

.msg {
  max-width: min(90%, 34rem);
  margin: 0.6rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0;
  line-height: 1.5;
}

.msg.assistant {
  margin-right: auto;
  background: rgba(18, 18, 18, 0.92);
}

.msg.user {
  margin-left: auto;
  background: rgba(204, 255, 0, 0.12);
  border-color: hsl(var(--primary) / 0.28);
}

.mode-actions,
.quick-replies,
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.6rem;
}

.mode-actions button,
.quick-replies button,
.chat-suggestions button {
  min-height: 34px;
  padding: 0.45rem 0.82rem;
  border-radius: 0;
  border: 1px solid hsl(var(--border));
  background: rgba(20, 20, 20, 0.9);
  color: hsl(var(--foreground));
  font-size: 0.83rem;
}

.mode-actions button:hover,
.quick-replies button:hover,
.chat-suggestions button:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.16);
}

.typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.typing .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(var(--muted-foreground));
  animation: typingDot 1s infinite ease-in-out;
}

.typing .dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing .dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingDot {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.chat-input-row {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid hsl(var(--border));
}

.input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid hsl(var(--input));
  border-radius: 1rem;
  background: rgba(24, 24, 24, 0.96);
  color: hsl(var(--foreground));
  outline: none;
}

.input:focus {
  border-color: hsl(var(--primary) / 0.55);
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.12);
}

.input::placeholder {
  color: hsl(var(--muted-foreground));
}

.chat-input {
  min-height: 48px;
  max-height: 180px;
  height: 48px;
  resize: none;
}

.send,
.begin,
.small-btn {
  min-width: 48px;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.95);
  color: hsl(var(--foreground));
  cursor: pointer;
}

.send:hover,
.begin:hover,
.small-btn:hover {
  border-color: hsl(var(--primary) / 0.52);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.18), 0 0 18px hsl(var(--primary) / 0.12);
}

.chat-min-btn,
.chat-close-btn {
  width: 36px;
  height: 36px;
  margin-left: auto;
  border: 1px solid hsl(var(--border));
  border-radius: 0.9rem;
  background: rgba(20, 20, 20, 0.95);
  color: hsl(var(--foreground));
  cursor: pointer;
}

.chat-close-btn {
  margin-left: 0;
}

.chat-launcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 42;
  display: none;
  min-height: 48px;
  padding: 0 1.1rem;
  border: 1px solid hsl(var(--primary) / 0.34);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.95);
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-soft);
}

body.chat-hidden .chat-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-voice-settings {
  border-top: 1px solid hsl(var(--border));
  padding: 0.9rem 1rem 1rem;
}

.chat-voice-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.voice-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.voice-toggle-btn {
  min-width: 120px;
  border-radius: 999px;
}

.chat-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.chat-voice-grid label {
  display: grid;
  gap: 0.4rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.84rem;
}

.chat-voice-grid select {
  min-height: 40px;
  border: 1px solid hsl(var(--input));
  border-radius: 0.9rem;
  background: rgba(20, 20, 20, 0.95);
  color: hsl(var(--foreground));
  padding: 0 0.75rem;
}

body.chat-on .chat-shell {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(88px + var(--safe-top)) 1rem 1rem;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(12px);
}

body.chat-on .chat-card {
  width: min(880px, calc(100vw - 2rem));
  height: min(82vh, 820px);
  border: 1px solid hsl(var(--border));
  border-radius: 1.35rem;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-deep);
}

body.chat-minimized .chat-shell {
  position: fixed;
  inset: auto 1rem 1rem auto;
  z-index: 41;
  display: block;
  width: min(410px, calc(100vw - 1rem));
  height: 340px;
}

body.chat-minimized .chat-card {
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--shadow-deep);
}

body.chat-hidden .chat-shell {
  display: none !important;
}

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

.symptom-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  min-height: 250px;
  padding: 1.5rem;
}

.symptom-card h3,
.biz-section h2,
.quiet-line,
.modal-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.symptom-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 0.95;
}

.symptom-card p,
.biz-section p,
.footer-warning,
.modal-sub {
  color: hsl(var(--muted-foreground));
}

.symptom-icon {
  width: 82px;
  height: 82px;
  margin-top: auto;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36);
  filter: saturate(0.95) contrast(1.03);
}

.mid-cta {
  display: flex;
  justify-content: center;
}

.biz-section {
  padding: 1.8rem;
}

.biz-section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.biz-section p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.02rem;
}

.biz-section p + p {
  margin-top: 0.75rem;
}

.process-grid {
  display: grid;
  gap: 1rem;
}

.process-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid > div {
  padding: 1.35rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
  background: hsl(var(--secondary));
}

.process-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--primary) / 0.3);
  font-weight: 700;
}

.process-grid p {
  margin: 0;
  color: hsl(var(--foreground));
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-strip p {
  margin: 0;
  padding: 1.15rem;
  text-align: center;
  color: hsl(var(--foreground));
}

.quiet-line {
  margin: 0;
  padding: 1.2rem 1.5rem;
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100vw - 3rem));
  margin: 0 auto 2rem;
  padding: 1.4rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: hsl(var(--foreground));
}

.footer-warning {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal.on {
  display: flex;
}

.modal-card {
  width: min(520px, calc(100vw - 1.5rem));
  padding: 1.35rem;
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 0.1rem);
  background: rgba(12, 12, 12, 0.98);
  box-shadow: var(--shadow-deep);
}

.modal-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.modal-sub {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--foreground)), hsl(var(--primary)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider-line {
  width: min(220px, 36vw);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, hsl(var(--primary) / 0.55), transparent);
}

.section-shell,
.hero-banner,
.image-break,
.cta-band {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-shell,
.cta-band {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  width: min(1280px, calc(100vw - 3rem));
  margin-inline: auto;
}

.narrow-shell {
  width: min(860px, 100%);
  margin-inline: auto;
}

.split-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 1.5rem;
  align-items: center;
}

.band-shell {
  display: grid;
  gap: 1.4rem;
}

.section-intro {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.3rem;
}

.section-intro.center {
  justify-items: center;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: hsl(var(--primary));
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-shell h2,
.section-shell h3,
.cta-band h2,
.hero-banner-copy h1,
.page-title,
.footer-brand h3 {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.04em;
}

.page-title,
.section-shell h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.section-shell h3 {
  font-size: 1.25rem;
}

.section-shell p,
.cta-band p,
.footer-brand p,
.simple-list li,
.faq-stack p,
.legal-stack p,
.legal-stack li,
.hero-banner-copy p,
.section-lead {
  color: hsl(var(--muted-foreground));
  line-height: 1.72;
}

.section-lead {
  margin: 0.75rem 0 0;
}

.hero-banner {
  min-height: clamp(320px, 50vw, 520px);
  width: min(1280px, calc(100vw - 3rem));
  margin-inline: auto;
}

.hero-banner img,
.media-card img,
.image-break > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner::after,
.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.52));
}

.hero-banner-copy,
.image-break-copy {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2.25rem);
  right: clamp(1.2rem, 3vw, 2.25rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.media-card {
  overflow: hidden;
  min-height: 320px;
  border: none;
  border-radius: 1.2rem;
  background: transparent;
  box-shadow: none;
}

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

.feature-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.card-panel {
  padding: 1.3rem;
  border: none;
  border-top: 1px solid hsl(var(--border));
  border-radius: 0;
  background: transparent;
}

.feature-card p,
.card-panel p {
  margin: 0.65rem 0 0;
}

.image-break {
  min-height: 15vh;
  width: 100%;
}

.image-break-copy {
  inset: 0;
  max-width: 46rem;
  margin: auto;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 2rem;
}

.image-break-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.02;
}

.image-break-copy p {
  max-width: 36rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
}

.bullet-stack,
.simple-list,
.legal-stack,
.faq-stack {
  display: grid;
  gap: 0.95rem;
}

.bullet-stack.compact {
  gap: 0.75rem;
}

.bullet-stack > div {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.bullet-stack > div > span {
  width: 10px;
  height: 10px;
  margin-top: 0.42rem;
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 0 0 0 6px hsl(var(--primary) / 0.14);
}

.bullet-stack p {
  margin: 0;
}

.cta-band {
  text-align: center;
  justify-items: center;
}

.cta-band blockquote {
  margin: 0;
  max-width: 20ch;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-stack {
  padding-left: 1.1rem;
}

.simple-list {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
}

.simple-list li + li {
  margin-top: 0.45rem;
}

.faq-stack details {
  padding: 1.05rem 1.15rem;
  border: none;
  border-top: 1px solid hsl(var(--border));
  border-radius: 0;
  background: transparent;
}

.faq-stack summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

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

.faq-stack details p {
  margin: 0.7rem 0 0;
}

.booking-shell {
  align-items: stretch;
}

.form-panel h2 {
  margin-bottom: 1rem;
}

.simple-form {
  display: grid;
  gap: 0.9rem;
}

.simple-form label {
  display: grid;
  gap: 0.45rem;
  color: hsl(var(--foreground));
  font-size: 0.95rem;
  font-weight: 500;
}

.textarea {
  min-height: 144px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.row {
  display: flex;
  gap: 0.7rem;
}

.mb10 {
  margin-bottom: 0.7rem;
}

.mt10 {
  margin-top: 0.7rem;
}

.prompt-pill,
.bottombar,
.watermark {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .symptom-grid,
  .process-grid.three-up,
  .trust-strip,
  .split-shell,
  .feature-grid,
  .feature-grid.three-up {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 2rem 0 0;
  }

  .hero-chat-wrap {
    min-height: 460px;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: flex;
    min-height: calc(74px + var(--safe-top));
    justify-content: space-between;
    width: calc(100vw - 1.25rem);
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 0.45rem;
    gap: 0.25rem;
    border-radius: 1rem;
    border: 1px solid hsl(var(--border));
    background: rgba(12, 12, 12, 0.98);
    box-shadow: var(--shadow-deep);
  }

  body.nav-open .site-nav a {
    border-radius: 0.8rem;
    padding: 0.7rem 0.8rem;
  }

  body.nav-open .site-nav .nav-cta {
    margin-top: 0.4rem;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .biz-wrap,
  .site-footer {
    width: 100%;
  }

  .hero-copy,
  .biz-section,
  .symptom-card,
  .site-footer,
  .section-shell,
  .cta-band {
    padding: 1.25rem;
  }

  .hero-grid,
  .section-shell,
  .hero-banner,
  .site-footer,
  .cta-band {
    width: calc(100vw - 1.25rem);
  }

  .hero-copy::after {
    display: none;
  }

  .hero-copy h1,
  .page-title,
  .section-shell h2,
  .cta-band h2 {
    line-height: 1.02;
  }

  .hero-stage,
  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 1.4rem 1.25rem 0;
  }

  .hero-banner-copy,
  .image-break-copy {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  body.chat-on .chat-shell {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  body.chat-on .chat-card {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }

  body.chat-minimized .chat-shell {
    inset: auto 0.5rem 0.5rem 0.5rem;
    width: auto;
  }

  .chat-voice-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }
}

.topbar,
.site-nav .nav-cta,
.menu-toggle,
.try-btn,
.link-btn,
.admin-pill,
.hero-copy::before,
.hero-copy::after,
.hero-kicker,
.btn-primary,
.btn-secondary,
.btn-tertiary,
.hero-chat-wrap,
.avatar,
.msg,
.mode-actions button,
.quick-replies button,
.chat-suggestions button,
.input,
.send,
.begin,
.small-btn,
.chat-min-btn,
.chat-close-btn,
.chat-launcher,
.voice-toggle-btn,
.chat-voice-grid select,
body.chat-on .chat-card,
body.chat-minimized .chat-card,
.symptom-icon,
.process-grid > div,
.process-grid span,
.modal-card,
.media-card,
.feature-card,
.card-panel,
.faq-stack details {
  border-radius: 0;
}

.uthrive-lander {
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.uthrive-lander .hero-grid.reverse > :first-child {
  order: 2;
}

.uthrive-lander .hero-grid.reverse > :last-child {
  order: 1;
}

.uthrive-lander .hero-grid.solo {
  grid-template-columns: minmax(0, 1fr);
}

.uthrive-lander .hero-grid.solo .hero-copy {
  max-width: min(920px, 100%);
}

.uthrive-lander .hero-grid.solo .hero-chat-wrap {
  display: none;
}

.uthrive-lander .hero-sub {
  max-width: 38ch;
}

.uthrive-lander .lander-note {
  max-width: 40rem;
  margin-top: 1.15rem;
  padding: 0.95rem 1rem;
  border-left: 3px solid hsl(var(--primary));
  background: rgba(12, 12, 12, 0.42);
  color: hsl(var(--muted-foreground));
}

.uthrive-lander .lander-note strong {
  color: hsl(var(--foreground));
}

.uthrive-lander .compact-break {
  min-height: 42vh;
}

.uthrive-lander .compact-break img {
  min-height: 42vh;
}

.uthrive-lander .icon-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    radial-gradient(circle at center, hsl(var(--primary) / 0.14), transparent 62%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(11, 11, 11, 0.92));
}

.uthrive-lander .icon-media img {
  width: min(280px, 72%);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.42));
}

.uthrive-lander .site-nav .nav-cta,
.uthrive-lander .btn-primary,
.uthrive-lander .btn-secondary,
.uthrive-lander .btn-tertiary {
  min-height: 58px;
  padding: 0.95rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uthrive-lander .site-nav .nav-cta,
.uthrive-lander .btn-primary {
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.26), 0 18px 42px hsl(var(--primary) / 0.24);
}

.uthrive-lander .btn-secondary {
  border-color: hsl(var(--primary) / 0.38);
}

.uthrive-lander .btn-tertiary {
  border-color: hsl(var(--primary) / 0.45);
}

.uthrive-lander .cta-band {
  border: 1px solid hsl(var(--primary) / 0.26);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.08), var(--shadow-soft);
}

body.lander-operator {
  --primary: 86 100% 50%;
  --accent: 131 78% 37%;
}

body.lander-provider {
  --primary: 40 84% 67%;
  --accent: 17 56% 44%;
  --ring: 40 84% 67%;
}

body.lander-rebuilder {
  --primary: 24 92% 63%;
  --accent: 7 57% 44%;
  --ring: 24 92% 63%;
}

body.lander-quiet-grinder {
  --primary: 170 56% 57%;
  --accent: 148 36% 42%;
  --ring: 170 56% 57%;
}

body.lander-high-output-leader {
  --primary: 208 83% 67%;
  --accent: 227 46% 52%;
  --ring: 208 83% 67%;
}

body.lander-analyst {
  --primary: 206 88% 71%;
  --accent: 223 41% 51%;
  --ring: 206 88% 71%;
}

body.lander-disciplined-father {
  --primary: 82 82% 61%;
  --accent: 122 40% 43%;
  --ring: 82 82% 61%;
}

body.lander-overloaded-executive {
  --primary: 35 89% 66%;
  --accent: 14 52% 44%;
  --ring: 35 89% 66%;
}

body.lander-comeback-athlete {
  --primary: 165 63% 58%;
  --accent: 145 39% 40%;
  --ring: 165 63% 58%;
}

body.lander-skeptical-achiever {
  --primary: 214 82% 70%;
  --accent: 235 43% 54%;
  --ring: 214 82% 70%;
}

body.lander-provider .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(228, 185, 114, 0.14), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(159, 96, 58, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.94), rgba(9, 9, 9, 0.98)),
    hsl(var(--background));
}

body.lander-rebuilder .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 146, 82, 0.16), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(173, 86, 61, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.94), rgba(9, 9, 9, 0.98)),
    hsl(var(--background));
}

body.lander-quiet-grinder .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(90, 203, 184, 0.14), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(48, 128, 110, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(5, 7, 7, 0.94), rgba(9, 9, 9, 0.98)),
    hsl(var(--background));
}

body.lander-high-output-leader .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(89, 171, 241, 0.15), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(89, 107, 207, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.94), rgba(8, 9, 12, 0.99)),
    hsl(var(--background));
}

body.lander-analyst .bg,
body.lander-skeptical-achiever .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(108, 176, 241, 0.15), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(91, 111, 206, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.94), rgba(8, 9, 12, 0.99)),
    hsl(var(--background));
}

body.lander-skeptical-achiever .bg::before {
  content: none;
}

body.lander-disciplined-father .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(168, 224, 88, 0.15), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(71, 145, 69, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(6, 8, 6, 0.94), rgba(9, 9, 9, 0.98)),
    hsl(var(--background));
}

body.lander-overloaded-executive .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(234, 170, 98, 0.15), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(154, 88, 61, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.94), rgba(10, 9, 8, 0.99)),
    hsl(var(--background));
}

body.lander-comeback-athlete .bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(89, 210, 180, 0.15), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(46, 132, 107, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(5, 8, 8, 0.94), rgba(8, 10, 10, 0.99)),
    hsl(var(--background));
}

body.lander-operator .hero-stage {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.24) 70%, rgba(5, 5, 5, 0.66) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-operator-background.PNG") center center / cover no-repeat;
}

body.lander-provider .hero-stage {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.76) 0%, rgba(9, 8, 7, 0.6) 45%, rgba(9, 8, 7, 0.22) 72%, rgba(9, 8, 7, 0.64) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-provider-background.PNG") center center / cover no-repeat;
}

body.lander-rebuilder .hero-stage {
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.76) 0%, rgba(8, 6, 5, 0.6) 45%, rgba(8, 6, 5, 0.24) 72%, rgba(8, 6, 5, 0.64) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-rebuilder-background.PNG") center center / cover no-repeat;
}

body.lander-quiet-grinder .hero-stage {
  background:
    linear-gradient(90deg, rgba(5, 8, 8, 0.95) 0%, rgba(5, 8, 8, 0.84) 44%, rgba(5, 8, 8, 0.68) 72%, rgba(5, 8, 8, 0.84) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-quiet-grinder-background.PNG") center center / cover no-repeat;
}

body.lander-high-output-leader .hero-stage {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78) 0%, rgba(5, 7, 10, 0.62) 44%, rgba(5, 7, 10, 0.18) 72%, rgba(5, 7, 10, 0.62) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-high-output-leader-background.PNG") center center / cover no-repeat;
}

body.lander-analyst .hero-stage,
body.lander-skeptical-achiever .hero-stage {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78) 0%, rgba(5, 7, 10, 0.62) 44%, rgba(5, 7, 10, 0.18) 72%, rgba(5, 7, 10, 0.62) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-analyst-background.PNG") center center / cover no-repeat;
}

body.lander-skeptical-achiever .hero-stage {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.96) 0%, rgba(6, 6, 6, 0.9) 44%, rgba(6, 6, 6, 0.78) 72%, rgba(6, 6, 6, 0.9) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-skeptical-achiever-background.PNG") center center / cover no-repeat;
}

body.lander-disciplined-father .hero-stage {
  background:
    linear-gradient(90deg, rgba(6, 8, 5, 0.78) 0%, rgba(6, 8, 5, 0.62) 44%, rgba(6, 8, 5, 0.2) 72%, rgba(6, 8, 5, 0.62) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-disciplined-father-background.PNG") center center / cover no-repeat;
}

body.lander-overloaded-executive .hero-stage {
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.78) 0%, rgba(8, 7, 5, 0.62) 44%, rgba(8, 7, 5, 0.2) 72%, rgba(8, 7, 5, 0.62) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-overloaded-executive-background.PNG") center center / cover no-repeat;
}

body.lander-comeback-athlete .hero-stage {
  background:
    linear-gradient(90deg, rgba(5, 8, 8, 0.78) 0%, rgba(5, 8, 8, 0.62) 44%, rgba(5, 8, 8, 0.2) 72%, rgba(5, 8, 8, 0.62) 100%),
    url("/assets/images/uthrive-backgrounds/avatar-the-comeback-athlete-background.PNG") center center / cover no-repeat;
}

body.lander-provider .feature-card,
body.lander-rebuilder .feature-card,
body.lander-quiet-grinder .feature-card,
body.lander-high-output-leader .feature-card {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(11, 11, 11, 0.92));
}

@media (max-width: 1080px) {
  .uthrive-lander .hero-grid.reverse > :first-child,
  .uthrive-lander .hero-grid.reverse > :last-child {
    order: initial;
  }
}

@media (min-width: 1600px) {
  .topbar {
    width: min(1480px, calc(100vw - 6rem));
  }

  .hero-grid,
  .trust-strip,
  .section-shell,
  .cta-band {
    width: min(1480px, calc(100vw - 5rem));
  }

  .uthrive-lander .hero-grid.solo .hero-copy {
    max-width: min(1080px, 100%);
  }
}
