:root {
  --bg: #050816;
  --bg-2: #09122d;
  --panel: #101936;
  --panel-2: #14204a;
  --text: #f8fbff;
  --muted: #aab8dc;
  --line: rgba(248, 251, 255, 0.14);
  --lime: #3ee7ff;
  --lime-2: #a4f7ff;
  --cyan: #33e8ff;
  --blue: #1f72ff;
  --pink: #bf37ff;
  --purple: #6c3cff;
  --orange: #ff4fd8;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  --display: "Archivo", Impact, sans-serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(51, 232, 255, 0.18), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(191, 55, 255, 0.18), transparent 26%),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

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

.site-header {
  position: fixed;
  inset: 18px clamp(14px, 4vw, 48px) auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(185, 255, 47, 0.28);
  background: rgba(6, 7, 7, 0.9);
}

.brand,
.brand-mini {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 152px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(51, 232, 255, 0.28));
}

.brand-mini img {
  width: 210px;
  max-width: 100%;
  filter: drop-shadow(0 0 22px rgba(51, 232, 255, 0.32));
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #071006;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(185, 255, 47, 0);
  animation: markPulse 4.8s ease-in-out infinite;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(246, 243, 235, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--lime);
}

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

.nav-cta {
  padding: 0 18px;
  color: var(--text);
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

section {
  padding: clamp(82px, 9vw, 140px) clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% -10%;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(51, 232, 255, 0.16), rgba(191, 55, 255, 0.1));
  filter: blur(40px);
  animation: glowDrift 8s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(transparent 0 48%, rgba(51, 232, 255, 0.08) 49%, transparent 50%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  background-size: 100% 7px, 220% 100%;
  mix-blend-mode: screen;
  animation: scanlines 9s linear infinite, sheen 7s ease-in-out infinite;
}

.metric-pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 14px;
  border: 1px solid rgba(51, 232, 255, 0.45);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(51, 232, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: pillGlow 3.6s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(58px, 9.2vw, 138px);
  text-transform: uppercase;
}

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

.hero-copy > p:not(.metric-pill):not(.microcopy) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(246, 243, 235, 0.76);
  font-size: clamp(18px, 1.65vw, 23px);
}

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

.button {
  min-height: 54px;
  padding: 0 22px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 0 rgba(51, 232, 255, 0.45);
  animation: ctaPulse 4.2s ease-in-out infinite;
}

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

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 5;
  min-height: 100%;
  pointer-events: none;
  perspective: 1100px;
}

.hero-logo {
  position: absolute;
  z-index: 4;
  top: 15%;
  right: min(6vw, 76px);
  left: auto;
  width: min(300px, 34vw);
  filter:
    drop-shadow(0 0 22px rgba(51, 232, 255, 0.42))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.48));
  animation: logoHover 5.8s ease-in-out infinite;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  background: #111;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.phone-main {
  z-index: 6;
  top: 54%;
  right: clamp(22px, 8vw, 120px);
  width: min(330px, 30vw);
  aspect-ratio: 9 / 16;
  padding: 14px;
  pointer-events: auto;
  transform: translateY(-50%) rotate(5deg);
  animation: phoneMainFloat 6s ease-in-out infinite;
}

.phone-top {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 82px;
  height: 20px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
  pointer-events: none;
}

.phone-video {
  position: absolute;
  inset: 14px;
  z-index: 1;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border: 0;
  border-radius: 26px;
  object-fit: cover;
  background: #030713;
  cursor: pointer;
}

.clip-screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px;
}

.clip-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 12px),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.8), transparent 18%);
  background-size: 14px 14px, 100% 100%;
  animation: clipTexture 4.8s linear infinite;
}

.clip-screen::after {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  opacity: 0.42;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.52), transparent 58%);
  transform: translateX(-55%) rotate(10deg);
  animation: clipSweep 3.8s ease-in-out infinite;
}

.clip-screen > * {
  position: relative;
  z-index: 1;
}

.gradient-one {
  background: linear-gradient(150deg, #071026, #1146d8 38%, #33e8ff);
}

.tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #071006;
  background: var(--text);
  font-size: 11px;
  font-weight: 900;
}

