:root {
  --blue: #2958dd;
  --blue-hover: #1d46b6;
  --blue-dark: #1535ac;
  --blue-950: #0d1d4d;
  --teal: #13a7ab;
  --teal-light: #2fcacf;
  --ink: #0f172a;
  --ink-soft: #52617c;
  --line: #dce4f3;
  --surface: #f7f9ff;
  --surface-blue: #edf2ff;
  --white: #fff;
  --warm: #fff9f2;
  --shadow-sm: 0 10px 30px rgba(31, 55, 110, .08);
  --shadow-md: 0 24px 70px rgba(25, 48, 106, .14);
  --shadow-phone: drop-shadow(0 34px 34px rgba(20, 36, 79, .2));
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 11vw, 4.9rem);
  font-weight: 760;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 7.8vw, 3.6rem);
  font-weight: 730;
}

h3 {
  font-size: 1.32rem;
  font-weight: 700;
}

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

.section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 243, .78);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(calc(100% - 32px), 1280px);
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.02rem;
  letter-spacing: -.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  align-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 72px 0 auto;
  display: none;
  padding: 18px 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.main-nav.is-open {
  display: grid;
}

.main-nav > a:not(.btn) {
  padding: 12px 4px;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 620;
}

.nav-divider {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 680;
  line-height: 1.15;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(41, 88, 221, .24);
}

.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 16px 34px rgba(41, 88, 221, .3);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
}

.btn-secondary:hover {
  border-color: #b9c8e8;
  background: var(--white);
}

.btn-small {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 12px;
  font-size: .9rem;
}

