:root {
  --navy-950: #05263f;
  --navy-900: #082f4f;
  --navy-800: #0d4268;
  --teal-500: #13b8b0;
  --teal-400: #2cc9c1;
  --blue-500: #1686d9;
  --blue-400: #3aa2e8;
  --ivory: #faf8f2;
  --paper: #fffefb;
  --aqua-100: #e8f8f6;
  --aqua-50: #f2fbfa;
  --slate-700: #4f6478;
  --slate-600: #64778a;
  --slate-400: #99a8b5;
  --gold: #e5b85c;
  --line: rgba(8, 47, 79, 0.10);
  --shadow-soft: 0 24px 64px rgba(8, 47, 79, 0.10);
  --shadow-card: 0 18px 44px rgba(8, 47, 79, 0.11), 0 2px 8px rgba(8, 47, 79, 0.04);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shell: 1240px;
  --transition: 220ms cubic-bezier(.2,.8,.2,1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--navy-950);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.migration-strip {
  background: var(--navy-950);
  color: white;
  min-height: 42px;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.migration-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.migration-strip__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(229, 184, 92, 0.11);
}

.migration-strip a {
  margin-left: 4px;
  color: #bff0ec;
  font-weight: 700;
  text-decoration: none;
}

.migration-strip a:hover {
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 248, 242, 0.82);
  border-bottom: 1px solid rgba(8,47,79,.06);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand__mark {
  width: 46px;
  height: 46px;
  overflow: visible;
}

.brand__arc {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.brand__arc--top {
  stroke: var(--teal-500);
}

.brand__arc--bottom {
  stroke: var(--blue-500);
}

.brand__dot {
  fill: white;
}

.brand__wordmark {
  letter-spacing: -1.05px;
  font-weight: 800;
  font-size: 25px;
  line-height: 1;
}

.brand__text {
  color: var(--navy-950);
}

.brand__circle {
  color: var(--teal-500);
}

.brand__org {
  color: var(--slate-400);
  font-size: .54em;
  font-weight: 700;
  margin-left: 2px;
  letter-spacing: -.2px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 27px;
}

.nav a {
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--navy-950);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-950);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.button--primary {
  background: var(--navy-950);
  color: white;
  box-shadow: 0 9px 26px rgba(5, 38, 63, .17);
}

.button--primary:hover {
  transform: translateY(-2px);
  background: var(--navy-800);
  box-shadow: 0 16px 34px rgba(5, 38, 63, .20);
}

.button--small {
  min-height: 44px;
  padding: 0 17px;
  font-size: 14px;
}

.button--large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 16px;
}

.button__arrow {
  display: inline-block;
  transition: transform var(--transition);
}

.button:hover .button__arrow {
  transform: translateX(4px);
}

.button--text {
  color: var(--navy-900);
  padding-inline: 8px 14px;
}

.button--text:hover {
  color: var(--teal-500);
}

.play-dot {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 9px;
  background: rgba(19,184,176,.12);
  color: var(--teal-500);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 25%, rgba(19,184,176,.09), transparent 29%),
    linear-gradient(180deg, #fffefb 0%, var(--ivory) 100%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero__glow--one {
  width: 620px;
  height: 620px;
  top: 80px;
  right: -250px;
  background: radial-gradient(circle, rgba(22,134,217,.08), transparent 64%);
}

.hero__glow--two {
  width: 440px;
  height: 440px;
  left: -230px;
  bottom: 0;
  background: radial-gradient(circle, rgba(19,184,176,.07), transparent 64%);
}

.hero__grid {
  min-height: min(760px, calc(100vh - 124px));
  padding-top: 58px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(560px, 1.07fr);
  gap: 46px;
  align-items: center;
}

.hero__copy {
  max-width: 630px;
  animation: heroIn 700ms cubic-bezier(.2,.8,.2,1) both;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 0 12px 0 10px;
  border: 1px solid rgba(19,184,176,.17);
  border-radius: 999px;
  background: rgba(232,248,246,.66);
  color: var(--navy-800);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}

.eyebrow__icon {
  color: var(--teal-500);
  font-size: 13px;
}

.hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(47px, 5.05vw, 72px);
  line-height: .99;
  letter-spacing: -4px;
  font-weight: 850;
}

.text-gradient {
  color: var(--teal-500);
  background: linear-gradient(110deg, var(--teal-500), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lede {
  max-width: 605px;
  margin: 0;
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.64;
}

.control-callout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  max-width: 620px;
  padding: 16px 17px;
  border: 1px solid rgba(8,47,79,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(8,47,79,.04);
}

.control-callout__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--aqua-100);
}

