:root {
  color-scheme: dark;
  --ink: #f3fff7;
  --muted: #9ca9a0;
  --green: #2ecb72;
  --green-deep: #087a3d;
  --green-dark: #0b2517;
  --panel: rgba(9, 18, 13, 0.88);
  --panel-strong: #0b1610;
  --line: rgba(132, 255, 181, 0.15);
  --danger: #ff6b67;
  --radius-lg: 28px;
  --radius-md: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Public editorial surface */

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a,
.topbar-cta {
  color: #d7dfd9;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 11px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  border-color: rgba(46, 203, 114, 0.7);
  background: rgba(46, 203, 114, 0.1);
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1.16fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: 650px;
  padding: clamp(56px, 7vw, 94px) 0 clamp(72px, 8vw, 112px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-index {
  margin: 0;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
}

.hero-kicker span {
  width: 26px;
  height: 2px;
  background: var(--green);
}

.public-hero h1 {
  margin: 0;
  color: #f6faf7;
  font-size: clamp(4.7rem, 9vw, 8.6rem);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: -0.085em;
}

.public-hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 2px var(--green);
  text-stroke: 2px var(--green);
}

.hero-lede {
  max-width: 540px;
  margin: 38px 0 0;
  color: #b6c1ba;
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 820;
  text-decoration: none;
}

.hero-primary {
  gap: 14px;
  background: var(--green);
  color: #031009;
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ecf4ef;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  transform: translateY(-2px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 560px;
  margin: 45px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-facts div {
  min-width: 0;
  padding: 18px 18px 0 0;
}

.hero-facts dt {
  margin-bottom: 6px;
  color: #718078;
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hero-facts dd {
  margin: 0;
  color: #e7efe9;
  font-size: 0.88rem;
  font-weight: 730;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 4, 0.88) 100%);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.88) contrast(1.04);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(5, 9, 7, 0.78);
  backdrop-filter: blur(14px);
}

.hero-visual figcaption > span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #031009;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-visual figcaption strong {
  font-size: 0.88rem;
}

.hero-visual figcaption a {
  color: #dce8df;
  font-size: 0.75rem;
  font-weight: 750;
  text-decoration: none;
}

.program-section {
  margin: 0 calc(50% - 50vw);
  padding: clamp(72px, 9vw, 118px) max(24px, calc((100vw - 1280px) / 2));
  background: #eef3ef;
  color: #08100b;
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.68fr);
  column-gap: clamp(30px, 6vw, 100px);
  align-items: end;
}

.editorial-heading .section-index {
  grid-column: 1;
  align-self: start;
  color: #167943;
}

.editorial-heading h2 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.editorial-heading > p:last-child {
  grid-column: 2;
  max-width: 660px;
  margin: 30px 0 0;
  color: #435048;
  font-size: 1.03rem;
  line-height: 1.65;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(60px, 7vw, 92px);
  border-top: 1px solid #aeb9b1;
  border-bottom: 1px solid #aeb9b1;
}

.program-grid article {
  padding: 30px clamp(20px, 3vw, 38px) 34px 0;
}

.program-grid article + article {
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid #c1cac3;
}

.program-grid article > span {
  color: #19834a;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.program-grid h3 {
  margin: 44px 0 12px;
  font-size: clamp(1.4rem, 2vw, 2.05rem);
  letter-spacing: -0.035em;
}

.program-grid p {
  margin: 0;
  color: #526058;
  font-size: 0.94rem;
  line-height: 1.58;
}

.program-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
  padding: 20px 0;
}

.live-mark {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #20af60;
  box-shadow: 0 0 0 6px rgba(32, 175, 96, 0.12);
}

.program-note p {
  margin: 0;
  color: #4f5b53;
  font-size: 0.9rem;
}

.program-note strong {
  margin-right: 8px;
  color: #08100b;
}

.program-note a {
  color: #0b5d32;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.conversation-archive {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border: 1px solid #bcc6be;
  border-radius: 18px;
  overflow: hidden;
}

.conversation-archive header,
.conversation-archive a {
  min-width: 0;
  min-height: 190px;
  padding: 25px;
}

.conversation-archive header {
  background: #0a120d;
  color: #f1f7f3;
}

.conversation-archive header span,
.conversation-archive a small {
  color: #24995a;
  font-size: 0.64rem;
  font-weight: 880;
  letter-spacing: 0.13em;
}

.conversation-archive header h3 {
  margin: 48px 0 0;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.conversation-archive a {
  position: relative;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #c7d0c9;
  color: #0b140e;
  text-decoration: none;
  transition: background 180ms ease;
}

.conversation-archive a:hover,
.conversation-archive a:focus-visible {
  background: #e2ebe4;
}

.conversation-archive a strong {
  margin-top: 28px;
  font-size: 1.05rem;
}

.conversation-archive a span {
  margin-top: 8px;
  color: #546159;
  font-size: 0.82rem;
  line-height: 1.45;
}

.conversation-archive a b {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #177a43;
}

.host-profile {
  display: grid;
  grid-template-columns: minmax(310px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(46px, 8vw, 118px);
  align-items: center;
  padding: clamp(82px, 10vw, 140px) 0;
}

.host-portrait {
  position: relative;
  max-width: 500px;
}

.host-portrait::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(46, 203, 114, 0.35);
  border-radius: 26px;
}

.host-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
}