.btn-white {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 15px 38px rgba(4, 15, 47, .2);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.eyebrow,
.section-kicker {
  display: flex;
  margin-bottom: 16px;
  color: var(--blue);
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(19, 167, 171, .12);
}

.section-kicker-teal {
  color: #087f83;
}

.section-kicker-light {
  color: #9eecef;
}

.hero {
  padding-top: 64px;
  background:
    radial-gradient(circle at 85% 8%, rgba(47, 202, 207, .14), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #fff 84%);
}

.hero-grid {
  display: grid;
  gap: 26px;
}

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

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 4.5vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.hero-note {
  display: flex;
  margin: 20px 0 0;
  color: var(--ink-soft);
  align-items: center;
  gap: 9px;
  font-size: .87rem;
}

.hero-note svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.5;
  background: rgba(47, 202, 207, .1);
}

.hero-visual {
  position: relative;
  height: 450px;
  margin-top: 12px;
}

.hero-phone {
  position: absolute;
  width: 235px;
  max-width: none;
  filter: var(--shadow-phone);
}

.hero-phone-front {
  z-index: 2;
  top: 35px;
  left: 4px;
  transform: rotate(-3deg);
}

.hero-phone-back {
  top: 4px;
  right: -20px;
  opacity: .96;
  transform: rotate(4deg) scale(.92);
}

.hero-label {
  position: absolute;
  z-index: 4;
  display: flex;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 7px;
  font-size: .73rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-label-link {
  top: 9px;
  left: 4px;
}

.hero-label-agenda {
  right: 0;
  bottom: 55px;
}

.pulse-dot,
.check-dot {
  display: inline-grid;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  place-items: center;
}

.pulse-dot {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(19, 167, 171, .12);
}

.check-dot {
  color: var(--white);
  background: var(--blue);
  font-size: .68rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: 24%;
  right: -150px;
  width: 340px;
  height: 340px;
  background: rgba(41, 88, 221, .09);
  filter: blur(2px);
}

.hero-orb-two {
  right: 30%;
  bottom: 8%;
  width: 160px;
  height: 160px;
  background: rgba(47, 202, 207, .11);
  filter: blur(18px);
}

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.proof-strip span {
  display: flex;
  padding: 17px 20px;
  color: var(--ink-soft);
  align-items: center;
  gap: 12px;
  font-size: .86rem;
  font-weight: 650;
}

.proof-strip span + span {
  border-top: 1px solid var(--line);
}

.proof-strip svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
}

.story-section {
  overflow: hidden;
}

.pain-section {
  background: var(--surface);
}

.gain-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.story-copy > p:not(.section-kicker, .callout) {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.timeline {
  position: relative;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 70px;
  width: 2px;
  content: "";
  background: linear-gradient(var(--blue), var(--teal));
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 38px minmax(0, 1fr);
  min-height: 56px;
  align-items: center;
}

.timeline li::after {
  position: absolute;
  left: 65px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.timeline time {
  text-align: right;
  font-weight: 760;
}

.timeline span {
  grid-column: 3;
  color: var(--ink-soft);
}

.callout {
  padding: 18px 20px;
  margin: 28px 0 0;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: var(--surface-blue);
  color: var(--ink-soft);
}

.callout strong {
  color: var(--ink);
}

.callout-teal {
  border-color: var(--teal);
  background: #ecfbfb;
}

.phone-stage {
  position: relative;
  width: min(100%, 430px);
  height: 680px;
  margin-inline: auto;
  border-radius: 48% 48% 28% 28% / 36% 36% 20% 20%;
}

.phone-stage-pain {
  background: radial-gradient(circle at 50% 46%, #f7ddd8 0 39%, transparent 70%);
}

.phone-stage-gain {
  background: radial-gradient(circle at 50% 46%, #cceff0 0 39%, transparent 70%);
}

.phone-stage img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 338px;
  max-width: none;
  filter: var(--shadow-phone);
  transform: translateX(-50%);
}

.time-pill,
.message-card {
  position: absolute;
  z-index: 4;
  box-shadow: var(--shadow-sm);
}

.time-pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--white);
  font-size: .75rem;
  font-weight: 760;
}

.time-pill-top {
  top: 92px;
  left: 0;
}

.time-pill-bottom {
  right: 0;
  bottom: 96px;
}

.message-card {
  right: -4px;
  bottom: 76px;
  display: flex;
  max-width: 232px;
  padding: 14px 16px;
  border: 1px solid #cde8e9;
  border-radius: 17px;
  color: #24535a;
  background: rgba(255, 255, 255, .96);
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 690;
  line-height: 1.4;
}

.message-card span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  place-items: center;
}

.mini-flow {
  display: grid;
  margin: 28px 0;
  gap: 8px;
}

.mini-flow span {
  padding: 11px 14px;
  border: 1px solid #d7eeee;
  border-radius: 12px;
  color: #24535a;
  background: #f4fdfd;
  font-size: .86rem;
  font-weight: 680;
  text-align: center;
}

.mini-flow b {
  color: var(--teal);
  line-height: 1;
  text-align: center;
  transform: rotate(90deg);
}

.booking-section {
  padding-bottom: 40px;
  background:
    radial-gradient(circle at 50% 70%, rgba(41, 88, 221, .13), transparent 45%),
    var(--surface);
}

.center-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading .section-kicker {
  justify-content: center;
}

.center-heading > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

code {
  padding: 3px 8px;
  border: 1px solid #cdd9f5;
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--surface-blue);
  font-family: inherit;
  font-size: .92em;
  font-weight: 680;
}

.booking-showcase {
  position: relative;
  display: flex;
  margin-inline: -20px;
  padding: 20px max(20px, calc((100vw - 270px) / 2)) 22px;
  overflow-x: auto;
  gap: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.booking-showcase::-webkit-scrollbar {
  display: none;
}

.booking-phone {
  width: 270px;
  max-width: none;
  flex: 0 0 270px;
  filter: var(--shadow-phone);
  scroll-snap-align: center;
}

.install-section {
  background:
    radial-gradient(circle at 82% 32%, rgba(47, 202, 207, .14), transparent 30%),
    var(--white);
}

.install-grid,
.assistant-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.install-copy > p:not(.section-kicker),
.assistant-copy > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.feature-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  padding: 9px 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 650;
}