.clip-screen strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 0.95;
  text-transform: uppercase;
}

.clip-screen small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.logo-band {
  display: block;
  overflow: hidden;
  padding-block: clamp(22px, 3.4vw, 46px);
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  background: transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-band + .process {
  padding-top: clamp(44px, 5.5vw, 82px);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
  animation: logoMarquee 30s linear infinite;
}

.platform-logo {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 13px;
  align-items: center;
  color: rgba(248, 251, 255, 0.88);
  opacity: 0.82;
  filter: drop-shadow(0 0 16px rgba(51, 232, 255, 0.16));
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.platform-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 22px rgba(51, 232, 255, 0.28));
}

.platform-logo img {
  width: clamp(48px, 4.2vw, 66px);
  height: clamp(48px, 4.2vw, 66px);
  object-fit: contain;
}

.platform-logo strong {
  display: block;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-kicker,
.section-title,
.review-head {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-kicker p,
.section-title p,
.review-head p,
.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker h2,
.section-title h2,
.review-head h2,
.copy-block h2,
.toolkit-copy h2,
.faq-copy h2,
.cta h2 {
  font-size: clamp(44px, 6vw, 92px);
  text-transform: uppercase;
}

.section-kicker span,
.copy-block p,
.toolkit-copy p {
  display: block;
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.step-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.step-card,
.insight-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
  background: var(--panel);
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), background 260ms ease, box-shadow 260ms ease;
}

.step-card {
  transform: translateY(calc((1 - var(--section-progress, 0)) * (28px + var(--step-index, 0) * 12px)));
}

.step-card.is-visible {
  transform: translateY(calc((1 - var(--section-progress, 0)) * var(--step-index, 0) * 10px));
}

.step-card:hover,
.insight-card:hover,
.loop-card:hover,
.checklist:hover,
.compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.step-card span,
.insight-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.step-card h3,
.insight-card h3,
.loop-card h3,
.checklist h3,
.compare-card h3 {
  margin-top: 48px;
  font-size: clamp(30px, 3vw, 46px);
  text-transform: uppercase;
}

.step-card p,
.insight-card p,
.compare-card li,
.loop-card li,
.checklist li,
.faq p {
  color: var(--muted);
}

.how-it-works,
.toolkit,
.faq,
.compare,
.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.platform-row span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(185, 255, 47, 0.1);
  background: rgba(51, 232, 255, 0.1);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  animation: platformPop 5s ease-in-out infinite;
}

.platform-row span:nth-child(2) {
  animation-delay: 0.35s;
}

.platform-row span:nth-child(3) {
  animation-delay: 0.7s;
}

.platform-row span:nth-child(4) {
  animation-delay: 1.05s;
}

.loop-card,
.checklist,
.compare-card {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  transition: transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms ease;
}

.loop-card p {
  margin: 0;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.work {
  background: var(--text);
  color: #070807;
}

.work .section-title p {
  color: #2855c8;
}

.work-list {
  border-top: 1px solid rgba(7, 8, 7, 0.18);
}

.work-row {
  display: grid;
  grid-template-columns: 72px max-content minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 124px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(7, 8, 7, 0.18);
  transition: padding 240ms ease, background 240ms ease;
}

.work-row:hover {
  padding-inline: 20px;
  background: rgba(51, 232, 255, 0.16);
}

.work-row strong {
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.work-row:hover strong {
  transform: translateX(12px);
}

.work-row span {
  color: #6a6d61;
  font-weight: 900;
}

.work-row strong {
  font-family: var(--display);
  min-width: 0;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-row em {
  min-width: 0;
  color: #4f554a;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.compare-card.highlight {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(31, 114, 255, 0.96), rgba(191, 55, 255, 0.92)),
    var(--panel-2);
}

.compare-card.highlight .brand-mark {
  background: #071006;
  color: var(--cyan);
}

.compare-card.highlight li {
  color: rgba(248, 251, 255, 0.82);
  border-color: rgba(248, 251, 255, 0.22);
}

.reviews {
  padding-inline: 0;
}

.review-head {
  padding-inline: clamp(18px, 5vw, 72px);
}

.review-marquee {
  overflow: hidden;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 34s linear infinite;
}

.review-track article {
  width: min(420px, 82vw);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
}

.google-review {
  display: flex;
  gap: 10px;
  align-items: center;
}

.google-g {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.google-review .stars {
  color: #fbbc05;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(251, 188, 5, 0.38);
}

.review-track strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}

.review-track span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-feature {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 25, 54, 0.96), rgba(8, 12, 31, 0.94)),
    radial-gradient(circle at 20% 20%, rgba(51, 232, 255, 0.18), transparent 32%);
}

.testimonial-video {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  justify-items: center;
  align-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-video::before {
  content: "";
  position: absolute;
  inset: 10% 6%;
  z-index: 0;
  opacity: 0.5;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 232, 255, 0.34), transparent 64%);
  filter: blur(30px);
  animation: glowDrift 7s ease-in-out infinite alternate;
}

