:root {
  color-scheme: light;
  --ink: #0f1a1d;
  --ink-2: #1f3034;
  --ink-3: #33484c;
  --paper: #f3f8f7;
  --ice: #eaf4f2;
  --surface: #ffffff;
  --surface-soft: #f8fbfa;
  --teal: #138b85;
  --teal-dark: #0c6965;
  --aqua: #72d8cf;
  --aqua-soft: #dff4f1;
  --coral: #df8178;
  --coral-soft: #f7e7e4;
  --violet: #9387aa;
  --violet-soft: #ece8f2;
  --line: #aec6c3;
  --line-soft: #d7e4e2;
  --muted: #526b6f;
  --shadow-crisp: 6px 7px 0 var(--ink);
  --shadow-ambient: 0 24px 58px rgba(22, 61, 62, .16);
  --shadow-soft: 0 12px 28px rgba(22, 61, 62, .11);
  --ease-mechanical: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:is(a, button, [tabindex="0"]):focus-visible {
  outline: 3px solid rgba(19, 139, 133, .55);
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-weight: 750;
  left: 18px;
  padding: 10px 15px;
  position: fixed;
  top: -60px;
  transition: top .18s ease;
  z-index: 200;
}
.skip-link:focus { top: 0; }

.shell {
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: clamp(18px, 4vw, 52px);
  width: 100%;
}

/* Header */
.topbar {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 0 rgba(15, 26, 29, .035);
  position: sticky;
  top: 0;
  z-index: 80;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-plate {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  box-shadow: 3px 4px 0 rgba(15, 26, 29, .10);
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 7px 11px;
  transition: box-shadow .18s ease, transform .18s ease;
}
.brand:hover .brand-plate { box-shadow: 4px 5px 0 rgba(15, 26, 29, .16); transform: translateY(-1px); }
.brand-icon {
  background: var(--teal);
  display: block;
  flex: 0 0 auto;
  height: 29px;
  -webkit-mask: url('/textagent-icon.png') center / contain no-repeat;
  mask: url('/textagent-icon.png') center / contain no-repeat;
  width: 29px;
}
.brand-plate strong { color: var(--ink); font-size: 19px; font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.brand-plate strong span { color: var(--teal); }

.topbar nav {
  align-items: center;
  display: flex;
  gap: 20px;
  min-width: 0;
}

.topbar nav a {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 680;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.topbar nav a:not(.nav-cta):not(.nav-signin)::after {
  background: var(--teal);
  bottom: -7px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease-out);
  width: 100%;
}
.topbar nav a:not(.nav-cta):not(.nav-signin):hover::after { transform: scaleX(1); }

.nav-signin,
.nav-cta {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  padding: 10px 15px;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.nav-signin {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--teal-dark) !important;
}
.nav-signin:hover { background: var(--aqua-soft); border-color: #7eb7b2; transform: translateY(-1px); }
.nav-cta {
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 3px 3px 0 var(--aqua);
  color: #fff !important;
}
.nav-cta:hover { background: var(--ink-2); box-shadow: 4px 4px 0 var(--aqua); transform: translateY(-1px); }
.nav-cta:active, .nav-signin:active { box-shadow: none; transform: translate(2px, 2px); }

.nav-menu {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--aqua);
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 13px;
  font-weight: 760;
  min-height: 42px;
  padding: 9px 15px;
}

/* Shared type and controls */
.eyebrow {
  align-items: center;
  color: var(--ink-2);
  display: inline-flex;
  font-size: 12px;
  font-weight: 760;
  gap: 9px;
  line-height: 1.1;
}
.eyebrow::before {
  background: linear-gradient(90deg, var(--teal) 0 68%, var(--coral) 68%);
  border-radius: 2px;
  content: '';
  height: 3px;
  width: 24px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 760;
  gap: 11px;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--aqua);
  color: #fff;
}
.button.primary:hover { background: var(--ink-2); box-shadow: 5px 5px 0 var(--aqua); transform: translateY(-2px); }
.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 5px 12px rgba(25, 72, 72, .06);
}
.button.secondary:hover { border-color: var(--teal); box-shadow: 0 8px 18px rgba(25, 72, 72, .10); transform: translateY(-2px); }
.button.tertiary {
  background: var(--aqua-soft);
  border-color: #84bbb6;
  color: var(--ink);
}
.button.tertiary:hover { background: #ccece8; border-color: var(--teal); transform: translateY(-2px); }
.button:active { box-shadow: none !important; transform: translate(2px, 2px) !important; }

/* Hero: Concept 1 "The Direct Line" */
.hero {
  background-color: #f8fbfa;
  background-image:
    linear-gradient(rgba(19, 139, 133, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 139, 133, .032) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.hero::after {
  background: linear-gradient(90deg, transparent, rgba(114, 216, 207, .42), transparent);
  bottom: 0;
  content: '';
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-masthead {
  max-width: 1060px;
  padding: clamp(52px, 6.5vw, 84px) 0 clamp(44px, 5.5vw, 70px);
  position: relative;
  z-index: 1;
}

.hero-headline {
  color: var(--ink);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .94;
  margin: 0 0 20px;
  max-width: 960px;
}
.hero-headline em {
  color: var(--teal);
  font-family: 'Newsreader', Georgia, serif;
  font-size: .88em;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.03em;
  margin-inline: .02em .01em;
  white-space: nowrap;
}

.hero-lead {
  border-left: 3px solid var(--teal);
  color: var(--ink-2);
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 650;
  line-height: 1.42;
  margin: 0 0 14px;
  max-width: 780px;
  padding-left: 15px;
}

.hero-sublead {
  color: var(--muted);
  font-size: clamp(14.5px, 1.15vw, 15.5px);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 760px;
}

.hero-line-anchor {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin: 8px 0 32px;
  min-height: 80px;
  position: relative;
  width: 100%;
}

.carrier-line {
  --carrier-travel: 760%;
  background: linear-gradient(90deg, rgba(151, 184, 181, .2), rgba(151, 184, 181, .62));
  height: 2px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}

.carrier-signal {
  animation: carrier-sweep 4.8s cubic-bezier(.42, 0, .3, 1) infinite;
  background: linear-gradient(90deg,
    rgba(114, 216, 207, .28) 0 19%,
    transparent 19% 31%,
    rgba(114, 216, 207, .82) 31% 65%,
    transparent 65% 76%,
    var(--teal) 76% 100%);
  border-radius: 999px;
  box-shadow: 0 0 7px rgba(114, 216, 207, .58);
  height: 4px;
  left: 0;
  position: absolute;
  top: -1px;
  transform: translateX(-110%);
  width: clamp(100px, 15%, 164px);
}

.hero-line-anchor:hover .carrier-signal {
  animation-duration: 2.8s;
}

.hero-phone-number {
  background: #f8fbfa;
  box-shadow: 0 0 0 10px #f8fbfa;
  color: var(--ink);
  display: inline-block;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  padding: 4px 18px 4px 0;
  position: relative;
  text-decoration: none;
  transition: color .2s ease, transform .2s var(--ease-mechanical);
  z-index: 2;
}
.hero-phone-number:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button--call {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--aqua);
  color: #fff;
}
.button--call:hover {
  background: var(--ink-2);
  box-shadow: 5px 5px 0 var(--aqua);
  color: #fff;
  transform: translateY(-2px);
}

.button--text {
  background: #fff;
  border-color: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
}
.button--text:hover {
  border-color: var(--teal);
  box-shadow: 5px 5px 0 var(--ink);
  transform: translateY(-2px);
}

.button--account {
  background: var(--aqua-soft);
  border-color: #72d8cf;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--teal-dark);
}
.button--account:hover {
  background: #d4f2ed;
  box-shadow: 5px 5px 0 var(--ink);
  transform: translateY(-2px);
}

.hero-signin-link {
  align-items: center;
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 13.5px;
  font-weight: 700;
  min-height: 42px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.hero-signin-link:hover {
  background: rgba(19, 139, 133, .08);
  color: var(--ink);
  text-decoration: underline;
}

.btn-icon {
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}

.hero-access-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 2px 0 0;
  max-width: 760px;
  padding-top: 15px;
}

@keyframes carrier-sweep {
  0%, 14% { opacity: 0; transform: translateX(-110%); }
  20% { opacity: 1; }
  72% { opacity: 1; }
  84%, 100% { opacity: 0; transform: translateX(var(--carrier-travel)); }
}

/* Feature strip */
.blue-band {
  background: var(--ink);
  border-bottom: 1px solid #2b4145;
  color: #fff;
  padding: 19px 0;
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1240px;
  padding-inline: clamp(18px, 4vw, 52px);
}
.band-item {
  align-items: center;
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 30px minmax(0, 1fr);
  min-height: 58px;
  padding: 8px 16px;
  transition: background-color .18s ease;
}
.band-item + .band-item { border-left: 1px solid #375055; }
.band-item:hover { background: #152529; }
.band-icon {
  background: #17282c;
  border: 1px solid #40595d;
  border-radius: 9px;
  color: var(--aqua);
  grid-row: 1 / 3;
  height: 30px;
  padding: 6px;
  transition: box-shadow .18s ease, transform .18s ease;
  width: 30px;
}
.band-item:hover .band-icon { box-shadow: 2px 3px 0 var(--channel-color, var(--aqua)); transform: translateY(-1px); }
.band-item:nth-child(2) .band-icon { color: var(--coral); }
.band-item:nth-child(3) .band-icon { color: #b9add0; }
.band-item strong { font-size: 12px; }
.band-item span { color: #b7cdcb; font-size: 9.5px; line-height: 1.35; }

/* Content sections */
.content {
  background: var(--paper);
  padding: clamp(68px, 7vw, 88px) 0;
}
.content.how { background: #fff; }
#plans { background: var(--ice); }
#faq { background: #f8fbfa; }

.section-head {
  align-items: start;
  display: grid;
  gap: 10px 34px;
  grid-template-columns: minmax(130px, .36fr) minmax(0, 1.64fr);
  margin-bottom: 34px;
  min-width: 0;
}
.section-head .eyebrow { align-self: start; grid-column: 1; grid-row: 1 / 3; justify-self: start; margin-top: 7px; }
.section-head h2 {
  color: var(--ink);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(42px, 4.8vw, 60px);
  font-weight: 760;
  grid-column: 2;
  letter-spacing: -.035em;
  line-height: .96;
  margin: 0;
  max-width: 780px;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
  grid-column: 2;
  line-height: 1.55;
  margin: 5px 0 0;
  max-width: 660px;
}

/* Use cases */
.use-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.use-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(25, 72, 72, .07), inset 0 1px 0 #fff;
  display: grid;
  gap: 8px 11px;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 174px;
  overflow: hidden;
  padding: 17px;
  position: relative;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease-out);
}
.use-card:nth-child(3n) { background: #edf7f5; }
.use-card:nth-child(4n) { background: #f7f8fb; }
.use-card::after {
  background: var(--line-soft);
  border-radius: 999px;
  bottom: 15px;
  content: '';
  height: 3px;
  left: 17px;
  position: absolute;
  right: 17px;
  transition: background-color .2s ease;
}
.use-card::before {
  background: var(--teal);
  border-radius: 999px;
  bottom: 15px;
  content: '';
  height: 3px;
  left: 17px;
  position: absolute;
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .38s var(--ease-mechanical);
  width: calc(100% - 34px);
  z-index: 1;
}
.use-card:hover {
  border-color: #719e9a;
  box-shadow: 3px 4px 0 rgba(15, 26, 29, .78), 0 15px 28px rgba(25, 72, 72, .12);
  transform: translateY(-3px);
}
.use-card:hover::before { transform: scaleX(1); }
.use-icon {
  align-items: center;
  background: var(--ink);
  border: 1px solid #05090a;
  border-radius: 10px;
  box-shadow: 2px 3px 0 rgba(114, 216, 207, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  height: 38px;
  justify-content: center;
  transition: box-shadow .22s ease, transform .22s var(--ease-out);
  width: 38px;
}
.use-card:hover .use-icon { box-shadow: 3px 4px 0 var(--aqua); transform: translateY(-1px); }
.use-icon svg { fill: none; height: 18px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 18px; }
.use-card > strong { align-self: center; font-size: 18px; letter-spacing: -.025em; line-height: 1.08; }
.use-card p { color: var(--muted); font-size: 12.8px; grid-column: 1 / -1; line-height: 1.48; margin: 2px 0 22px; }

/* Steps */
.steps {
  background: var(--ink);
  border: 1px solid #05090a;
  border-radius: 18px;
  box-shadow: 5px 6px 0 var(--aqua), var(--shadow-soft);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 8px;
}
.step {
  background: #fff;
  border: 1px solid #33484c;
  border-radius: 12px;
  min-height: 204px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transition: background-color .2s ease, transform .2s var(--ease-out);
}
.step::after {
  background: #e3eeec;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: inset 0 1px 2px rgba(15, 26, 29, .12);
  content: '';
  height: 5px;
  left: 18px;
  position: absolute;
  right: 18px;
}
.step::before {
  background: var(--teal);
  border-radius: 999px;
  bottom: 18px;
  content: '';
  height: 5px;
  left: 18px;
  position: absolute;
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .42s var(--ease-mechanical);
  width: calc(100% - 36px);
  z-index: 1;
}
.step:hover { background: var(--aqua-soft); transform: translateY(-2px); }
.step:hover::before { transform: scaleX(1); }
.step-num {
  align-items: center;
  background: var(--ink);
  border: 1px solid #05090a;
  border-radius: 9px;
  box-shadow: 2px 3px 0 var(--aqua);
  color: #fff;
  display: flex;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 9px;
  height: 34px;
  justify-content: center;
  transition: box-shadow .2s ease, transform .2s ease;
  width: 34px;
}
.step:hover .step-num { box-shadow: 3px 4px 0 var(--coral); transform: translateY(-1px); }
.step strong { display: block; font-size: 22px; letter-spacing: -.035em; line-height: 1.05; margin: 27px 0 9px; }
.step p { color: var(--muted); font-size: 12.8px; line-height: 1.5; margin: 0 0 20px; }

.trial-note-wrap { margin-top: 18px; }
.trial-note {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 3px 4px 0 rgba(15, 26, 29, .12);
  color: var(--muted);
  display: flex;
  font-size: 13.5px;
  justify-content: center;
  line-height: 1.52;
  min-height: 66px;
  padding: 16px 20px;
  position: relative;
  text-align: center;
}
.trial-note::before { background: var(--coral); border-radius: 5px; content: ''; height: 8px; left: 16px; position: absolute; width: 8px; }
.trial-note strong { color: var(--teal-dark); font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: .92em; }

/* Plans */
.plans {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 9px 20px rgba(25, 72, 72, .08), inset 0 1px 0 #fff;
  display: flex;
  flex-direction: column;
  min-height: 276px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease-out);
}
.plan-card::after {
  background: var(--aqua);
  content: '';
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.plan-card:nth-child(1)::after { background: var(--coral); }
.plan-card:nth-child(2)::after { background: var(--aqua); }
.plan-card:nth-child(4)::after { background: var(--violet); }
.plan-card:nth-child(5)::after { background: var(--ink-3); }
.plan-card:hover { border-color: #729c98; box-shadow: 3px 4px 0 rgba(15, 26, 29, .76), 0 15px 28px rgba(25, 72, 72, .12); transform: translateY(-3px); }
.plan-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 5px 6px 0 var(--aqua), 0 18px 34px rgba(15, 26, 29, .19);
  color: #fff;
}
.plan-card.featured::after { background: var(--aqua); }
.plan-card.featured::before {
  background: var(--aqua);
  border: 1px solid #4da69f;
  border-radius: 999px;
  color: var(--ink);
  content: 'Most flexible';
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--aqua);
  border-radius: 0;
  color: var(--aqua);
  font-size: 9px;
  font-weight: 740;
  padding: 0 0 3px;
  position: absolute;
  right: 12px;
  top: 15px;
}
.plan-card.featured:hover { box-shadow: 6px 7px 0 var(--aqua), 0 21px 38px rgba(15, 26, 29, .23); }
.plan-card > strong { font-size: 18px; letter-spacing: -.025em; line-height: 1.08; margin: 22px 0 14px; }
.price { color: inherit; font-size: 38px; font-weight: 780; letter-spacing: -.055em; line-height: 1; }
.price small { font-size: 11px; font-weight: 520; letter-spacing: 0; }
.price-yr {
  align-self: flex-start;
  background: transparent;
  border: 0;
  border-left: 2px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  margin: 8px 0 18px;
  padding: 2px 0 2px 7px;
}
.plan-card.featured .price-yr { background: transparent; border-color: #5b777b; color: #c0d4d2; }
.plan-card p { color: var(--muted); font-size: 12.2px; line-height: 1.48; }
.plan-card .plan-desc { margin: 0 0 12px; }
.plan-card .plan-limits {
  border-top: 1px solid var(--line-soft);
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 650;
  line-height: 1.55;
  margin: auto 0 0;
  padding-top: 11px;
}
.plan-card.featured p { color: #c4d5d3; }
.plan-card.featured .plan-limits { border-color: #496569; }

.plans-cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}
.plans-cta .button { font-size: 15px; padding-inline: 28px; }
.plan-checkout-tip { color: var(--muted); font-size: 10px; font-weight: 650; }

.compare-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 4px 5px 0 rgba(15, 26, 29, .16), 0 16px 30px rgba(25, 72, 72, .08);
  margin-top: 38px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.compare-wrap:focus-visible { outline-offset: 4px; }
.compare-table { border-collapse: separate; border-spacing: 0; min-width: 850px; width: 100%; }
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 11.5px;
  padding: 12px 11px;
  text-align: center;
}
.compare-table th:first-child,
.compare-table td:first-child { font-weight: 720; left: 0; min-width: 148px; position: sticky; text-align: left; z-index: 2; }
.compare-table thead th {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  position: sticky;
  top: 0;
  z-index: 3;
}
.compare-table thead th:first-child { background: var(--ink); z-index: 4; }
.compare-table thead th small { color: #b8cfcd; display: block; font-size: 7.5px; margin-top: 3px; }
.compare-table tbody td:first-child { background: #fff; }
.compare-table tbody tr:hover td { background: #f2f8f7; }
.compare-table tbody tr:hover td:first-child { background: #f2f8f7; }
.compare-table .featured-col { background: var(--aqua-soft); }
.compare-table thead .featured-col { background: var(--teal-dark); color: #fff; }
.compare-table tbody tr:hover .featured-col { background: #d3efeb; }
.compare-table .check { color: var(--teal-dark); font-weight: 900; }
.compare-table .dash { color: #93a9a7; }
.compare-table tr:last-child td { border-bottom: 0; }

.note { color: var(--muted); font-size: 10.5px; line-height: 1.55; margin: 23px auto 0; max-width: 830px; text-align: center; }
.note a { color: var(--teal-dark); font-weight: 750; }

/* FAQ */
.faq-list { display: grid; gap: 12px; margin-inline: auto; max-width: 1020px; }
.faq-item {
  background: transparent;
  border: 0;
  overflow: visible;
}
.faq-question {
  align-items: center;
  background: #e4f3f1;
  border: 1px solid #79aaa5;
  border-radius: 16px 16px 5px 16px;
  box-shadow: 3px 4px 0 rgba(15, 26, 29, .72);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 15.5px;
  font-weight: 730;
  gap: 16px;
  justify-content: space-between;
  margin-left: auto;
  max-width: 82%;
  min-width: 27%;
  min-height: 56px;
  padding: 14px 16px 14px 18px;
  text-align: left;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s var(--ease-out);
  width: fit-content;
}
.faq-question > span:first-child { min-width: 0; }
.faq-question:hover { background: #d5eeeb; box-shadow: 4px 5px 0 var(--ink); transform: translateY(-1px); }
.faq-item.replying .faq-question,
.faq-item.open .faq-question { background: #c9e9e5; }
.faq-control { align-items: center; display: inline-flex; flex: 0 0 auto; }
.faq-chevron { color: var(--teal-dark); height: 18px; transition: transform .26s var(--ease-mechanical); width: 18px; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  position: relative;
  transition: grid-template-rows .68s var(--ease-mechanical);
}
.faq-reply-status {
  background: var(--ink);
  border: 1px solid #05090a;
  border-radius: 5px 14px 14px 14px;
  box-shadow: 2px 3px 0 rgba(114, 216, 207, .65);
  color: #bde9e5;
  display: block;
  font-size: 9.5px;
  font-weight: 720;
  height: 34px;
  left: 0;
  letter-spacing: .01em;
  line-height: 32px;
  opacity: 0;
  padding-left: 11px;
  position: absolute;
  top: 10px;
  transform: translateY(6px) scale(.96);
  width: 68px;
  z-index: 3;
}
.faq-answer-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px 16px 16px 16px;
  box-shadow: 3px 4px 0 var(--ink), 0 12px 24px rgba(25, 72, 72, .10);
  clip-path: none;
  margin: 10px auto 5px 0;
  max-width: 84%;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transform-origin: top left;
  width: fit-content;
}
.faq-answer-inner p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0; max-width: 760px; padding: 13px 18px 18px; }
.faq-item.replying .faq-answer { min-height: 52px; overflow: visible; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.replying .faq-reply-status { animation: reply-status .5s var(--ease-mechanical) both; }
.faq-item.open .faq-answer-inner { animation: chat-reply .58s var(--ease-mechanical) both; }
.faq-item.open .faq-answer-inner p { animation: chat-copy .28s .18s ease-out both; }
.faq-item.replying .faq-chevron,
.faq-item.open .faq-chevron { transform: rotate(180deg); }
@keyframes reply-status {
  0% { opacity: 0; transform: translateY(6px) scale(.96); }
  24%, 70% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-2px) scale(.98); }
}
@keyframes chat-reply {
  0% { opacity: 0; transform: translateY(12px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chat-copy { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* Final CTA */
.final-cta {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(114, 216, 207, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 216, 207, .045) 1px, transparent 1px);
  background-size: 22px 22px;
  border-bottom: 1px solid #263d41;
  border-top: 1px solid #05090a;
  color: #fff;
  padding: clamp(58px, 6vw, 76px) 0;
}
.final-grid { align-items: center; display: grid; gap: 42px; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); }
.final-cta .eyebrow { color: #fff; margin-bottom: 12px; }
.final-cta .eyebrow::before { background: linear-gradient(90deg, var(--aqua) 0 68%, var(--coral) 68%); }
.final-cta h2 {
  color: #fff;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(42px, 4.6vw, 58px);
  font-weight: 760;
  letter-spacing: -.035em;
  line-height: .96;
  margin: 0 0 12px;
}
.final-cta p { color: #b9cdcb; font-size: 14px; line-height: 1.55; margin: 0; max-width: 520px; }
.final-cta .actions { justify-content: flex-start; }
.final-cta .button.secondary { background: #182a2e; border-color: #3d585d; box-shadow: none; color: #fff; }
.final-cta .button.secondary:hover { background: #21373b; border-color: #6e9290; }
.final-cta .button.tertiary { background: var(--aqua-soft); border-color: var(--aqua); color: var(--ink); }

/* Footer */
footer { background: #091113; color: #fff; padding: 46px 0 25px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr)); }
.brand-plate-footer { background: #fff; border-color: #263a3e; box-shadow: 3px 4px 0 var(--teal); }
.brand-plate-footer strong { color: var(--ink); }
.footer-brand p { color: #97afad; font-size: 12.5px; line-height: 1.5; margin: 14px 0 0; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 11.5px; font-weight: 760; margin: 0 0 13px; }
.footer-col a { color: #d4dfde; display: block; font-size: 12.5px; margin: 9px 0; text-decoration: none; transition: color .18s ease, transform .18s ease; }
.footer-col a:hover { color: var(--aqua); transform: translateX(2px); }
.contact-label { color: #9eb7b4; display: block; font-size: 9.5px; font-weight: 700; margin-top: 14px; }
.footer-contact .contact-label:first-of-type { margin-top: 0; }
.footer-bottom {
  align-items: center;
  border-top: 1px solid #26383b;
  color: #6f8785;
  display: flex;
  font-size: 9.5px;
  gap: 16px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 17px;
}



/* V4 tactile refinements */
.button { overflow: hidden; position: relative; }
.button > span:last-child { transition: transform .22s var(--ease-mechanical); }
.button:hover > span:last-child { transform: translate(2px, -2px); }

.band-item { overflow: hidden; position: relative; }
.band-item::after {
  background: linear-gradient(90deg, transparent, rgba(114, 216, 207, .42), transparent);
  bottom: 0;
  content: '';
  height: 1px;
  left: -55%;
  position: absolute;
  transition: left .5s var(--ease-mechanical);
  width: 52%;
}
.band-item:hover::after { left: 104%; }

.use-card { transform-origin: 50% 90%; }
.use-card:hover .use-icon { transform: translateY(-2px) rotate(-2deg); }
.step { transform-origin: 50% 100%; }
.step:hover .step-num { transform: translateY(-2px) rotate(-3deg); }
.plan-card .price-yr { transition: transform .22s var(--ease-mechanical), background-color .22s ease; }
.plan-card:hover .price-yr { transform: translateX(3px); }
.compare-table tbody tr { transform: none; }

.faq-answer-inner { position: relative; }
.faq-answer-inner::before {
  color: var(--teal-dark);
  content: 'TextAgent';
  display: block;
  font-size: 10px;
  font-weight: 760;
  padding: 13px 16px 0;
}
.faq-answer-inner::after {
  background: linear-gradient(90deg, var(--aqua), transparent 72%);
  content: '';
  height: 3px;
  left: 16px;
  position: absolute;
  right: 16px;
  top: 27px;
  transform: scaleX(0);
  transform-origin: left;
}
.faq-answer-inner p { padding-top: 13px; }
.faq-item.open .faq-answer-inner::after { animation: faq-signal-line .5s .05s var(--ease-mechanical) both; }
@keyframes faq-signal-line { to { transform: scaleX(1); } }

/* One-time section choreography. The page remains visible until JS successfully enables it. */
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(14px);
}
.reveal {
  transition: opacity .48s ease var(--reveal-delay, 0ms), transform .52s var(--ease-mechanical) var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.no-js .reveal { opacity: 1; transform: none; }

.motion-ready [data-motion-group]:not(.is-in-view) > .band-item,
.motion-ready [data-motion-group]:not(.is-in-view) > .use-card,
.motion-ready [data-motion-group]:not(.is-in-view) > .step,
.motion-ready [data-motion-group]:not(.is-in-view) > .plan-card,
.motion-ready .final-grid:not(.is-in-view) > * {
  opacity: 0;
  transform: translateY(16px) scale(.985);
}
.band-grid.is-in-view > .band-item,
.use-grid.is-in-view > .use-card,
.steps.is-in-view > .step,
.plans.is-in-view > .plan-card,
.final-grid.is-in-view > * {
  animation: surface-arrive .6s calc(var(--motion-index, 0) * 68ms) var(--ease-mechanical) both;
}
.band-grid.is-in-view .band-icon { animation: icon-stamp .48s calc(120ms + var(--motion-index, 0) * 68ms) var(--ease-mechanical) both; }
.motion-ready .steps:not(.is-in-view) .step::before { transform: scaleX(0); }
.steps.is-in-view .step::before { animation: step-track .72s calc(240ms + var(--motion-index, 0) * 120ms) var(--ease-mechanical) both; }
.plan-card::after { transform-origin: left; }
.motion-ready .plans:not(.is-in-view) .plan-card::after { transform: scaleX(0); }
.plans.is-in-view .plan-card::after { animation: accent-swipe .62s calc(180ms + var(--motion-index, 0) * 80ms) var(--ease-mechanical) both; }
.compare-wrap.is-in-view { animation: table-settle .66s var(--ease-mechanical) both; }
.use-grid.is-in-view > .use-card { animation: card-feed .88s calc(var(--motion-index, 0) * 74ms) var(--ease-mechanical) both; }
.steps.is-in-view .step-num { animation: step-index-in .68s calc(180ms + var(--motion-index, 0) * 150ms) var(--ease-mechanical) both; }
.plans.is-in-view .price { animation: price-reveal .72s calc(240ms + var(--motion-index, 0) * 90ms) var(--ease-mechanical) both; }

@keyframes surface-arrive {
  0% { opacity: 0; transform: translateY(18px) scale(.98); }
  74% { opacity: 1; transform: translateY(-2px) scale(1.004); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes icon-stamp {
  0% { opacity: .45; transform: translateY(6px) rotate(-6deg) scale(.84); }
  70% { opacity: 1; transform: translateY(-1px) rotate(2deg) scale(1.06); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@keyframes step-track { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes accent-swipe { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes table-settle {
  0% { opacity: .3; transform: translateY(12px); box-shadow: 1px 2px 0 rgba(15, 26, 29, .08); }
  72% { opacity: 1; transform: translateY(-1px); box-shadow: 5px 6px 0 rgba(15, 26, 29, .18), 0 18px 32px rgba(25, 72, 72, .09); }
  100% { opacity: 1; transform: translateY(0); box-shadow: 4px 5px 0 rgba(15, 26, 29, .16), 0 16px 30px rgba(25, 72, 72, .08); }
}
@keyframes card-feed {
  0% { clip-path: inset(0 0 94% 0 round 14px); opacity: .12; transform: translateY(-22px); }
  100% { clip-path: inset(0 0 0 0 round 14px); opacity: 1; transform: translateY(0); }
}
@keyframes step-index-in {
  0% { opacity: 0; transform: translateY(-18px) scale(.82); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes price-reveal {
  0% { clip-path: inset(0 0 100% 0); opacity: .12; transform: translateY(-16px); }
  100% { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0); }
}


/* Responsive */
@media (max-width: 1120px) {
  .topbar nav { gap: 14px; }
  .topbar nav a { font-size: 12.5px; }
  .hero-headline { font-size: clamp(46px, 6vw, 72px); }
  .use-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 82px; }
  .topbar-inner { min-height: 74px; }
  .nav-menu { align-items: center; display: inline-flex; justify-content: center; }
  .topbar nav {
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-crisp), var(--shadow-soft);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 9px;
    position: absolute;
    right: 18px;
    top: 67px;
    width: 232px;
  }
  .topbar nav.is-open { display: flex; }
  .topbar nav a { display: block; font-size: 13px; padding: 11px 12px; width: 100%; }
  .topbar nav .nav-signin, .topbar nav .nav-cta { margin-top: 4px; text-align: center; }

  .hero-masthead { padding-block: 44px 48px; }
  .band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .band-item:nth-child(3) { border-left: 0; border-top: 1px solid #375055; }
  .band-item:nth-child(4) { border-top: 1px solid #375055; }
  .section-head { grid-template-columns: 1fr; }
  .section-head .eyebrow, .section-head h2, .section-head p { grid-column: 1; grid-row: auto; }
  .section-head .eyebrow { margin-bottom: 6px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 176px; }
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .shell { padding-inline: 16px; }
  .topbar-inner { min-height: 70px; }
  .brand-plate { min-height: 40px; padding: 6px 9px; }
  .brand-icon { height: 27px; width: 27px; }
  .brand-plate strong { font-size: 17.5px; }
  .nav-menu { min-height: 40px; }

  .hero-masthead { padding-block: 36px 42px; }
  .hero-headline { font-size: clamp(40px, 12.5vw, 54px); letter-spacing: -.035em; line-height: .93; margin-bottom: 16px; }
  .hero-lead { font-size: 17.5px; margin-bottom: 12px; }
  .hero-sublead { font-size: 14px; margin-bottom: 24px; }
  .hero-line-anchor { margin: 6px 0 24px; min-height: 64px; }
  .carrier-line { --carrier-travel: 480%; }
  .hero-phone-number { font-size: clamp(36px, 10.2vw, 54px); box-shadow: 0 0 0 6px #f8fbfa; padding-right: 12px; }
  .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 10px; margin-bottom: 20px; }
  .hero-actions .button { min-width: 0; padding-inline: 11px; width: 100%; }
  .hero-actions .button--call { grid-column: 1 / -1; }
  .hero-actions .hero-signin-link { grid-column: 1 / -1; justify-content: center; min-height: 38px; }
  .hero-access-note { font-size: 12.5px; padding-top: 13px; }

  .band-grid, .use-grid, .plans, .footer-grid { grid-template-columns: 1fr; }
  .band-item + .band-item { border-left: 0; border-top: 1px solid #375055; }
  .content { padding-block: 60px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(40px, 12vw, 50px); }
  .use-card { min-height: 154px; }
  .steps { box-shadow: 4px 5px 0 var(--aqua), var(--shadow-soft); }
  .step { min-height: 170px; }
  .trial-note { padding-left: 34px; text-align: left; }
  .plan-card { min-height: 244px; }
  .compare-wrap { margin-top: 32px; }
  .faq-question { font-size: 14.5px; max-width: 88%; min-width: 0; padding-inline: 14px; }
  .faq-answer-inner { max-width: 92%; }
  .faq-answer-inner::before { padding-inline: 14px; }
  .faq-answer-inner::after { left: 14px; right: 14px; }
  .faq-answer-inner p { padding-inline: 14px 40px; }
  .final-cta .actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .final-cta .actions .button { width: 100%; }
  .final-cta .actions .button.primary, .final-cta .actions .button.tertiary { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 390px) {
  .hero-headline { font-size: 38px; }
  .hero-phone-number { font-size: 34px; }
  .hero-actions { gap: 8px; }
  .button { font-size: 12.5px; }
}

@media (max-width: 340px) {
  .hero-headline { font-size: 34px; }
  .hero-phone-number { font-size: 30px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { grid-column: 1 / -1; }
}

/* No-JS navigation and content remain usable. */
.no-js .nav-menu { display: none; }
.no-js .faq-answer { grid-template-rows: 1fr; }
.no-js .faq-answer-inner { border-top: 1px solid var(--line-soft); }
.no-js .faq-control { display: none; }
.no-js .faq-question { cursor: default; }
@media (max-width: 900px) {
  .no-js .topbar-inner { flex-wrap: wrap; padding-block: 10px; }
  .no-js .topbar nav {
    box-shadow: none;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 7px 0;
    position: static;
    width: 100%;
  }
  .no-js .topbar nav a { flex: 0 0 auto; width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  [data-motion-group] > *, .final-grid > * { opacity: 1 !important; transform: none !important; }
  .carrier-signal { animation: none !important; display: none !important; }
  .hero-phone-number { transform: none !important; }
}
