:root {
  color-scheme: light;
  --ink: #263d5c;
  --muted: #485c78;
  --soft: #f7fdff;
  --line: #b8e1ee;
  --cyan: #09a9cf;
  --cyan-dark: #008ec3;
  --hero-bg: #e8f8fc;
  --green: #36b978;
  --amber: #f3a53a;
  --rose: #e8647c;
  --shadow: 0 26px 70px rgba(0, 142, 195, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hero-bg);
  color: var(--ink);
  font-family:
    Inter, "Aptos", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(0, 142, 195, 0.12);
  background: rgba(232, 248, 252, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #0f172a;
}

.brand img {
  width: auto;
  height: 34px;
  border-radius: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

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

.site-nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(9, 169, 207, 0.09);
  color: var(--cyan-dark);
}

.site-nav a[aria-current="page"] {
  color: var(--cyan-dark);
  background: rgba(9, 169, 207, 0.1);
}

.menu {
  position: relative;
}

.menu summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(113, 128, 147, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  list-style: none;
}

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

.menu summary span {
  display: block;
  width: 15px;
  height: 2px;
  flex: 0 0 2px;
  margin: 0;
  border-radius: 99px;
  background: #718093;
}

.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  min-width: 180px;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(0, 142, 195, 0.14);
  padding: 8px;
}

.menu-panel a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  padding: 10px 12px;
}

.menu-panel a:hover {
  background: var(--soft);
  color: var(--cyan-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  padding: 0 18px;
  background: var(--cyan);
  color: white;
  font-size: 14px;
  box-shadow: 0 16px 34px rgba(0, 142, 195, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 56px 102px;
  background: var(--hero-bg);
  text-align: left;
}

main {
  background: var(--hero-bg);
}

.hero-copy {
  max-width: 680px;
  margin: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  justify-self: end;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 22px;
  border: 1px solid rgba(0, 142, 195, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1180px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--cyan-dark);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--cyan-dark);
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
}

.hero-sub,
.section-lead p,
.apply-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.hero-sub {
  margin-right: 0;
  margin-left: 0;
}

.capacity-note {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-weight: 800;
}

.hero-risk {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-stats article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  padding: 20px 16px 18px;
  border: 1px solid rgba(84, 161, 224, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.9));
  text-align: center;
  box-shadow:
    0 16px 36px rgba(37, 99, 156, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.stat-orb,
.fact-orb {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-orb {
  width: 112px;
  height: 112px;
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55), transparent 36%),
    radial-gradient(circle at 50% 58%, #2f8bff 0%, #1463dc 58%, #0b4db8 100%);
  box-shadow:
    0 0 0 7px #fff,
    0 0 0 9px rgba(20, 99, 220, 0.28),
    0 18px 32px rgba(12, 74, 168, 0.3);
}

.stat-orb-teal {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.55), transparent 36%),
    radial-gradient(circle at 50% 58%, #2ad4c8 0%, #0aa99f 58%, #07857c 100%);
  box-shadow:
    0 0 0 7px #fff,
    0 0 0 9px rgba(10, 169, 159, 0.3),
    0 18px 32px rgba(7, 133, 124, 0.28);
}

.stat-orb strong {
  display: block;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 2px 0 rgba(4, 40, 110, 0.18);
}

.stat-orb span {
  font-size: 0.58em;
  font-weight: 850;
}

.hero-stats h3 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.hero-stats p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-stats-source {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-stats-source a {
  color: var(--cyan-dark);
  font-weight: 700;
}

.hero-actions {
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  padding: 0 20px;
}

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

.button.primary {
  min-height: 58px;
  min-width: 230px;
  background: var(--cyan);
  color: white;
  box-shadow: 0 18px 42px rgba(0, 142, 195, 0.24);
}

.button.primary:hover,
.nav-cta:hover {
  background: #079ac0;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.section,
.proof-section,
.apply-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 76px 28px;
}

.section-lead {
  max-width: 820px;
}

.problem-lead {
  max-width: min(560px, 50%);
  text-align: left;
}

.problem-lead p {
  max-width: 100%;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.channel-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

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

.packages-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 248, 252, 0.48)),
    rgba(255, 255, 255, 0.4);
}

.packages-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  z-index: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 185, 120, 0.18), transparent 68%);
  pointer-events: none;
}