.host-portrait > span {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: -18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #021008;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.host-copy h2 {
  margin: 18px 0 28px;
  font-size: clamp(4rem, 7vw, 7.6rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.host-copy > p:not(.section-index) {
  max-width: 650px;
  color: #aebbb2;
  font-size: 1rem;
  line-height: 1.65;
}

.host-copy .host-intro {
  color: #edf7f0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
}

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

.host-links a {
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: #eaf4ed;
  font-size: 0.76rem;
  font-weight: 720;
  text-decoration: none;
}

.host-links a:hover,
.host-links a:focus-visible {
  border-color: rgba(46, 203, 114, 0.56);
  background: rgba(46, 203, 114, 0.07);
}

.host-links span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.contact-link {
  display: inline-block;
  margin-top: 24px;
  color: #8e9b93;
  font-size: 0.8rem;
  text-underline-offset: 4px;
}

.network-section {
  padding: 0 0 clamp(82px, 9vw, 126px);
}

.network-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 44px;
}

.network-heading h2 {
  margin: 16px 0 0;
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.network-heading > p {
  margin: 0;
  color: #9eaba2;
  line-height: 1.6;
}

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

.network-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #0a0f0c;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.network-card:hover,
.network-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(46, 203, 114, 0.5);
  background: #0d1711;
}

.network-featured {
  grid-column: span 7;
  background: linear-gradient(145deg, rgba(46, 203, 114, 0.18), rgba(8, 16, 11, 0.9));
}

.network-grid > .network-card:nth-child(2) {
  grid-column: span 5;
}

.network-magazine {
  grid-column: span 4;
  background: #eef3ef;
  color: #09110c;
}

.network-label {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 880;
  letter-spacing: 0.15em;
}

.network-magazine .network-label {
  color: #167943;
}

.network-card h3 {
  margin: 44px 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.network-card p {
  max-width: 450px;
  margin: 0;
  color: #96a49b;
  font-size: 0.92rem;
  line-height: 1.55;
}

.network-magazine p {
  color: #4b5850;
}

.network-card b {
  margin-top: auto;
  padding-top: 28px;
  color: #dbe8df;
  font-size: 0.78rem;
}

.network-magazine b {
  color: #0c6536;
}

.central-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr) auto;
  gap: 30px;
  align-items: end;
  padding: 76px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.central-heading h2 {
  margin: 13px 0 0;
  font-size: clamp(2.3rem, 4.3vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.central-heading > p {
  margin: 0;
  color: #9eaba2;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #030705;
  color: var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 192, 84, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 78%, rgba(6, 94, 47, 0.2), transparent 32rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 36px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 124px;
  height: 58px;
  object-fit: contain;
  border: 1px solid rgba(90, 255, 153, 0.45);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 12px 34px rgba(16, 209, 94, 0.22);
}

.brand-tagline {
  max-width: 110px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.privacy-chip,
.mode-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 31, 19, 0.72);
  color: #c9f7d9;
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
}

.privacy-chip {
  padding: 9px 13px;
}

.privacy-chip span {
  color: var(--green);
  font-size: 0.68rem;
  text-shadow: 0 0 12px var(--green);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  overflow: hidden;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(4, 10, 7, 0.8);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.signal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 52px;
  background:
    linear-gradient(150deg, rgba(18, 139, 67, 0.32), rgba(3, 8, 5, 0.78) 62%),
    #07120c;
}

.signal-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -118px;
  bottom: -110px;
  border: 1px solid rgba(89, 255, 153, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(89, 255, 153, 0.035), 0 0 0 108px rgba(89, 255, 153, 0.018);
}

.signal-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin-bottom: 44px;
  border: 1px solid rgba(60, 255, 134, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(51, 255, 132, 0.025), 0 0 56px rgba(23, 224, 110, 0.08);
}

.signal-orbit::before,
.signal-orbit::after {
  content: "";
  position: absolute;
  inset: 19px;
  border: 1px solid rgba(67, 255, 139, 0.18);
  border-radius: 50%;
  animation: breathe 2.5s ease-in-out infinite;
}

.signal-orbit::after {
  inset: 39px;
  animation-delay: -1.25s;
}

.signal-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(25, 224, 111, 0.09), 0 0 38px rgba(25, 224, 111, 0.28);
  color: #041109;
}

.signal-core span {
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.signal-core small {
  margin-top: -16px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.signal-copy h1 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.signal-copy > p:last-child {
  max-width: 420px;
  margin: 20px 0 0;
  color: #a8bdaf;
  font-size: 1rem;
  line-height: 1.55;
}

.mini-status {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-top: 42px;
}

.mini-status span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(222, 255, 234, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  color: #d4e9dc;
  font-size: 0.72rem;
  font-weight: 850;
}

.composer {
  padding: 48px;
  background: rgba(9, 17, 12, 0.8);
}

.section-heading,
.dispatch-head,
.message-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2,
.dispatch-head h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.mode-badge {
  padding: 7px 10px;
  color: #9dcaae;
  font-size: 0.75rem;
}

.test-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: -8px 0 12px;
  padding: 13px;
  border: 1px dashed rgba(25, 224, 111, 0.34);
  border-radius: 15px;
  background: rgba(16, 64, 34, 0.3);
}

.test-callout-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(25, 224, 111, 0.14);
  color: var(--green);
  font-weight: 950;
}

.test-callout strong,
.test-callout small {
  display: block;
}

.test-callout strong {
  font-size: 0.88rem;
}

.test-callout small {
  margin-top: 3px;
  color: #88a18f;
  font-size: 0.73rem;
  line-height: 1.35;
}

.test-callout button,
.test-summary button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(25, 224, 111, 0.3);
  border-radius: 10px;
  background: var(--green);
  color: #041109;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.test-callout button:disabled {
  cursor: wait;
  filter: grayscale(0.35);
  opacity: 0.65;
}

.host-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 13px;
  border: 1px solid rgba(151, 124, 255, 0.32);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(99, 66, 194, 0.22), rgba(10, 18, 13, 0.42));
}

.host-callout-x {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f4f4f4;
  color: #050505;
  font-weight: 950;
}

.host-callout strong,
.host-callout small {
  display: block;
}

.host-callout strong {
  font-size: 0.88rem;
}

.host-callout small {
  margin-top: 3px;
  color: #a99fc4;
  font-size: 0.73rem;
  line-height: 1.35;
}

.host-callout > button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(195, 180, 255, 0.28);
  border-radius: 10px;
  background: #8268e8;
  color: white;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: #d8e9de;
  font-size: 0.9rem;
  font-weight: 750;
}