.video-shell {
  position: relative;
  z-index: 2;
  width: min(390px, 82vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 12px;
  border: 2px solid rgba(248, 251, 255, 0.18);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    #05070c;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.54),
    0 0 48px rgba(51, 232, 255, 0.2);
  transform: none;
  animation: none;
}

.video-shell::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 3;
  width: 86px;
  height: 20px;
  padding: 0;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.video-shell iframe,
.video-shell video {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 0;
  border-radius: 31px;
  object-fit: cover;
}

.testimonial-copy h2 {
  font-size: clamp(42px, 5.3vw, 78px);
  text-transform: uppercase;
}

.testimonial-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

blockquote {
  margin: 32px 0 14px;
  padding: 28px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 22px 22px 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.testimonial-copy span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0 18px;
  border: 1px solid rgba(51, 232, 255, 0.28);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(51, 232, 255, 0.22);
}

.proof-list span {
  display: grid;
  min-height: 110px;
  align-items: center;
  padding: 18px;
  color: var(--text);
  background: rgba(5, 8, 22, 0.72);
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.toolkit {
  background:
    radial-gradient(circle at 88% 20%, rgba(51, 232, 255, 0.2), transparent 28%),
    radial-gradient(circle at 0% 90%, rgba(191, 55, 255, 0.16), transparent 32%),
    var(--panel);
}

.insights {
  background: #090b0a;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

details[open] {
  border-color: rgba(51, 232, 255, 0.34);
  background: rgba(51, 232, 255, 0.08);
}

details:hover {
  transform: translateX(6px);
}

summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 900;
  list-style: none;
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.cta {
  min-height: 74vh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(51, 232, 255, 0.2), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(191, 55, 255, 0.16), transparent 30%),
    var(--bg);
  animation: ctaBloom 7s ease-in-out infinite alternate;
}

.cta p {
  margin: 0 0 18px;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.cta h2 {
  max-width: 1000px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 220px 220px;
  gap: clamp(44px, 6vw, 86px);
  min-height: 190px;
  padding: 42px clamp(28px, 6vw, 96px) 42px clamp(360px, 34vw, 500px);
  border-top: 1px solid var(--line);
  background: #030403;
}

.site-footer .footer-brand {
  position: absolute;
  left: clamp(14px, 3vw, 42px);
  bottom: -34px;
  z-index: 2;
  width: min(300px, 28vw);
  pointer-events: auto;
}

.site-footer .footer-brand img {
  width: 100%;
  max-height: none;
  filter:
    drop-shadow(0 0 22px rgba(51, 232, 255, 0.42))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.48));
  animation: logoHover 5.8s ease-in-out infinite;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--cyan);
}

.site-footer a {
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.calendar-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.calendar-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 3, 0.78);
  backdrop-filter: blur(18px);
}

.calendar-panel {
  position: relative;
  width: min(1120px, 100%);
  height: min(780px, calc(100vh - 32px));
  overflow: hidden;
  border: 1px solid rgba(51, 232, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(9, 14, 18, 0.96), rgba(4, 6, 9, 0.98)),
    var(--bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 80px rgba(51, 232, 255, 0.12);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.calendar-modal.is-open .calendar-panel {
  transform: translateY(0) scale(1);
}

.calendar-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 4, 3, 0.72);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.calendar-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 22px 72px 18px 24px;
  background: linear-gradient(180deg, rgba(3, 4, 3, 0.92), rgba(3, 4, 3, 0));
  pointer-events: none;
}