.feature-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
}

.install-media,
.assistant-media {
  position: relative;
  height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #f1f7ff 0%, #e9fafa 100%);
  box-shadow: var(--shadow-md);
}

.install-media img,
.assistant-media img {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  width: 270px;
  max-width: none;
  filter: var(--shadow-phone);
  transform: translateX(-50%);
}

.install-glow,
.assistant-glow {
  position: absolute;
  top: 14%;
  left: 50%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(47, 202, 207, .2);
  filter: blur(24px);
  transform: translateX(-50%);
}

.install-note,
.assistant-note {
  position: absolute;
  z-index: 4;
  display: flex;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 720;
  backdrop-filter: blur(12px);
}

.install-note {
  top: calc(67% + 70px);
  left: 50%;
  transform: translateX(-50%);
}

.install-note span {
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  place-items: center;
  font-size: .66rem;
}

.share-chip {
  display: none;
}

.steps-section {
  background: var(--white);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.step-cards {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 16px;
  list-style: none;
}

.step-cards li {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-cards li:nth-child(2) {
  background: #f3fbfb;
}

.step-cards li:nth-child(3) {
  background: var(--surface-blue);
}

.step-index {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #c5cfe3;
  font-size: 1rem;
  font-weight: 780;
}

.step-icon,
.benefit-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--blue);
  background: var(--surface-blue);
  place-items: center;
}

.step-icon svg,
.benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.step-cards h3 {
  margin-bottom: 14px;
}

.step-cards p {
  margin: 0;
  color: var(--ink-soft);
}

.agenda-section {
  min-height: 780px;
  padding-bottom: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(47, 202, 207, .28), transparent 26%),
    linear-gradient(135deg, #112d8b 0%, #10215b 63%, #09173f 100%);
}

.agenda-grid {
  display: grid;
  gap: 44px;
}

.agenda-copy {
  position: relative;
  z-index: 4;
}

.agenda-copy > p:not(.section-kicker) {
  color: #ced8f0;
  font-size: 1.05rem;
}

.check-list {
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  padding: 10px 0;
  align-items: center;
  gap: 12px;
  color: #e4eafd;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue-950);
  background: #8fe0e3;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  color: var(--blue);
  align-items: center;
  gap: 8px;
  font-weight: 720;
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link span {
  transition: transform .2s ease;
}

.text-link-light {
  color: #9eecef;
}

.agenda-media {
  position: relative;
  height: 600px;
}

.agenda-media img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 345px;
  max-width: none;
  filter: drop-shadow(0 38px 40px rgba(0, 0, 0, .28));
  transform: translateX(-50%);
}

.agenda-glow {
  position: absolute;
  top: 16%;
  left: 50%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(47, 202, 207, .2);
  filter: blur(22px);
  transform: translateX(-50%);
}