.url-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  overflow: hidden;
  min-height: 58px;
  border: 1px solid rgba(188, 255, 211, 0.16);
  border-radius: 15px;
  background: #07100b;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.url-field:focus-within {
  border-color: rgba(25, 224, 111, 0.68);
  box-shadow: 0 0 0 4px rgba(25, 224, 111, 0.08);
}

.url-field.is-invalid {
  border-color: var(--danger);
}

.x-prefix {
  display: grid;
  place-items: center;
  width: 52px;
  height: 100%;
  border-right: 1px solid rgba(188, 255, 211, 0.1);
  color: white;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
}

input {
  min-width: 0;
  padding: 17px 15px;
}

textarea {
  min-height: 114px;
  resize: vertical;
  padding: 15px 16px;
  border: 1px solid rgba(188, 255, 211, 0.16);
  border-radius: 15px;
  background: #07100b;
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea:focus {
  border-color: rgba(25, 224, 111, 0.68);
  box-shadow: 0 0 0 4px rgba(25, 224, 111, 0.08);
}

.paste-button {
  margin-right: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(188, 255, 211, 0.13);
  border-radius: 10px;
  background: #102219;
  color: #bfe8ce;
  font-size: 0.78rem;
  font-weight: 800;
}

.field-help,
.field-error {
  margin: 8px 0 23px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.field-help {
  color: #73887a;
}

.field-error {
  color: #ff9793;
}

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

.message-row span {
  color: #6e8275;
  font-size: 0.76rem;
}

.timing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 4px 0 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(18, 43, 26, 0.46);
}

.timing-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timing-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #173923;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.timing-card strong,
.timing-card small {
  display: block;
}

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

.timing-card small {
  margin-top: 3px;
  color: #819688;
  font-size: 0.75rem;
  line-height: 1.35;
}

.timing-card time {
  color: #c6ffda;
  font-size: 1.06rem;
  font-weight: 850;
  white-space: nowrap;
}

.primary-button,
.native-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  background: var(--green);
  color: #041109;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(25, 224, 111, 0.14);
  transition: transform 150ms ease, filter 150ms ease;
}

.primary-button:hover,
.native-share:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.primary-button:active,
.native-share:active {
  transform: translateY(0);
}

.dispatch {
  margin-top: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(7, 14, 10, 0.9);
}

.test-results {
  margin-top: 22px;
  padding: 34px;
  border: 1px solid rgba(25, 224, 111, 0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(13, 49, 27, 0.3), transparent 55%),
    rgba(7, 14, 10, 0.94);
}

.test-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.test-results-head h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.simulation-badge {
  padding: 8px 11px;
  border: 1px solid rgba(255, 214, 90, 0.24);
  border-radius: 999px;
  background: rgba(255, 199, 56, 0.08);
  color: #ffe28a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.test-progress {
  margin-bottom: 20px;
  padding: 15px 17px;
  border: 1px solid rgba(215, 255, 229, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.fake-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 15px 17px;
  border: 1px solid rgba(92, 180, 255, 0.2);
  border-radius: 14px;
  background: rgba(17, 46, 71, 0.2);
}

.fake-link-card span,
.fake-link-card code,
.fake-link-card small {
  display: block;
}

.fake-link-card span {
  color: #8ec9ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.fake-link-card code {
  margin-top: 6px;
  color: #e2f3ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.83rem;
  overflow-wrap: anywhere;
}

.fake-link-card small {
  margin-top: 4px;
  color: #7891a3;
  font-size: 0.7rem;
}

.fake-link-card button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(141, 207, 255, 0.24);
  border-radius: 10px;
  background: #153651;
  color: #dff2ff;
  font-size: 0.75rem;
  font-weight: 850;
}

.test-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #a9baaf;
  font-size: 0.82rem;
}

.test-progress strong {
  color: #dfffea;
  font-variant-numeric: tabular-nums;
}

.progress-track {
  overflow: hidden;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #122119;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0c9f4c, var(--green));
  box-shadow: 0 0 16px rgba(25, 224, 111, 0.28);
  transition: width 260ms ease;
}

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

.test-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 13px;
  border: 1px solid rgba(220, 255, 232, 0.09);
  border-radius: 14px;
  background: rgba(9, 20, 13, 0.82);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.test-person.is-sending {
  border-color: rgba(255, 214, 90, 0.28);
  background: rgba(54, 43, 10, 0.18);
  transform: translateY(-1px);
}

.test-person.is-delivered {
  border-color: rgba(25, 224, 111, 0.27);
  background: rgba(12, 55, 28, 0.3);
}

.test-avatar {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 13px;
  background: linear-gradient(145deg, #214f31, #102519);
  color: #dcffe8;
  font-size: 0.76rem;
  font-weight: 900;
}

.test-person-copy {
  min-width: 0;
}

.test-person-copy strong,
.test-person-copy small {
  display: block;
}

.test-person-copy strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.test-person-copy small {
  margin-top: 3px;
  color: #6f8877;
  font-size: 0.68rem;
}

.test-person-status {
  color: #708177;
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.test-person.is-sending .test-person-status {
  color: #ffe28a;
}

.test-person.is-delivered .test-person-status {
  color: var(--green);
}

.test-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(25, 224, 111, 0.3);
  border-radius: 15px;
  background: rgba(14, 70, 34, 0.3);
}

.test-summary > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: #041109;
  font-weight: 950;
}

.test-summary strong,
.test-summary small {
  display: block;
}

.test-summary strong {
  font-size: 0.86rem;
}

.test-summary small {
  margin-top: 4px;
  color: #92aa99;
  font-size: 0.73rem;
}

.test-summary button {
  background: transparent;
  color: #caffdc;
}

.test-summary-actions {
  display: flex;
  gap: 8px;
}

.test-summary-actions button:first-child {
  background: var(--green);
  color: #041109;
}

.test-social-previews {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(218, 255, 231, 0.1);
}

.preview-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.preview-heading h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.preview-heading > span {
  color: #72887a;
  font-size: 0.73rem;
}

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

.social-preview {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(222, 255, 234, 0.12);
  border-radius: 19px;
  background: #090f0c;
}