.packages-section > * {
  position: relative;
  z-index: 1;
}

.packages-section .eyebrow,
.process-section-clean .eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 14px;
}

.packages-section .section-lead,
.process-section-clean .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.package-rows {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.package-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(9, 169, 207, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 22px 24px;
}

.package-row h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.package-who {
  margin: 0 0 6px;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.package-row .package-who {
  margin-bottom: 6px;
  color: var(--cyan-dark);
  font-size: 11px;
}

.package-row-featured {
  border-color: rgba(54, 185, 120, 0.4);
  background: rgba(243, 252, 247, 0.95);
}

.package-payoff {
  display: flex;
  align-items: center;
}

.package-payoff p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.channel-grid article,
.outbound-compare article {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  padding: 20px;
  box-shadow: 0 18px 42px rgba(0, 142, 195, 0.06);
}

.channel-grid strong {
  display: block;
  color: var(--cyan-dark);
  font-size: 14px;
}

.channel-grid p,
.faq-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.proof-section {
  max-width: none;
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
}

.proof-section > * {
  max-width: 1184px;
  margin-right: auto;
  margin-left: auto;
}

.inverted .eyebrow,
.proof-section .eyebrow {
  color: var(--cyan-dark);
}

.inverted p,
.proof-section .section-lead p {
  color: var(--muted);
}

.outbound-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.outbound-compare article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.outbound-compare h3 {
  margin: 0 0 16px;
  color: var(--cyan-dark);
  font-size: 18px;
}

.outbound-compare article:last-child h3 {
  color: #738ba1;
}

.outbound-compare ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outbound-compare li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.outbound-compare li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.outbound-compare article:last-child li::before {
  background: #91b2c4;
}

.proof-bridge {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.market-proof-live {
  position: relative;
  isolation: isolate;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 18px 70px;
  overflow: hidden;
}

.market-proof-live::before {
  content: "";
  position: absolute;
  inset: 40px 1% 48px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 42%, rgba(39, 102, 220, 0.12), transparent 32%),
    radial-gradient(circle at 80% 46%, rgba(19, 176, 166, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 253, 255, 0.36));
  filter: blur(10px);
}

.signal-pill {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 9px 28px;
  border: 1px solid rgba(63, 142, 232, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 26px rgba(33, 112, 203, 0.09);
  color: #155bd1;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: uppercase;
}

.market-proof-live h2 {
  max-width: 920px;
  margin: 0 auto 32px;
  color: #06163a;
  font-size: clamp(44px, 5.6vw, 70px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  text-align: center;
  text-wrap: balance;
}

.market-proof-live h2 span {
  color: #0d9be7;
  background: linear-gradient(90deg, #215fdb, #08b8e7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.signal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.signal-facts article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 14px 18px;
  border: 1px solid rgba(84, 161, 224, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.9));
  text-align: center;
  box-shadow:
    0 16px 40px rgba(37, 99, 156, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.fact-orb {
  width: 96px;
  height: 96px;
  margin-bottom: 12px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.52), transparent 36%),
    radial-gradient(circle at 50% 58%, #2f8bff 0%, #1463dc 58%, #0b4db8 100%);
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 8px rgba(20, 99, 220, 0.26),
    0 16px 28px rgba(12, 74, 168, 0.26);
  color: #fff;
  font-size: 34px;
  text-shadow: 0 2px 0 rgba(4, 40, 110, 0.18);
}

.fact-orb-teal {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.52), transparent 36%),
    radial-gradient(circle at 50% 58%, #2ad4c8 0%, #0aa99f 58%, #07857c 100%);
  box-shadow:
    0 0 0 6px #fff,
    0 0 0 8px rgba(10, 169, 159, 0.28),
    0 16px 28px rgba(7, 133, 124, 0.24);
}

.fact-orb-cost {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.52), transparent 36%),
    radial-gradient(circle at 50% 58%, #5aa4ff 0%, #1d74e6 58%, #0e57c4 100%);
  font-size: 22px;
  letter-spacing: -0.05em;
}

.signal-facts p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.signal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(84, 161, 224, 0.35);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.88)),
    white;
  box-shadow:
    0 28px 76px rgba(37, 99, 156, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: -48% -24% auto;
  height: 230px;
  background: radial-gradient(circle, rgba(42, 124, 219, 0.14), transparent 66%);
  opacity: 0.82;
  pointer-events: none;
}

.signal-card-teal {
  border-color: rgba(18, 176, 171, 0.36);
}

.signal-card-teal::before {
  background: radial-gradient(circle, rgba(17, 184, 168, 0.15), transparent 66%);
}

.signal-card:hover {
  border-color: rgba(9, 169, 207, 0.48);
  box-shadow:
    0 34px 94px rgba(3, 83, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-4px);
}

.signal-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  align-items: center;
  flex: 1;
  gap: 30px;
  min-height: 246px;
  padding: 34px 38px 38px;
}