.control-callout__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--teal-500);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-callout p {
  margin: 0;
  color: var(--slate-700);
  font-size: 14px;
  line-height: 1.57;
}

.control-callout strong {
  color: var(--navy-950);
}

.compatibility {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 750;
}

.compatibility span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compatibility__check {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-100);
  color: var(--teal-500);
  font-size: 12px;
  font-style: normal;
}

.hero__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 13px;
}

.microcopy span {
  color: var(--teal-500);
  margin-right: 4px;
}

.hero__visual {
  min-width: 0;
}

.visual-stage {
  position: relative;
  height: 610px;
  max-width: 680px;
  margin-left: auto;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 45.5%;
  translate: -50% -50%;
  border: 1px solid rgba(19,184,176,.13);
  border-radius: 50%;
  pointer-events: none;
}

.orbit--outer {
  width: 520px;
  height: 520px;
  border-style: dashed;
}

.orbit--inner {
  width: 320px;
  height: 320px;
  border-color: rgba(22,134,217,.11);
}

.circle-core {
  position: absolute;
  left: 50%;
  top: 43.5%;
  translate: -50% -50%;
  width: 144px;
  height: 144px;
  z-index: 7;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(8,47,79,.07);
  box-shadow: 0 18px 50px rgba(8,47,79,.11);
  transition: transform 380ms cubic-bezier(.2,.8,.2,1), box-shadow 380ms ease;
}

.circle-core.is-pulsing {
  transform: scale(1.055);
  box-shadow:
    0 20px 54px rgba(8,47,79,.13),
    0 0 0 12px rgba(19,184,176,.06),
    0 0 0 26px rgba(19,184,176,.025);
}

.circle-core__halo {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(19,184,176,.10);
  border-radius: 50%;
}

.circle-core__logo {
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 8px 16px rgba(22,134,217,.10));
}

.circle-core__caption {
  position: absolute;
  left: 50%;
  bottom: -28px;
  translate: -50% 0;
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.phone-card {
  position: absolute;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.phone-card__label {
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.phone-card--flip {
  top: 32px;
  left: 32px;
}

.phone-card--basic {
  top: 60px;
  right: 26px;
}

.phone-card--smart {
  left: 24px;
  top: 330px;
}

.device {
  position: relative;
  background: var(--navy-950);
  box-shadow: 0 15px 34px rgba(5,38,63,.16);
}

.device--flip {
  width: 95px;
  height: 174px;
  border-radius: 16px 16px 22px 22px;
  padding: 10px 9px 12px;
}

.device--flip::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 89px;
  height: 2px;
  background: rgba(255,255,255,.16);
}

.device__hinge {
  position: absolute;
  top: 82px;
  left: 14px;
  right: 14px;
  height: 12px;
  border-radius: 999px;
  background: #0f527c;
}

.device__screen {
  height: 67px;
  padding: 8px;
  border-radius: 9px;
  background: #eaf5ea;
  overflow: hidden;
}

.device__network {
  display: block;
  margin-bottom: 7px;
  color: #58715a;
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 7px;
  font-weight: 800;
}

.message-line {
  margin: 0;
  color: #1d3320;
  font-family: ui-monospace, "SFMono-Regular", monospace;
  font-size: 7.5px;
  line-height: 1.34;
  opacity: .86;
}

.device__keypad {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px 8px;
}

.device__keypad span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}

.device--basic {
  width: 86px;
  height: 182px;
  border-radius: 17px;
  padding: 10px 9px;
}

.device--basic .device__screen {
  height: 74px;
}

.device__navkey {
  width: 31px;
  height: 21px;
  margin: 9px auto 0;
  border-radius: 50%;
  border: 5px solid rgba(255,255,255,.26);
}

.device__keypad--small {
  bottom: 12px;
}

.device__keypad--small span {
  height: 6px;
}

.device--smart {
  width: 118px;
  height: 220px;
  padding: 19px 8px 10px;
  border-radius: 25px;
  background: #0b3857;
}

.device__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  translate: -50% 0;
  width: 37px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.sms-thread {
  height: 100%;
  border-radius: 17px;
  padding: 12px 8px;
  background: #f7fafc;
}

.sms-thread__bubble {
  max-width: 88px;
  padding: 7px 8px;
  border-radius: 10px 10px 10px 3px;
  font-size: 7.8px;
  line-height: 1.3;
}

.sms-thread__bubble--in {
  background: #e5edf3;
  color: #24435c;
}

.sms-thread__bubble--reply {
  margin: 10px 0 0 auto;
  border-radius: 10px 10px 3px 10px;
  color: white;
  background: var(--blue-500);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.sms-thread__bubble--reply.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.signal {
  position: absolute;
  z-index: 6;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0;
  background: var(--teal-400);
  box-shadow: 0 0 0 6px rgba(19,184,176,.09), 0 0 18px rgba(19,184,176,.6);
}

.signal--flip {
  left: 153px;
  top: 176px;
}

.signal--basic {
  right: 152px;
  top: 190px;
}

.signal--smart {
  left: 160px;
  top: 410px;
}

.signal.is-active {
  opacity: 1;
  animation: signalPulse 800ms ease-in-out infinite alternate;
}

@keyframes signalPulse {
  from { transform: scale(.88); }
  to { transform: scale(1.2); }
}

.admin-panel {
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 9;
  width: 328px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(8,47,79,.08);
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-card);
  transform: translateY(9px);
  opacity: .98;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms ease;
}

.admin-panel.is-highlighted {
  transform: translateY(0);
  box-shadow:
    0 22px 54px rgba(8,47,79,.14),
    0 0 0 4px rgba(19,184,176,.05);
}

.admin-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-panel__eyebrow {
  display: block;
  color: var(--teal-500);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.admin-panel h2 {
  margin: 4px 0 0;
  font-size: 18px;
  letter-spacing: -.5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(19,184,176,.10);
  color: #0b7f79;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
}

.status-pill.is-paused {
  background: rgba(229,184,92,.16);
  color: #8b6416;
}

.status-pill.is-paused .status-pill__dot {
  background: var(--gold);
}

.member-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}

.member-row + .member-row {
  border-top: 1px solid rgba(8,47,79,.06);
}

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.avatar--d {
  color: #0b7e78;
  background: #dff7f4;
}

.avatar--r {
  color: #386eac;
  background: #e3eef9;
}

.member-row__main {
  min-width: 0;
}

.member-row__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
}