.social-preview > header {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(222, 255, 234, 0.08);
  color: #dfeae2;
  font-size: 0.78rem;
}

.platform-symbol {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: 9px;
  background: #1d2921;
  color: white;
  font-size: 0.7rem;
  font-weight: 950;
}

.preview-facebook .platform-symbol {
  background: #1769e0;
  font-size: 1rem;
}

.preview-instagram .platform-symbol {
  background: linear-gradient(145deg, #7657ff, #e53289 55%, #ff9d2e);
}

.preview-whatsapp .platform-symbol {
  background: #13a853;
}

.preview-youtube {
  grid-column: 1 / -1;
}

.preview-youtube .platform-symbol,
.channel-youtube .channel-logo {
  background: #ff0033;
  color: white;
}

.demo-surface {
  min-height: 360px;
}

.x-feed,
.facebook-feed {
  padding: 18px;
}

.profile-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.profile-row > span:nth-child(2) strong,
.profile-row > span:nth-child(2) small {
  display: block;
}

.profile-row > span:nth-child(2) strong {
  font-size: 0.85rem;
}

.profile-row > span:nth-child(2) small {
  margin-top: 2px;
  color: #78877e;
  font-size: 0.7rem;
}

.profile-row b {
  color: #718078;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.tj-avatar {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(82, 240, 143, 0.35);
  border-radius: 50%;
  background: #000;
  object-fit: cover;
}

.x-feed > p,
.facebook-feed > p {
  margin: 15px 0 7px;
  color: #f1f4f2;
  font-size: 0.88rem;
  line-height: 1.48;
}

.x-feed > a,
.chat-bubble > a {
  color: #55a8ff;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.space-preview-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 135px;
  margin-top: 15px;
  padding: 16px;
  border: 1px solid #23382b;
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 20%, rgba(25, 224, 111, 0.3), transparent 34%),
    linear-gradient(145deg, #101c15, #08110c);
}

.space-preview-card strong,
.space-preview-card small {
  display: block;
}

.space-preview-card strong {
  margin-top: 9px;
  font-size: 1rem;
}

.space-preview-card small {
  margin-top: 4px;
  color: #809488;
  font-size: 0.7rem;
}

.live-pill {
  align-self: flex-start;
  padding: 5px 7px;
  border-radius: 6px;
  background: var(--green);
  color: #031006;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.x-actions,
.facebook-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(227, 255, 235, 0.08);
  color: #75857b;
  font-size: 0.7rem;
}

.facebook-feed {
  background: #121714;
}

.facebook-link-card {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid #2b3430;
  border-radius: 8px;
  background: #1b211e;
}

.facebook-link-card span,
.facebook-link-card strong,
.facebook-link-card small {
  display: block;
}

.facebook-link-card span {
  color: #839089;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.facebook-link-card strong {
  margin-top: 7px;
  font-size: 1rem;
}

.facebook-link-card small {
  margin-top: 5px;
  color: #86b9ef;
  font-size: 0.7rem;
  overflow-wrap: anywhere;
}

.instagram-story {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 25% 15%, rgba(30, 231, 119, 0.42), transparent 31%),
    radial-gradient(circle at 85% 85%, rgba(11, 128, 64, 0.36), transparent 34%),
    #020604;
}

.story-progress {
  position: absolute;
  top: 10px;
  right: 12px;
  left: 12px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
}

.story-progress span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: white;
}

.story-account {
  position: absolute;
  top: 24px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
}

.story-account .tj-avatar {
  width: 31px;
  height: 31px;
}

.story-account small {
  color: rgba(255, 255, 255, 0.58);
}

.story-message {
  text-align: center;
}

.story-message small,
.story-message strong,
.story-message span {
  display: block;
}

.story-message small {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.story-message strong {
  margin-top: 10px;
  font-size: 2.75rem;
  line-height: 0.87;
  letter-spacing: -0.07em;
}

.story-message span {
  margin-top: 13px;
  color: #cfe9d8;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.instagram-story > button {
  margin-top: 27px;
  padding: 11px 17px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: #08120c;
  font-size: 0.68rem;
  font-weight: 950;
  transform: rotate(-2deg);
}

.story-note {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  text-align: center;
}

.whatsapp-chat {
  position: relative;
  padding: 74px 16px 20px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1.5px),
    #091710;
  background-size: 22px 22px;
}

.whatsapp-head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 8px 12px;
  background: #17271f;
}

.whatsapp-head > span:first-child {
  font-size: 1.8rem;
}

.whatsapp-head .tj-avatar {
  width: 35px;
  height: 35px;
}

.whatsapp-head strong,
.whatsapp-head small {
  display: block;
}

.whatsapp-head strong {
  font-size: 0.8rem;
}

.whatsapp-head small {
  margin-top: 2px;
  color: #8ba095;
  font-size: 0.65rem;
}

.chat-day {
  width: max-content;
  margin: 0 auto 20px;
  padding: 5px 9px;
  border-radius: 7px;
  background: #1d3026;
  color: #9eb2a7;
  font-size: 0.62rem;
  font-weight: 800;
}

.chat-bubble {
  width: min(88%, 330px);
  margin-left: auto;
  padding: 11px 12px 8px;
  border-radius: 13px 4px 13px 13px;
  background: #075e45;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.chat-bubble p {
  margin: 0 0 7px;
  font-size: 0.84rem;
  line-height: 1.46;
}

.chat-bubble small {
  display: block;
  margin-top: 7px;
  color: rgba(231, 255, 242, 0.6);
  font-size: 0.62rem;
  text-align: right;
}

.chat-bubble small b {
  color: #62c7ff;
}

.youtube-feed {
  display: grid;
  place-items: center;
  padding: 22px;
  background: #0f0f0f;
}

.youtube-community-post {
  width: min(100%, 620px);
  padding: 18px;
  border: 1px solid #303030;
  border-radius: 18px;
  background: #181818;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.youtube-community-post > p {
  margin: 16px 0 7px;
  color: #f1f1f1;
  font-size: 0.88rem;
  line-height: 1.5;
}