.signal-card-blue .signal-card-body {
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 30px;
  padding: 38px 42px 38px;
}

.signal-icon {
  position: relative;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(119, 173, 239, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.94), rgba(232, 244, 255, 0.78));
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.58),
    0 16px 36px rgba(42, 107, 199, 0.12);
}

.signal-icon-growth span {
  position: absolute;
  bottom: 34px;
  width: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #8fc2ff, #0f62db);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform-origin: bottom;
}

.js-ready .signal-icon-growth span {
  opacity: 0;
  transform: scaleY(0);
}

.js-ready .market-proof-live.signal-bars-ready .signal-icon-growth span,
.js-ready .signal-card-blue.signal-bars-ready .signal-icon-growth span {
  opacity: 1;
  transform: scaleY(1);
  transition:
    transform 560ms cubic-bezier(0.18, 0.86, 0.22, 1),
    opacity 180ms ease;
}

.signal-icon-growth span:nth-child(1) {
  left: 36px;
  height: 42px;
  opacity: 0.7;
}

.js-ready .market-proof-live.signal-bars-ready .signal-icon-growth span:nth-child(1),
.js-ready .signal-card-blue.signal-bars-ready .signal-icon-growth span:nth-child(1) {
  opacity: 0.7;
  transition-delay: 180ms;
}

.signal-icon-growth span:nth-child(2) {
  left: 66px;
  height: 66px;
}

.js-ready .market-proof-live.signal-bars-ready .signal-icon-growth span:nth-child(2),
.js-ready .signal-card-blue.signal-bars-ready .signal-icon-growth span:nth-child(2) {
  transition-duration: 640ms, 180ms;
  transition-delay: 300ms;
}

.signal-icon-growth span:nth-child(3) {
  left: 96px;
  height: 98px;
}

.js-ready .market-proof-live.signal-bars-ready .signal-icon-growth span:nth-child(3),
.js-ready .signal-card-blue.signal-bars-ready .signal-icon-growth span:nth-child(3) {
  transition-duration: 700ms, 180ms;
  transition-delay: 420ms;
}

.signal-icon-growth i {
  display: none;
}

.signal-icon-growth i::before {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -17px;
  width: 24px;
  height: 24px;
  border-right: 9px solid #16c3cf;
  border-top: 9px solid #16c3cf;
  transform: rotate(38deg);
}

.signal-icon-target {
  border-color: rgba(26, 183, 178, 0.5);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.92), rgba(226, 249, 247, 0.82));
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.56),
    0 16px 36px rgba(0, 145, 140, 0.13);
}

.signal-icon-target::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 5px solid #0c9895;
  border-radius: 50%;
}