.member-row__meta strong {
  color: var(--navy-950);
}

.member-row__meta span {
  color: var(--slate-600);
}

.meter {
  overflow: hidden;
  height: 5px;
  margin-top: 6px;
  border-radius: 999px;
  background: #edf2f5;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-500));
}

.meter--muted span {
  background: #95a9bc;
}

.member-cost {
  color: var(--navy-900);
  font-size: 11px;
}

.admin-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.usage-total {
  display: grid;
  gap: 1px;
}

.usage-total span {
  color: var(--slate-600);
  font-size: 9px;
  font-weight: 750;
}

.usage-total strong {
  font-size: 17px;
}

.pause-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(8,47,79,.10);
  border-radius: 11px;
  background: var(--navy-950);
  color: white;
  font-size: 9.5px;
  font-weight: 850;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.pause-button:hover {
  transform: translateY(-1px);
  background: var(--navy-800);
}

.pause-button.is-paused {
  color: var(--navy-900);
  background: var(--aqua-100);
}

.pause-button__icon {
  font-size: 10px;
  letter-spacing: -2px;
}

.promise-row {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4px;
  margin-bottom: 34px;
  border: 1px solid rgba(8,47,79,.07);
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 42px rgba(8,47,79,.05);
  backdrop-filter: blur(12px);
}

.promise {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 22px 28px;
}

.promise + .promise {
  border-left: 1px solid rgba(8,47,79,.07);
}

.promise__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--aqua-100);
  color: var(--teal-500);
  font-size: 20px;
}

.promise h3 {
  margin: 0 0 3px;
  font-size: 14px;
  letter-spacing: -.2px;
}

.promise p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.45;
}

.placeholder-section {
  min-height: 34vh;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-top: 1px solid rgba(8,47,79,.06);
}

.placeholder-section:nth-of-type(even) {
  background: var(--aqua-50);
}

.placeholder-section__inner {
  text-align: center;
}

.placeholder-section span {
  color: var(--teal-500);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.placeholder-section h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -1.8px;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav {
    gap: 18px;
  }

  .nav a {
    font-size: 13px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: 28px;
  }

  .visual-stage {
    transform: scale(.92);
    transform-origin: center right;
    width: 660px;
    margin-left: -80px;
  }
}