.assistant-section {
  background:
    radial-gradient(circle at 78% 28%, rgba(108, 84, 216, .13), transparent 30%),
    linear-gradient(180deg, #f8f9ff 0%, #f0f3ff 100%);
}

.assistant-media {
  background: linear-gradient(145deg, #f0f3ff 0%, #e9edff 100%);
}

.assistant-media img {
  bottom: 30px;
}

.assistant-glow {
  background: rgba(108, 84, 216, .18);
}

.assistant-note {
  top: 26px;
  left: 20px;
}

.assistant-note span {
  color: #6e55d8;
  font-size: 1rem;
}

.assistant-copy .feature-list span {
  background: #6e55d8;
}

.benefits-section {
  background: var(--surface);
}

.benefit-grid {
  display: grid;
  gap: 16px;
}

.benefit-card {
  min-height: 240px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.benefit-card p {
  margin: 0;
  color: var(--ink-soft);
}

.benefit-icon.teal {
  color: #07868a;
  background: #e7f8f8;
}

.benefit-icon.violet {
  color: #6e55d8;
  background: #f0edff;
}

.benefit-icon.warm {
  color: #c87428;
  background: #fff1df;
}

.benefit-card-image {
  display: grid;
  min-height: 440px;
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 0%, #edf2ff 100%);
}

.benefit-card-image img {
  width: 230px;
  margin: 12px auto -150px;
  filter: drop-shadow(0 25px 25px rgba(34, 54, 101, .18));
}

.independence-section {
  background: var(--white);
}

.independence-grid {
  display: grid;
  gap: 42px;
}

.independence-copy p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.independence-list {
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  list-style: none;
}

.independence-list li {
  display: grid;
  padding: 23px 22px;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
}

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

.independence-list span {
  color: var(--teal);
  font-size: .75rem;
  font-weight: 790;
}

.independence-list strong {
  line-height: 1.35;
}

.audience-section {
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}

.audience-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-cloud span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(31, 55, 110, .05);
  font-size: .9rem;
  font-weight: 650;
}

.audience-cloud span:nth-child(3n + 2) {
  color: #087f83;
  background: #eefbfb;
}

.audience-cloud span:nth-child(3n) {
  color: var(--blue-dark);
  background: var(--surface-blue);
}

.final-cta {
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(135deg, #2958dd 0%, #163cb5 58%, #0f2b86 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.cta-inner img {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 15px 22px rgba(4, 15, 47, .25));
}

.cta-inner .section-kicker {
  justify-content: center;
}

.cta-inner > p:not(.section-kicker) {
  max-width: 690px;
  margin: 0 auto 30px;
  color: #d9e1f8;
  font-size: 1.06rem;
}

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

.cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(47, 202, 207, .2);
  filter: blur(8px);
}

.cta-orb-one {
  top: -80px;
  left: -100px;
  width: 260px;
  height: 260px;
}

.cta-orb-two {
  right: -90px;
  bottom: -100px;
  width: 300px;
  height: 300px;
}

.company-strip {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  background: #eef4ff;
}

.company-strip-inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

.company-strip strong {
  display: block;
  margin-bottom: 4px;
}

.company-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.site-footer {
  padding: 62px 0 22px;
  color: #cbd5e8;
  background: #0b1635;
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.footer-grid > div:not(.footer-intro) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: #9eabc6;
}

.footer-intro > p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #9eabc6;
  font-size: .91rem;
}

.footer-intro .company-details {
  color: #b9c5db;
  line-height: 1.75;
}

.footer-grid h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) a {
  width: fit-content;
  color: #aebbd1;
  font-size: .9rem;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-direction: column;
  gap: 8px;
  color: #7f8eab;
  font-size: .78rem;
}

.legal-main {
  min-height: 68vh;
  padding: 64px 0 100px;
  background: linear-gradient(180deg, var(--surface) 0, var(--white) 300px);
}

.legal-hero {
  max-width: 820px;
  margin: 0 auto 42px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 9vw, 4.4rem);
}

.legal-hero > p:not(.section-kicker) {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
}

.legal-content {
  max-width: 820px;
  padding: 30px 24px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-content h2 {
  margin: 38px 0 14px;
  font-size: 1.42rem;
  letter-spacing: -.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #45536d;
}

.legal-content a,
.contact-card a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--ink-soft);
  font-size: .86rem;
}