.signal-icon-target::after {
  content: "";
  position: absolute;
  inset: 4px;
  background:
    linear-gradient(#0c9895, #0c9895) center 0 / 5px 28px no-repeat,
    linear-gradient(#0c9895, #0c9895) center 100% / 5px 28px no-repeat,
    linear-gradient(90deg, #0c9895, #0c9895) 0 center / 28px 5px no-repeat,
    linear-gradient(90deg, #0c9895, #0c9895) 100% center / 28px 5px no-repeat;
}

.signal-icon-target span {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 76px;
}

.signal-icon-target span::before,
.signal-icon-target span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: linear-gradient(180deg, #18cfd0, #08a99f);
  transform: translateX(-50%);
}

.signal-icon-target span::before {
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.signal-icon-target span::after {
  bottom: 0;
  width: 60px;
  height: 32px;
  border-radius: 24px 24px 10px 10px;
}

.signal-card-copy {
  color: #071635;
  padding-bottom: 8px;
}

.signal-card-blue .signal-card-copy,
.signal-card-teal .signal-card-copy {
  padding-top: 8px;
  padding-bottom: 12px;
}

.signal-stat {
  margin: 0;
  color: #145edc;
  font-size: clamp(74px, 7.2vw, 112px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.82;
  text-shadow: 0 4px 0 rgba(3, 53, 130, 0.08);
}

.signal-card-teal .signal-stat {
  color: #0aa99f;
}

.signal-stat span {
  font-size: 0.58em;
  letter-spacing: -0.02em;
}

.js-ready .signal-count {
  visibility: hidden;
}

.js-ready .market-proof-live.signal-bars-ready .signal-count,
.js-ready .signal-card-count-ready .signal-count {
  visibility: visible;
}

.signal-card-copy h3 {
  margin: 8px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(49, 126, 212, 0.24);
  color: #071635;
  font-size: clamp(27px, 2.8vw, 37px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.signal-card-teal .signal-card-copy h3 {
  border-bottom-color: rgba(18, 176, 171, 0.24);
}

.signal-card-copy p:not(.signal-stat) {
  margin: 0;
  padding-bottom: 8px;
  color: #15213a;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.44;
}

.signal-card-blue .signal-card-copy p:not(.signal-stat),
.signal-card-teal .signal-card-copy p:not(.signal-stat) {
  max-width: none;
  font-size: clamp(15px, 1.24vw, 18px);
  line-height: 1.34;
}

.signal-card-teal .signal-card-copy p:not(.signal-stat) {
  margin-top: 0;
  padding-right: 16px;
}

.signal-source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  margin: auto 0 0;
  padding: 22px 34px;
  border-top: 1px solid rgba(49, 126, 212, 0.22);
  background: linear-gradient(90deg, rgba(231, 244, 255, 0.92), rgba(246, 252, 255, 0.7));
  color: #15213a;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.35;
}

.signal-card-teal .signal-source {
  border-top-color: rgba(18, 176, 171, 0.25);
  background: linear-gradient(90deg, rgba(224, 249, 247, 0.92), rgba(246, 253, 253, 0.72));
}

.signal-source span {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 32px;
  border: 0;
  border-radius: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 88% 13%, 82% 62%, 65% 84%, 54% 92%, 46% 92%, 35% 84%, 18% 62%, 12% 13%);
  color: #155bd1;
}

.signal-source span::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: #eff8ff;
  clip-path: inherit;
}

.signal-source span::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 8px;
  height: 5px;
  border-left: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(-45deg);
}

.signal-card-teal .signal-source span::before {
  background: #e9fbfa;
}

.signal-card-teal .signal-source span,
.signal-card-teal .signal-source strong {
  color: #087f7a;
}

.signal-source strong {
  color: #155bd1;
  font-weight: 900;
}

.signal-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 0;
  color: #526d8d;
  font-size: clamp(15px, 1.6vw, 21px);
  line-height: 1.4;
  text-align: center;
}

.process-section .section-lead {
  max-width: 760px;
}

.process-section-clean {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 248, 252, 0.46)),
    rgba(255, 255, 255, 0.38);
}

.process-section-clean .section-lead {
  max-width: 860px;
}

.schedule-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.schedule-pane {
  min-height: 180px;
  border-top: 3px solid var(--cyan);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(0, 142, 195, 0.08);
  padding: 18px 16px 16px;
}

.schedule-when {
  margin: 0 0 10px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
}

.schedule-pane strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-dark);
  font-size: 18px;
  line-height: 1.2;
}

.schedule-pane p:not(.schedule-when) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.schedule-pane-after {
  border-top-color: var(--green);
  background: rgba(243, 252, 247, 0.96);
}

.schedule-pane-after .schedule-when,
.schedule-pane-after strong {
  color: #1f8f58;
}

.process-guarantee {
  max-width: 720px;
  margin: 44px auto 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.timeline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--cyan);
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 169, 214, 0.18);
}

.process-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.process-cta {
  display: flex;
  width: fit-content;
  min-width: 260px;
  min-height: 58px;
  margin-top: 0;
  padding: 0 22px;
  font-size: 16px;
  box-shadow: 0 18px 42px rgba(0, 142, 195, 0.24);
}