.youtube-community-post > a {
  color: #3ea6ff;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.youtube-space-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  margin-top: 15px;
  padding: 15px;
  border: 1px solid #383838;
  border-radius: 13px;
  background:
    radial-gradient(circle at 90% 20%, rgba(25, 224, 111, 0.16), transparent 35%),
    #101713;
}

.youtube-play {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: #ff0033;
  color: white;
  font-size: 0.95rem;
}

.youtube-space-card small,
.youtube-space-card strong {
  display: block;
}

.youtube-space-card small {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.youtube-space-card strong {
  margin-top: 4px;
  font-size: 0.91rem;
}

.youtube-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #303030;
  color: #aaa;
  font-size: 0.71rem;
}

.youtube-demo-note {
  display: block;
  margin-top: 12px;
  color: #696969;
  font-size: 0.67rem;
  text-align: center;
}

.dispatch-head {
  align-items: center;
  margin-bottom: 24px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 13px;
  border: 1px solid rgba(25, 224, 111, 0.2);
  border-radius: 12px;
  background: rgba(17, 46, 27, 0.56);
}

.countdown span {
  color: #83a18d;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.countdown strong {
  min-width: 54px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.message-preview {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--green);
  border-radius: 4px 14px 14px 4px;
  background: rgba(15, 33, 21, 0.75);
}

.message-preview span {
  color: #64826f;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.message-preview p {
  margin: 7px 0 0;
  color: #d9eadf;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

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

.channel-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(225, 255, 235, 0.1);
  border-radius: var(--radius-md);
  background: #0a130e;
}

.channel-logo {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 13px;
  background: #151f19;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.channel-facebook .channel-logo {
  background: #1769e0;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
}

.channel-instagram .channel-logo {
  background: linear-gradient(145deg, #7657ff, #e53289 55%, #ff9d2e);
}

.channel-whatsapp .channel-logo {
  background: #16b95b;
}

.channel-youtube {
  grid-column: 1 / -1;
}

.channel-copy {
  min-width: 0;
}

.channel-copy h3,
.channel-copy p {
  margin: 0;
}

.channel-copy h3 {
  font-size: 0.95rem;
}

.channel-copy p {
  margin-top: 4px;
  color: #788c7f;
  font-size: 0.73rem;
  line-height: 1.35;
}

.channel-card button {
  padding: 9px 12px;
  border: 1px solid rgba(201, 255, 219, 0.15);
  border-radius: 10px;
  background: #15251b;
  color: #d9f4e2;
  font-size: 0.78rem;
  font-weight: 800;
}

.channel-card.is-done {
  border-color: rgba(25, 224, 111, 0.32);
}

.channel-card.is-done button {
  color: var(--green);
}

.native-share {
  justify-content: center;
  margin-top: 14px;
  background: #ecfff3;
  color: #07130b;
}

.limits {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(216, 255, 230, 0.1);
  border-radius: var(--radius-md);
  background: rgba(8, 15, 11, 0.74);
}

.limits-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(25, 224, 111, 0.25);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 800;
}

.limits h2,
.limits p {
  margin: 0;
}

.limits h2 {
  font-size: 0.95rem;
}

.limits p {
  margin-top: 6px;
  color: #829588;
  font-size: 0.83rem;
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 28px;
  color: #5c6e61;
  font-size: 0.76rem;
}

body.modal-open {
  overflow: hidden;
}

.host-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
}

.host-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.space-host-panel {
  --space-purple: #8167eb;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(500px, 100%);
  height: min(860px, calc(100dvh - 32px));
  min-height: 620px;
  border: 1px solid rgba(216, 207, 255, 0.18);
  border-radius: 30px;
  background: #080808;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.72), 0 0 70px rgba(116, 86, 230, 0.12);
}

.space-live-ui {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 28%, rgba(109, 76, 228, 0.16), transparent 35%),
    radial-gradient(circle at 84% 52%, rgba(25, 224, 111, 0.08), transparent 30%),
    #080808;
}

.space-topbar {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  min-height: 68px;
  padding: 10px 14px;
}

.space-icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: #f7f7f7;
}

.space-icon-button svg,
.space-control svg,
.stage-mic-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.space-live-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #d9d9d9;
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
}

.space-live-status strong {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.space-live-status time {
  color: #929292;
}

.space-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff375f;
  box-shadow: 0 0 0 5px rgba(255, 55, 95, 0.1);
  animation: live-pulse 1.5s ease-in-out infinite;
}

.recording-pill {
  padding: 3px 5px;
  border-radius: 4px;
  background: #ff375f;
  color: white;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.space-end-button {
  justify-self: end;
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #ff607e;
  font-size: 0.75rem;
  font-weight: 850;
}

.space-simulation-note {
  align-self: center;
  margin: 0 0 4px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 211, 95, 0.2);
  border-radius: 999px;
  background: rgba(255, 199, 53, 0.07);
  color: #ebcf83;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.space-scroll {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px 14px;
  scrollbar-width: thin;
  scrollbar-color: #383838 transparent;
}

.space-title-block {
  margin-bottom: 20px;
  text-align: center;
}

.space-label {
  color: #a691ff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.space-title-block h2 {
  margin: 7px 0 6px;
  color: #f7f7f7;
  font-size: 1.42rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.space-title-block p {
  margin: 0;
  color: #898989;
  font-size: 0.78rem;
}

.space-title-block p strong {
  color: #d8d8d8;
  font-variant-numeric: tabular-nums;
}

.space-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 22px 10px;
}