@media (max-width: 940px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(8,47,79,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-card);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--aqua-50);
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-button {
    display: block;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero__visual {
    margin-top: -6px;
  }

  .visual-stage {
    width: min(100%, 680px);
    margin: 0 auto;
    transform: none;
  }

  .promise-row {
    grid-template-columns: 1fr;
  }

  .promise + .promise {
    border-left: 0;
    border-top: 1px solid rgba(8,47,79,.07);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .migration-strip {
    min-height: 48px;
  }

  .migration-strip__inner {
    justify-content: flex-start;
    font-size: 12px;
  }

  .migration-strip a {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
    gap: 8px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand__wordmark {
    font-size: 21px;
  }

  .header-cta {
    display: none;
  }

  .hero__grid {
    padding-top: 34px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(43px, 13.5vw, 60px);
    letter-spacing: -3px;
  }

  .hero__lede {
    font-size: 16px;
  }

  .control-callout {
    grid-template-columns: 36px 1fr;
    padding: 14px;
  }

  .control-callout__icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
  }

  .button--large {
    width: 100%;
  }

  .microcopy {
    text-align: center;
  }

  .hero__visual {
    overflow: hidden;
    margin-inline: -14px;
  }

  .visual-stage {
    height: 640px;
    width: 620px;
    left: 50%;
    transform: translateX(-50%) scale(.78);
    transform-origin: top center;
    margin-bottom: -135px;
  }

  .promise {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .signal {
    display: none;
  }
}


/* =========================================================
   TEXTCIRCLE HERO — CALMER RIGHT-SIDE DEMO (v2)
   Simplifies the visual story:
   flip phone -> TextCircle -> smartphone + organizer controls
   ========================================================= */

@media (min-width: 941px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, .92fr);
    gap: 52px;
  }

  .visual-stage {
    height: 590px;
    max-width: 610px;
    margin-left: auto;
  }

  /* Remove the busy network-diagram feeling */
  .orbit,
  .signal,
  .phone-card--basic {
    display: none !important;
  }

  /* Make the central brand mark the visual anchor */
  .circle-core {
    left: 54%;
    top: 39%;
    width: 168px;
    height: 168px;
    box-shadow:
      0 22px 56px rgba(8,47,79,.10),
      0 0 0 14px rgba(19,184,176,.035);
  }

  .circle-core__halo {
    inset: 16px;
    border-color: rgba(19,184,176,.08);
  }

  .circle-core__logo {
    width: 102px;
    height: 102px;
  }

  .circle-core__caption {
    bottom: -30px;
    font-size: 10px;
    letter-spacing: .10em;
  }

  /* Very restrained pulse instead of "broadcast" animation */
  .circle-core.is-pulsing {
    transform: scale(1.025);
    box-shadow:
      0 22px 56px rgba(8,47,79,.11),
      0 0 0 16px rgba(19,184,176,.04);
  }

  /* One old-school phone: tells the flip-phone story */
  .phone-card--flip {
    top: 88px;
    left: 26px;
  }

  .phone-card--flip .device--flip {
    transform: scale(1.05);
    transform-origin: center top;
  }

  /* One modern phone: reinforces "every phone" */
  .phone-card--smart {
    left: 34px;
    top: 336px;
  }

  .phone-card--smart .device--smart {
    transform: scale(.95);
    transform-origin: center top;
  }

  /* Soften labels so they guide instead of compete */
  .phone-card__label {
    color: #718496;
    font-size: 9px;
    letter-spacing: .08em;
  }

  /* Put organizer controls in their own calm zone */
  .admin-panel {
    right: 0;
    bottom: 18px;
    width: 300px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow:
      0 20px 48px rgba(8,47,79,.09),
      0 2px 7px rgba(8,47,79,.035);
  }

  .admin-panel.is-highlighted {
    transform: translateY(0);
    box-shadow:
      0 22px 50px rgba(8,47,79,.10),
      0 0 0 3px rgba(19,184,176,.035);
  }

  .admin-panel h2 {
    font-size: 17px;
  }

  .member-row {
    padding: 10px 0;
  }

  /* More breathing room around the whole demo */
  .hero__visual {
    padding-left: 8px;
  }
}

/* Calm the experience globally */
@media (prefers-reduced-motion: no-preference) {
  .circle-core,
  .admin-panel,
  .sms-thread__bubble--reply {
    transition-duration: 520ms;
  }
}

/* Keep the mobile version simpler too */
@media (max-width: 940px) {
  .orbit,
  .signal,
  .phone-card--basic {
    display: none !important;
  }

  .circle-core {
    left: 55%;
    top: 40%;
  }

  .phone-card--flip {
    left: 86px;
    top: 72px;
  }

  .phone-card--smart {
    left: 92px;
    top: 340px;
  }

  .admin-panel {
    right: 42px;
    bottom: 8px;
    width: 300px;
  }
}