.about-section {
  background: rgba(255, 255, 255, 0.38);
}

.about-lead {
  margin-bottom: 42px;
}

.about-lead p {
  max-width: 780px;
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(0, 142, 195, 0.06);
}

.team-photo {
  display: grid;
  min-height: 420px;
  place-items: center;
  background: rgba(247, 250, 252, 0.82);
  padding: 22px 22px 12px;
}

.team-photo img {
  width: min(100%, 360px);
  height: 380px;
  object-fit: contain;
}

.team-info {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 4px;
  padding: 26px 24px 30px;
  text-align: center;
}

.team-info h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.team-info a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  background: #0a66c2;
  color: white;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.team-info p {
  grid-column: 1 / -1;
  margin: 0;
}

.team-role {
  color: var(--cyan-dark);
  font-size: 18px;
  font-weight: 750;
}

.team-info .team-bio {
  max-width: 460px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.narrow {
  max-width: 900px;
}

.faq-list {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 42px rgba(0, 142, 195, 0.06);
}

.faq-list details + details {
  border-top: 1px solid var(--line);
}

.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.apply-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.apply-copy {
  max-width: 760px;
}

.scheduler-panel {
  width: 100%;
  max-width: 480px;
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: 16px;
}

.scheduler-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.scheduler-head h3 {
  margin: 6px 0 0;
}

.calendar-frame {
  min-width: 0;
  height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.calendar-frame-pending {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(9, 169, 207, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.82);
}

.calendar-fallback {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

.calendar-fallback p {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
}

.calendar-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--cyan-dark);
  color: white;
  font-weight: 850;
  text-decoration: none;
}

.calendar-iframe,
.calendar-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 18px 28px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0 18px;
}

.footer-links a + a {
  border-left: 1px solid rgba(72, 92, 120, 0.45);
}

.footer-links a:hover {
  color: var(--cyan-dark);
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 12px;
}

.site-footer p a {
  color: inherit;
}

.page-intro {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 28px 0;
}

.page-intro h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.04;
}

.page-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.page-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.step-heading {
  margin-top: 30px;
  color: var(--cyan-dark);
  font-size: 20px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: var(--cyan-dark);
  font-size: 16px;
  font-weight: 850;
}

.section-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.section-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-link:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin: 26px 0 0;
  text-align: center;
}

.section-link-row .section-link {
  margin-top: 0;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 28px 84px;
}