.stage-person {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.stage-avatar-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 9px;
  border: 3px solid transparent;
  border-radius: 50%;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.stage-person.is-speaking .stage-avatar-wrap {
  border-color: var(--space-purple);
  box-shadow: 0 0 0 5px rgba(129, 103, 235, 0.13), 0 0 26px rgba(129, 103, 235, 0.22);
}

.stage-host.is-speaking .stage-avatar-wrap {
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(25, 224, 111, 0.1), 0 0 26px rgba(25, 224, 111, 0.2);
}

.stage-avatar-wrap > img,
.stage-fake-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.stage-avatar-wrap > img {
  background: black;
}

.stage-fake-avatar,
.participant-avatar {
  color: white;
  font-weight: 900;
}

.avatar-purple {
  background: linear-gradient(145deg, #8e71f4, #49318f);
}

.avatar-blue {
  background: linear-gradient(145deg, #4d9cf5, #22528b);
}

.avatar-orange {
  background: linear-gradient(145deg, #f58b4d, #884222);
}

.avatar-green {
  background: linear-gradient(145deg, #31bc78, #176440);
}

.stage-mic-badge {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid #080808;
  border-radius: 50%;
  background: #292929;
  color: #b9b9b9;
}

.stage-person.is-speaking .stage-mic-badge {
  background: white;
  color: #111;
}

.stage-mic-badge svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.stage-person strong,
.stage-person small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-person > strong {
  color: #ededed;
  font-size: 0.8rem;
}

.stage-person > small {
  margin-top: 3px;
  color: #6f6f6f;
  font-size: 0.6rem;
}

.stage-person > small b {
  color: #a691ff;
  font-size: 0.57rem;
  letter-spacing: 0.04em;
}

.host-mic-status {
  margin: 0;
  padding: 9px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: #aaa;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}

.host-mic-status.is-on {
  color: #8fffb6;
}

.space-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 4px;
  min-height: 96px;
  padding: 11px 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.96);
}

.space-control {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
}

.space-control-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #202020;
}

.space-control small {
  color: #a8a8a8;
  font-size: 0.65rem;
  font-weight: 750;
}

.space-mic-control .space-control-icon {
  width: 58px;
  height: 58px;
  margin-top: -10px;
  background: var(--green);
  color: #031006;
  box-shadow: 0 0 0 5px rgba(25, 224, 111, 0.08);
}

.space-mic-control.is-on .space-control-icon {
  background: #f4f4f4;
  color: #111;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.space-mic-control.is-on .control-mic-slash,
.stage-host.is-speaking .self-mic-slash {
  display: none;
}

.more-dots {
  padding-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.request-badge {
  position: absolute;
  top: -4px;
  right: calc(50% - 30px);
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid #050505;
  border-radius: 999px;
  background: #ff375f;
  color: white;
  font-size: 0.62rem;
}

.space-drawer {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  max-height: 78%;
  padding: 10px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px 24px 0 0;
  background: #141414;
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.65);
}

.drawer-handle {
  width: 38px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #4f4f4f;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.drawer-header h3,
.drawer-header small {
  display: block;
  margin: 0;
}

.drawer-header h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.drawer-header small {
  margin-top: 3px;
  color: #858585;
  font-size: 0.7rem;
}

.drawer-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 17px;
}

.drawer-summary span {
  padding: 9px 5px;
  border-radius: 10px;
  background: #1c1c1c;
  color: #7e7e7e;
  font-size: 0.63rem;
  text-align: center;
}

.drawer-summary strong {
  display: block;
  margin-bottom: 2px;
  color: #ededed;
  font-size: 0.92rem;
}

.drawer-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 7px;
}

.drawer-section-heading h4 {
  margin: 0;
  color: #aaa;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-section-heading button {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #202020;
  color: #d6d6d6;
  font-size: 0.65rem;
  font-weight: 800;
}

.participant-list {
  display: grid;
  gap: 5px;
}

.participant-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 53px;
  padding: 6px 7px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.participant-row > img,
.participant-avatar {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  object-fit: cover;
  font-size: 0.68rem;
}

.participant-row > span:nth-child(2) {
  min-width: 0;
}

.participant-row > span:nth-child(2) strong,
.participant-row > span:nth-child(2) small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.participant-row > span:nth-child(2) strong {
  font-size: 0.78rem;
}

.participant-row > span:nth-child(2) small {
  margin-top: 2px;
  color: #777;
  font-size: 0.65rem;
}

.participant-role {
  color: #a993ff;
  font-size: 0.6rem;
  font-weight: 900;
}

.participant-actions,
.request-actions {
  display: flex;
  gap: 5px;
}

.participant-actions button,
.request-actions button {
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #242424;
  color: #ddd;
  font-size: 0.62rem;
  font-weight: 800;
}

.participant-actions button:disabled {
  color: #747474;
  cursor: default;
}

.request-heading {
  margin-top: 18px;
}

.request-heading > span {
  color: #ff8ca2;
  font-size: 0.65rem;
  font-weight: 800;
}

.request-actions .accept-request {
  border-color: transparent;
  background: white;
  color: #111;
}

.request-row.is-resolved {
  opacity: 0.62;
}

.request-result {
  color: #8fffb6;
  font-size: 0.65rem;
  font-weight: 800;
}

.request-result.is-rejected {
  color: #929292;
}

.drawer-help {
  margin: 18px 0 0;
  padding: 11px 12px;
  border-left: 3px solid var(--space-purple);
  border-radius: 3px 9px 9px 3px;
  background: #1b1b1b;
  color: #8e8e8e;
  font-size: 0.68rem;
  line-height: 1.45;
}

.settings-drawer {
  padding-bottom: 26px;
}

.setting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.setting-row strong,
.setting-row small {
  display: block;
}

.setting-row strong {
  font-size: 0.82rem;
}

.setting-row small {
  margin-top: 3px;
  color: #777;
  font-size: 0.67rem;
}

.space-switch {
  position: relative;
  width: 44px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #3b3b3b;
  transition: background 160ms ease;
}

.space-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: transform 160ms ease;
}

.space-switch.is-on {
  background: var(--space-purple);
}

.space-switch.is-on span {
  transform: translateX(18px);
}

.speaker-permission-card {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(158, 132, 255, 0.2);
  border-radius: 13px;
  background: rgba(104, 75, 207, 0.1);
}

.speaker-permission-card span,
.speaker-permission-card strong,
.speaker-permission-card small {
  display: block;
}

.speaker-permission-card span {
  color: #9c86ee;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.speaker-permission-card strong {
  margin-top: 7px;
  font-size: 0.84rem;
}

.speaker-permission-card small {
  margin-top: 4px;
  color: #7c7c7c;
  font-size: 0.67rem;
}

.space-confirm {
  position: absolute;
  z-index: 9;
  inset: 0;
  display: grid;
  place-items: end center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.73);
  backdrop-filter: blur(7px);
}

.space-confirm > div {
  width: 100%;
  padding: 25px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #171717;
  text-align: center;
}

.end-confirm-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255, 55, 95, 0.13);
  color: #ff5274;
}