.contact-grid {
  display: grid;
  max-width: 920px;
  margin-inline: auto;
  gap: 16px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.contact-card p {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.contact-card .btn {
  margin-top: 12px;
  color: var(--white);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: .1s;
}

.reveal-delay-two {
  transition-delay: .2s;
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    min-width: 190px;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-strip span {
    justify-content: center;
  }

  .proof-strip span + span {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .mini-flow {
    display: flex;
    align-items: center;
  }

  .mini-flow b {
    transform: none;
  }

  .benefit-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card-image {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 240px;
    align-items: center;
  }

  .benefit-card-image img {
    width: 230px;
    margin: 20px auto -145px;
  }

  .company-strip-inner {
    grid-template-columns: 1fr auto;
  }

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

@media (min-width: 780px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .section {
    padding: 112px 0;
  }

  .nav-shell {
    min-height: 80px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    align-items: center;
    gap: 28px;
  }

  .main-nav > a:not(.btn) {
    padding: 8px 0;
  }

  .nav-divider {
    display: block;
    width: 1px;
    height: 22px;
    background: var(--line);
  }

  .hero {
    padding-top: 100px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: 30px;
  }

  .hero-visual {
    height: 475px;
    margin: 0;
  }

  .hero-phone {
    width: 250px;
  }

  .hero-phone-front {
    left: 44px;
  }

  .hero-phone-back {
    right: -20px;
  }

  .hero-label-link {
    top: 14px;
    left: 28px;
  }

  .hero-label-agenda {
    right: 5px;
    bottom: 75px;
  }

  .proof-strip {
    margin-top: 30px;
  }

  .story-grid {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 8vw;
  }

  .story-grid-reverse .story-copy {
    order: 2;
  }

  .story-grid-reverse .story-media {
    order: 1;
  }

  .phone-stage {
    height: 760px;
  }

  .phone-stage img {
    width: 380px;
  }

  .time-pill-top {
    left: -22px;
  }

  .time-pill-bottom {
    right: -18px;
  }

  .booking-showcase {
    height: 740px;
    padding: 20px 0 0;
    margin: 0;
    overflow: visible;
    justify-content: center;
    gap: 0;
  }

  .booking-phone {
    position: absolute;
    width: 330px;
    flex: none;
  }

  .booking-phone-left {
    z-index: 1;
    left: calc(50% - 355px);
    top: 70px;
    transform: rotate(-7deg) scale(.9);
  }

  .booking-phone-center {
    z-index: 3;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
  }

  .booking-phone-right {
    z-index: 2;
    right: calc(50% - 355px);
    top: 70px;
    transform: rotate(7deg) scale(.9);
  }

  .share-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
  }

  .share-chip span {
    color: var(--blue);
  }

  .share-chip-one {
    top: 18%;
    left: 1%;
  }

  .share-chip-two {
    top: 52%;
    right: 2%;
  }

  .share-chip-three {
    bottom: 14%;
    left: 6%;
  }

  .step-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .install-grid,
  .assistant-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    gap: 7vw;
  }

  .install-media,
  .assistant-media {
    height: 690px;
  }

  .install-media img,
  .assistant-media img {
    width: 300px;
  }

  .agenda-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    min-height: 720px;
    align-items: center;
  }

  .agenda-copy {
    padding-bottom: 100px;
  }

  .agenda-media {
    height: 720px;
  }

  .agenda-media img {
    width: 405px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-card-image {
    grid-column: 1 / -1;
    min-height: 380px;
    grid-template-columns: 1fr 310px;
    padding-left: 42px;
  }

  .benefit-card-image img {
    width: 285px;
    margin-bottom: -180px;
  }

  .independence-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .8fr);
    align-items: center;
    gap: 8vw;
  }

  .audience-cloud {
    max-width: 1000px;
  }

  .audience-cloud span {
    padding: 15px 23px;
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: minmax(290px, 1.5fr) repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .legal-main {
    padding: 92px 0 130px;
  }

  .legal-content {
    padding: 48px 58px;
  }
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(490px, .92fr);
  }

  .hero-visual {
    height: 500px;
  }

  .hero-phone {
    width: 270px;
  }

  .hero-phone-front {
    left: 55px;
  }

  .hero-phone-back {
    right: -18px;
  }

  .install-note {
    top: calc(58% + 70px);
    right: 12px;
    left: auto;
    transform: none;
  }

  .hero-label-agenda {
    right: 0;
    bottom: 58px;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr) 1.25fr;
  }

  .benefit-card-image {
    grid-column: auto;
    min-height: 240px;
    padding: 27px 27px 0;
    grid-template-columns: 1fr;
  }

  .benefit-card-image img {
    width: 200px;
    margin: 14px auto -120px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