.legal-page h1 {
  margin-top: 36px;
  font-size: clamp(42px, 7vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 28px;
  color: var(--ink);
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-back {
  color: var(--cyan-dark);
  font-weight: 850;
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.not-found {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 24px 108px;
  text-align: center;
}

.not-found h1 {
  margin: 12px 0 18px;
}

.not-found p {
  margin: 0 auto;
  max-width: 52ch;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 8px;
}

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

  .hero,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 52px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-sub {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-risk {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-stats,
  .hero-stats-source {
    margin-right: auto;
    margin-left: auto;
    max-width: 520px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 520px);
    justify-self: center;
  }

  .problem-lead {
    max-width: 100%;
  }

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

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

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

  .package-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .package-row h3 {
    grid-column: 1 / -1;
  }

  .scheduler-panel {
    max-width: 480px;
    justify-self: center;
  }

  .signal-card-grid {
    gap: 20px;
  }

  .signal-card-body {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    min-height: 0;
    padding: 34px 28px 30px;
    text-align: center;
  }

  .signal-icon {
    width: 150px;
    height: 150px;
  }

  .signal-icon-growth span:nth-child(1) {
    left: 40px;
    height: 38px;
  }

  .signal-icon-growth span:nth-child(2) {
    left: 70px;
    height: 62px;
  }

  .signal-icon-growth span:nth-child(3) {
    left: 100px;
    height: 92px;
  }

  .signal-source {
    align-items: flex-start;
    padding: 16px 22px;
  }

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

  .calendar-frame {
    height: 680px;
  }
}

@media (max-width: 1100px) {
  .site-nav a {
    padding: 8px 8px;
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 8px 14px 10px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 0;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 12px;
    padding: 8px 6px;
  }

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

@media (max-width: 640px) {
  .site-header {
    gap: 8px 12px;
    padding: 8px 12px 10px;
  }

  .brand img {
    height: 28px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .signal-facts {
    gap: 10px;
  }

  .fact-orb {
    width: 78px;
    height: 78px;
    font-size: 28px;
  }

  .fact-orb-cost {
    font-size: 16px;
  }

  .stat-orb {
    width: 86px;
    height: 86px;
  }

  .stat-orb strong {
    font-size: 26px;
  }

  .hero,
  .section,
  .proof-section,
  .market-proof-live,
  .apply-section {
    padding: 48px 16px;
  }

  .page-intro {
    padding: 44px 16px 0;
  }

  .hero {
    gap: 36px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-visual {
    width: min(94%, 420px);
  }

  .channel-grid,
  .outbound-compare,
  .signal-card-grid,
  .schedule-strip,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .market-proof-live h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .signal-pill {
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .signal-card-copy p:not(.signal-stat),
  .signal-source,
  .signal-note {
    font-size: 17px;
  }

  .signal-card-body,
  .signal-card-blue .signal-card-body {
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    padding: 34px 28px 30px;
    text-align: center;
  }

  .signal-icon-growth span:nth-child(1) {
    left: 34px;
  }

  .signal-icon-growth span:nth-child(2) {
    left: 64px;
  }

  .signal-icon-growth span:nth-child(3) {
    left: 94px;
  }

  .signal-card-blue .signal-card-copy,
  .signal-card-teal .signal-card-copy {
    transform: none;
  }

  .signal-card-teal .signal-card-copy p:not(.signal-stat) {
    padding-right: 0;
  }

  .calendar-frame {
    min-width: 0;
    height: 620px;
  }

  .team-photo {
    min-height: 320px;
  }

  .team-photo img {
    height: 300px;
  }

  .team-info h3 {
    font-size: 25px;
  }

  .footer-links a {
    padding: 0 10px;
  }
}

:root {
  --glass: rgba(255, 255, 255, 0.74);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --deep-shadow: 0 30px 90px rgba(3, 83, 120, 0.16);
  --cyan-glow: 0 0 0 1px rgba(9, 169, 207, 0.18), 0 20px 60px rgba(9, 169, 207, 0.24);
  --lift: translateY(-7px);
}

body {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 32%),
    linear-gradient(180deg, #e7f9fc 0%, #f7fdff 43%, #eaf8fb 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(0, 142, 195, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 142, 195, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

main {
  background: transparent;
}

.site-header {
  border-bottom-color: rgba(0, 142, 195, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(232, 248, 252, 0.86)),
    rgba(232, 248, 252, 0.88);
  box-shadow: 0 12px 36px rgba(0, 142, 195, 0.08);
}

.brand,
.brand img,
.site-nav a,
.menu summary,
.menu summary span,
.menu-panel,
.menu-panel a,
.nav-cta,
.button,
.timeline-cta,
.channel-grid article,
.outbound-compare article,
.package-row,
.schedule-pane,
.team-card,
.team-info a,
.faq-list details,
.scheduler-panel,
.signal-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    filter 180ms ease,
    opacity 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand:hover img {
  box-shadow: 0 0 0 6px rgba(9, 169, 207, 0.08);
}

.menu summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(0, 142, 195, 0.1);
}

.menu summary:hover,
.menu[open] summary {
  border-color: rgba(9, 169, 207, 0.48);
  box-shadow: var(--cyan-glow);
  transform: translateY(-1px);
}

.menu[open] summary span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.menu[open] summary span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.menu-panel {
  overflow: hidden;
  border-color: rgba(9, 169, 207, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 253, 255, 0.94)),
    white;
  box-shadow: 0 26px 70px rgba(3, 83, 120, 0.2);
  transform-origin: top right;
}

.menu[open] .menu-panel {
  animation: menuIn 180ms ease both;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: rgba(9, 169, 207, 0.09);
  transform: translateX(2px);
}

.hero,
.section,
.proof-section,
.market-proof-live,
.apply-section {
  position: relative;
}

.hero {
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 248, 252, 0.4) 45%, rgba(255, 255, 255, 0.56)),
    var(--hero-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px 28px;
  border: 1px solid rgba(9, 169, 207, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 10% 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 169, 207, 0.62), transparent);
  animation: heroLine 4.8s ease-in-out infinite;
}

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

.hero h1 {
  color: var(--cyan-dark);
  line-height: 1.04;
  padding-bottom: 0.06em;
  text-wrap: balance;
}

h2 {
  text-wrap: balance;
}

.eyebrow {
  box-shadow: 0 12px 28px rgba(0, 142, 195, 0.08);
}

.button.primary,
.nav-cta,
.timeline-cta {
  position: relative;
  overflow: hidden;
}

.button.primary::before,
.nav-cta::before,
.timeline-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 46%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.button.primary:hover,
.nav-cta:hover,
.timeline-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0, 142, 195, 0.28);
}

.button.primary:hover::before,
.nav-cta:hover::before,
.timeline-cta:hover::before {
  animation: buttonSheen 820ms ease;
}

.problem-lead h2,
.proof-section h2,
.process-section h2,
.packages-section h2,
.about-section h2,
.narrow h2,
.apply-copy h2 {
  position: relative;
}

.channel-grid {
  align-items: stretch;
  perspective: 1200px;
}

.channel-grid article {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    var(--glass);
  transform-style: preserve-3d;
}

.channel-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(9, 169, 207, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(54, 185, 120, 0.12), transparent 46%);
}

.channel-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.65) 42%, transparent 58%);
  transform: translateX(-120%);
}