.space-confirm h3 {
  margin: 0;
  font-size: 1.2rem;
}

.space-confirm p {
  margin: 7px 0 18px;
  color: #8d8d8d;
  font-size: 0.76rem;
}

.confirm-end-button,
.cancel-end-button,
.restart-space-button,
.close-ended-button {
  width: 100%;
  min-height: 47px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.confirm-end-button {
  border: 0;
  background: #ff375f;
  color: white;
}

.cancel-end-button {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #e5e5e5;
}

.space-ended {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
  background:
    radial-gradient(circle at center 30%, rgba(25, 224, 111, 0.12), transparent 34%),
    #090909;
  text-align: center;
}

.space-ended > img {
  width: 176px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 14px;
}

.space-ended > span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.space-ended h2 {
  margin: 9px 0 7px;
  font-size: 1.75rem;
  letter-spacing: -0.045em;
}

.space-ended > p {
  margin: 0;
  color: #898989;
  font-size: 0.78rem;
}

.space-ended > p strong {
  color: #ddd;
  font-variant-numeric: tabular-nums;
}

.ended-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 8px;
  margin: 25px 0;
}

.ended-stats > span {
  padding: 14px 8px;
  border-radius: 13px;
  background: #161616;
}

.ended-stats strong,
.ended-stats small {
  display: block;
}

.ended-stats strong {
  font-size: 1.3rem;
}

.ended-stats small {
  margin-top: 2px;
  color: #777;
  font-size: 0.65rem;
}

.restart-space-button {
  border: 0;
  background: var(--green);
  color: #031006;
}

.close-ended-button {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #ddd;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 12px 17px;
  border: 1px solid rgba(137, 255, 180, 0.22);
  border-radius: 12px;
  background: #112119;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  color: #e3ffed;
  font-size: 0.85rem;
  transform: translateX(-50%);
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(25, 224, 111, 0.68);
  outline-offset: 3px;
}