.calendar-copy p {
  margin: 0 0 4px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
}

.calendar-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  padding-top: 82px;
  background: #ffffff;
}

body.calendar-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 780ms ease, transform 780ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes markPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(51, 232, 255, 0); }
  50% { box-shadow: 0 0 28px rgba(51, 232, 255, 0.38); }
}

@keyframes glowDrift {
  from { transform: translateX(-3%) scale(1); opacity: 0.72; }
  to { transform: translateX(3%) scale(1.08); opacity: 1; }
}

@keyframes scanlines {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 80px, 200% 0; }
}

@keyframes sheen {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.34; }
}

@keyframes pillGlow {
  0%, 100% { border-color: rgba(51, 232, 255, 0.28); }
  50% { border-color: rgba(191, 55, 255, 0.8); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(51, 232, 255, 0); }
  50% { box-shadow: 0 0 38px rgba(51, 232, 255, 0.34); }
}

@keyframes logoHover {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
  50% { transform: translate3d(0, -14px, 38px) rotate(2deg); }
}

@keyframes phoneMainFloat {
  0%, 100% { transform: translateY(-50%) rotate(5deg) translate3d(0, 0, 0); }
  50% { transform: translateY(-52%) rotate(3deg) translate3d(-8px, -12px, 34px); }
}

@keyframes clipTexture {
  from { background-position: 0 0, 0 0; }
  to { background-position: 42px 42px, 0 0; }
}

@keyframes clipSweep {
  0%, 42% { transform: translateX(-60%) rotate(10deg); }
  72%, 100% { transform: translateX(60%) rotate(10deg); }
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@keyframes platformPop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes ctaBloom {
  from { background-size: 100% 100%, 100% 100%, auto; }
  to { background-size: 135% 135%, 115% 115%, auto; }
}

@keyframes spinGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

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

  .nav-links {
    display: none;
  }

  .hero,
  .how-it-works,
  .toolkit,
  .faq,
  .compare,
  .testimonial-feature,
  .step-grid,
  .insight-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    min-height: 360px;
    padding: 210px 24px 42px;
  }

  .site-footer .footer-brand {
    top: -34px;
    bottom: auto;
    left: 18px;
    width: min(285px, 72vw);
  }

  .hero-visual {
    min-height: 100%;
  }

  .phone-main {
    right: 3%;
    width: min(300px, 34vw);
  }

  .work-row {
    grid-template-columns: 48px max-content minmax(0, 1fr);
    gap: 10px 18px;
    align-items: start;
    min-height: auto;
    padding: 24px 0;
  }

  .work-row strong {
    font-size: clamp(30px, 5.8vw, 48px);
  }

  .work-row em {
    grid-column: 3;
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 10px 10px auto;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-top: 116px;
    min-height: 920px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section-kicker h2,
  .section-title h2,
  .review-head h2,
  .copy-block h2,
  .toolkit-copy h2,
  .faq-copy h2,
  .cta h2 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .work-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 14px;
  }

  .work-row span {
    padding-top: 4px;
  }

  .work-row strong {
    font-size: clamp(30px, 11vw, 48px);
    line-height: 0.95;
    white-space: nowrap;
  }

  .work-row em {
    grid-column: 1 / -1;
    padding-left: 48px;
    font-size: 15px;
  }

  .hero-visual {
    min-height: 100%;
  }

  .phone-main {
    top: 64%;
    right: -18px;
    width: 238px;
  }

  .hero-logo {
    top: 62%;
    right: auto;
    left: 14px;
    width: 190px;
  }

  .step-card,
  .insight-card {
    min-height: auto;
  }

  .calendar-modal {
    padding: 0;
  }

  .calendar-panel {
    height: 100vh;
    border-radius: 0;
  }

  .calendar-copy {
    padding: 18px 62px 14px 18px;
  }

  .calendar-panel iframe {
    padding-top: 88px;
  }
}