.channel-grid article:focus-visible {
  z-index: 2;
  opacity: 1;
  border-color: rgba(9, 169, 207, 0.42);
  box-shadow: var(--deep-shadow);
  filter: none;
  transform: translateY(-10px) rotateX(2deg) scale(1.02);
}

.channel-grid article:focus-visible::before {
  opacity: 1;
}

.channel-grid article:focus-visible::after {
  animation: cardSheen 860ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .channel-grid article:hover {
    z-index: 2;
    opacity: 1;
    border-color: rgba(9, 169, 207, 0.42);
    box-shadow: var(--deep-shadow);
    filter: none;
    transform: translateY(-10px) rotateX(2deg) scale(1.02);
  }

  .channel-grid article:hover::before {
    opacity: 1;
  }

  .channel-grid article:hover::after {
    animation: cardSheen 860ms ease;
  }
}

.proof-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(238, 250, 253, 0.8)),
    rgba(255, 255, 255, 0.38);
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background:
    linear-gradient(90deg, transparent, rgba(9, 169, 207, 0.08), transparent),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(9, 169, 207, 0.035) 18px 19px);
}

.outbound-compare article {
  position: relative;
  overflow: hidden;
}

.outbound-compare article:first-child {
  border-color: rgba(54, 185, 120, 0.28);
}

.outbound-compare article:last-child {
  border-color: rgba(145, 178, 196, 0.34);
}

.outbound-compare article:hover {
  box-shadow: var(--deep-shadow);
  transform: translateY(-6px);
}

.proof-section .outbound-compare li {
  opacity: 0;
  transform: translateY(10px);
}

.proof-section.proof-bullets-ready .outbound-compare li {
  animation: listWake 560ms ease both;
}

.proof-section .outbound-compare article:first-child li:nth-child(1) { animation-delay: 120ms; }
.proof-section .outbound-compare article:first-child li:nth-child(2) { animation-delay: 210ms; }
.proof-section .outbound-compare article:first-child li:nth-child(3) { animation-delay: 300ms; }
.proof-section .outbound-compare article:first-child li:nth-child(4) { animation-delay: 390ms; }
.proof-section .outbound-compare article:first-child li:nth-child(5) { animation-delay: 480ms; }
.proof-section .outbound-compare article:first-child li:nth-child(6) { animation-delay: 570ms; }

.proof-section .outbound-compare article:last-child li:nth-child(1) { animation-delay: 760ms; }
.proof-section .outbound-compare article:last-child li:nth-child(2) { animation-delay: 850ms; }
.proof-section .outbound-compare article:last-child li:nth-child(3) { animation-delay: 940ms; }
.proof-section .outbound-compare article:last-child li:nth-child(4) { animation-delay: 1030ms; }
.proof-section .outbound-compare article:last-child li:nth-child(5) { animation-delay: 1120ms; }
.proof-section .outbound-compare article:last-child li:nth-child(6) { animation-delay: 1210ms; }

.process-section {
  isolation: isolate;
}

.process-section h2,
.packages-section h2 {
  overflow: hidden;
}