@keyframes breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.38; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 930px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    min-height: 390px;
    padding: 42px;
  }

  .signal-orbit {
    width: 124px;
    height: 124px;
    margin-bottom: 34px;
  }

  .signal-core {
    width: 74px;
    height: 74px;
  }

  .signal-core span {
    font-size: 1.78rem;
  }

  .signal-core small {
    margin-top: -13px;
  }

  .signal-copy h1 {
    max-width: 620px;
  }

  .test-audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 690px) {
  .shell {
    width: min(100% - 24px, 1180px);
    padding-top: 16px;
  }

  .topbar {
    margin-bottom: 16px;
  }

  .privacy-chip {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .brand small {
    display: none;
  }

  .workspace,
  .dispatch {
    border-radius: 22px;
  }

  .signal-panel,
  .composer,
  .dispatch,
  .test-results {
    padding: 26px 20px;
  }

  .signal-panel {
    min-height: 365px;
  }

  .signal-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .signal-copy > p:last-child {
    font-size: 0.93rem;
  }

  .mini-status {
    margin-top: 28px;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .section-heading h2,
  .dispatch-head h2 {
    font-size: 1.38rem;
  }

  .mode-badge {
    display: none;
  }

  .timing-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .timing-card time {
    padding-left: 52px;
  }

  .dispatch-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .test-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .test-results-head h2 {
    font-size: 1.38rem;
  }

  .test-audience {
    grid-template-columns: 1fr;
  }

  .test-summary {
    grid-template-columns: auto 1fr;
  }

  .test-summary-actions {
    grid-column: 1 / -1;
    width: 100%;
  }

  .test-summary button {
    flex: 1;
    width: 100%;
  }

  .fake-link-card,
  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .fake-link-card button {
    width: 100%;
  }

  .social-preview-grid {
    grid-template-columns: 1fr;
  }

  .youtube-feed {
    padding: 14px;
  }

  .youtube-community-post {
    padding: 15px;
  }

  .host-callout {
    grid-template-columns: auto 1fr;
  }

  .host-callout > button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .limits {
    padding: 19px;
  }
}

@media (max-width: 560px) {
  .host-modal {
    padding: 0;
  }

  .space-host-panel {
    width: 100%;
    height: 100dvh;
    min-height: 0;
    border: 0;
    border-radius: 0;
  }

  .space-topbar {
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .space-controls {
    padding-bottom: max(14px, env(safe-area-inset-bottom));
  }

  .space-drawer {
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .space-scroll {
    padding-right: 12px;
    padding-left: 12px;
  }

  .stage-avatar-wrap {
    width: 72px;
    height: 72px;
  }

  .stage-avatar-wrap > img,
  .stage-fake-avatar {
    width: 63px;
    height: 63px;
  }

  .participant-actions button,
  .request-actions button {
    padding: 0 6px;
    font-size: 0.58rem;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 108px;
    height: 50px;
  }

  .brand-tagline {
    display: none;
  }

  .channel-card {
    grid-template-columns: auto 1fr;
  }

  .channel-card button {
    grid-column: 1 / -1;
    min-height: 43px;
  }

  .test-callout {
    grid-template-columns: auto 1fr;
  }

  .test-callout button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Final editorial refinements and responsive rules */

body {
  background: #040705;
  overflow-x: clip;
}

.ambient {
  background:
    radial-gradient(circle at 12% 8%, rgba(28, 126, 70, 0.16), transparent 34rem),
    radial-gradient(circle at 92% 30%, rgba(28, 126, 70, 0.08), transparent 31rem),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: auto, auto, 64px 64px, 64px 64px;
}

.shell {
  width: min(1280px, calc(100% - 48px));
  padding-top: 20px;
}

.topbar {
  min-height: 74px;
  margin-bottom: 0;
  padding: 0 0 18px;
}

.brand-logo {
  width: 116px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: none;
}

.brand-tagline {
  max-width: 132px;
  color: #77847b;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
}

.workspace {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.limits {
  margin-top: 20px;
}

footer {
  color: #718078;
}

footer a {
  color: inherit;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 18px;
  }

  .public-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .hero-visual img {
    height: 510px;
  }

  .host-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .public-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual img {
    height: 470px;
  }

  .editorial-heading {
    grid-template-columns: 1fr;
  }

  .editorial-heading .section-index,
  .editorial-heading h2,
  .editorial-heading > p:last-child {
    grid-column: 1;
  }

  .editorial-heading h2 {
    margin-top: 28px;
  }

  .host-profile {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 50px;
  }

  .conversation-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversation-archive header {
    grid-column: 1 / -1;
    min-height: 150px;
  }

  .conversation-archive header h3 {
    margin-top: 34px;
  }

  .network-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-card,
  .network-featured,
  .network-magazine,
  .network-grid > .network-card:nth-child(2) {
    grid-column: span 1;
  }

  .central-heading {
    grid-template-columns: 1fr auto;
  }

  .central-heading > p {
    grid-column: 1;
  }

  .central-heading .privacy-chip {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
}

@media (max-width: 690px) {
  .shell {
    width: min(100% - 24px, 1280px);
    padding-top: 12px;
  }

  .topbar {
    min-height: 62px;
    padding-bottom: 12px;
  }

  .brand-logo {
    width: 98px;
    height: 51px;
  }

  .topbar-cta {
    gap: 6px;
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .public-hero {
    gap: 44px;
    padding: 54px 0 76px;
  }

  .public-hero h1 {
    font-size: clamp(4.25rem, 22vw, 6.7rem);
  }

  .public-hero h1 em {
    -webkit-text-stroke-width: 1.5px;
  }

  .hero-lede {
    margin-top: 30px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-facts div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-facts dt {
    margin: 0;
  }

  .hero-visual {
    border-radius: 18px;
  }

  .hero-visual img {
    height: 370px;
    object-position: 71% center;
  }

  .hero-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 13px;
  }

  .hero-visual figcaption a {
    grid-column: 2;
  }

  .program-section {
    padding: 72px 18px;
  }

  .editorial-heading h2 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .program-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .program-grid article,
  .program-grid article + article {
    padding: 25px 0 28px;
    border-left: 0;
  }

  .program-grid article + article {
    border-top: 1px solid #c1cac3;
  }

  .program-grid h3 {
    margin-top: 26px;
  }

  .program-note {
    grid-template-columns: auto 1fr;
  }

  .program-note a {
    grid-column: 2;
  }

  .conversation-archive {
    grid-template-columns: 1fr;
  }

  .conversation-archive header,
  .conversation-archive a {
    grid-column: 1;
    min-height: 165px;
  }

  .conversation-archive a {
    border-top: 1px solid #c7d0c9;
    border-left: 0;
  }

  .host-profile {
    grid-template-columns: 1fr;
    gap: 62px;
    padding: 92px 0;
  }

  .host-portrait {
    width: calc(100% - 16px);
  }

  .host-copy h2 {
    font-size: clamp(4.4rem, 21vw, 6.6rem);
  }

  .host-links {
    grid-template-columns: 1fr;
  }

  .network-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .network-heading h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

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

  .network-card,
  .network-featured,
  .network-magazine,
  .network-grid > .network-card:nth-child(2) {
    grid-column: 1;
    min-height: 250px;
  }

  .central-heading {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .central-heading > p,
  .central-heading .privacy-chip {
    grid-column: 1;
    grid-row: auto;
  }

  .central-heading .privacy-chip {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-card,
  .hero-actions a,
  .site-nav a::after {
    transition: none;
  }
}

/* Portada clara y simplificada */

.topbar,
.public-hero {
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.topbar {
  margin-top: -20px;
  padding-top: 20px;
}

.brand-logo {
  border-color: rgba(5, 15, 9, 0.12);
}

.brand-tagline {
  color: #5d6961;
  border-left-color: rgba(5, 15, 9, 0.14);
}

.site-nav a,
.topbar-cta {
  color: #111713;
}

.topbar-cta {
  border-color: rgba(5, 15, 9, 0.16);
  background: rgba(5, 15, 9, 0.035);
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  border-color: rgba(22, 132, 71, 0.55);
  background: rgba(22, 132, 71, 0.08);
}

.public-hero {
  border-top-color: rgba(5, 15, 9, 0.12);
}

.public-hero h1 {
  color: #070b08;
}

.public-hero h1 em {
  -webkit-text-stroke-color: #168447;
  text-stroke-color: #168447;
}

.hero-lede {
  color: #4f5c53;
}

.hero-secondary {
  border-color: rgba(5, 15, 9, 0.18);
  color: #111713;
}

.hero-facts {
  border-top-color: rgba(5, 15, 9, 0.15);
}

.hero-facts dt {
  color: #657168;
}

.hero-facts dd {
  color: #141a16;
}

.hero-logo-visual {
  display: grid;
  place-items: center;
  min-height: clamp(420px, 43vw, 550px);
  padding: clamp(22px, 3vw, 38px);
  border-color: #d8ded9;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 76px rgba(6, 22, 12, 0.2);
}

.hero-logo-visual::before {
  display: none;
}

.hero-logo-visual img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
}

/* La central privada ya no forma parte de la página pública. */
.central-heading,
.workspace,
.test-results,
.dispatch,
.limits,
.host-modal,
.toast {
  display: none !important;
}

@media (max-width: 690px) {
  .hero-facts div {
    border-bottom-color: rgba(5, 15, 9, 0.1);
  }

  .hero-logo-visual {
    min-height: 300px;
    padding: 18px;
    border-radius: 20px;
  }
}