.process-section h2::after,
.packages-section h2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-120px) skewX(-18deg);
}

.process-section.is-visible h2::after,
.packages-section.is-visible h2::after {
  animation: textGlint 1.375s ease 380ms both;
}

.process-guarantee {
  backdrop-filter: blur(10px);
}

.schedule-pane,
.package-row {
  opacity: 0;
  transform: translateY(18px);
}

.process-section.is-visible .schedule-pane {
  animation: stepRise 520ms ease both;
}

.process-section.is-visible .schedule-pane:nth-child(1) { animation-delay: 80ms; }
.process-section.is-visible .schedule-pane:nth-child(2) { animation-delay: 160ms; }
.process-section.is-visible .schedule-pane:nth-child(3) { animation-delay: 240ms; }
.process-section.is-visible .schedule-pane:nth-child(4) { animation-delay: 320ms; }

.packages-section.is-visible .package-row {
  opacity: 1;
  transform: none;
  animation: stepRise 520ms ease;
}

.packages-section.is-visible .package-row:nth-child(1) { animation-delay: 80ms; }
.packages-section.is-visible .package-row:nth-child(2) { animation-delay: 160ms; }
.packages-section.is-visible .package-row:nth-child(3) { animation-delay: 240ms; }

.about-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 248, 252, 0.42)),
    rgba(255, 255, 255, 0.38);
}

.team-card {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(
    circle at 50% calc(100% - 72px),
    rgba(9, 169, 207, 0.2),
    rgba(54, 185, 120, 0.1) 34%,
    transparent 64%
  );
}

.team-card:hover {
  border-color: rgba(9, 169, 207, 0.34);
  box-shadow: var(--deep-shadow);
  transform: translateY(-8px);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover .team-photo img {
  transform: scale(1.025);
}

.team-photo img {
  transition: transform 220ms ease;
}

.team-info a:hover {
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.3);
  transform: translateY(-2px);
}

.faq-list {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-list details {
  position: relative;
}

.faq-list details[open] {
  background: rgba(9, 169, 207, 0.055);
}

.faq-list details:hover {
  background: rgba(9, 169, 207, 0.04);
}

.faq-list summary {
  position: relative;
  padding-right: 54px;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  display: grid;
  width: 10px;
  height: 10px;
  place-items: center;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--cyan-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.apply-section {
  align-items: start;
}

.scheduler-panel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 253, 255, 0.82)),
    var(--glass-strong);
}

.scheduler-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(9, 169, 207, 0.08) 48%, transparent 66%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(9, 169, 207, 0.035) 34px 35px);
}

.scheduler-panel:hover {
  border-color: rgba(9, 169, 207, 0.36);
}

.scheduler-head,
.calendar-frame {
  position: relative;
  z-index: 1;
}

.calendar-frame {
  border-color: rgba(9, 169, 207, 0.2);
  border-radius: 14px;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.site-footer {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  color: #485c78;
  opacity: 1;
}

.site-footer .footer-links a,
.site-footer p {
  color: #485c78;
  opacity: 1;
  visibility: visible;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.48);
  }
  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@keyframes buttonSheen {
  to {
    transform: translateX(360%) skewX(-24deg);
  }
}

@keyframes cardSheen {
  to {
    transform: translateX(120%);
  }
}

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

@keyframes textGlint {
  0% {
    opacity: 0;
    transform: translateX(-120px) skewX(-18deg);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(760px) skewX(-18deg);
  }
}

@keyframes stepRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .schedule-pane,
  .package-row {
    opacity: 1;
    transform: none;
  }

  .schedule-pane {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    border-radius: 0 0 18px 18px;
  }

  .hero::before {
    inset: 12px;
    border-radius: 18px;
  }

  .channel-grid article {
    min-height: 0;
  }

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

  .menu-panel {
    right: -2px;
    min-width: 210px;
  }

  .scheduler-panel {
    padding: 16px;
  }
}

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

  .js-ready .hero,
  .js-ready .section,
  .js-ready .proof-section,
  .js-ready .market-proof-live,
  .js-ready .apply-section,
  .js-ready .market-proof-live .signal-icon-growth span,
  .js-ready .signal-count,
  .proof-section .outbound-compare li,
  .outbound-compare li::before,
  .schedule-pane,
  .package-row {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}
