:root {
  --bg: #f4f6f8;
  --panel: #ffffff;
  --ink: #16202a;
  --muted: #657384;
  --line: #d8e0e8;
  --blue: #1769ff;
  --blue-dark: #0d4bc2;
  --soft-blue: #bfd8ff;
  --green: #12805c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(244, 246, 248, 0.86);
  border-bottom: 1px solid rgba(216, 224, 232, 0.82);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 124px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.header-actions a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.login-link:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.login-link {
  color: var(--muted);
}

.header-cta,
.primary-btn,
.secondary-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: none;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.primary-btn {
  background: var(--blue);
  color: #fff;
}

.header-cta:hover,
.primary-btn:hover {
  background: var(--blue-dark);
}

.secondary-btn {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.secondary-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px) 46px;
  min-height: calc(100vh - 84px);
}

.hero-shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

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

.hero-copy {
  max-width: 660px;
  will-change: transform;
}

.hero-product {
  will-change: transform;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 690px;
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.62;
}

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

.hero-product {
  min-width: 0;
}

.mock-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(22, 32, 42, 0.16);
  animation: float-up 6s ease-in-out infinite;
}

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mock-topbar {
  display: flex;
  gap: 7px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.mock-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ccd6e0;
}

.mock-body {
  display: grid;
  grid-template-columns: 86px 1fr;
  min-height: 430px;
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: #f7f9fb;
}

.mock-sidebar img {
  width: 38px;
  height: 38px;
}

.mock-nav {
  width: 44px;
  height: 10px;
  border-radius: 999px;
  background: #d8e0e8;
}

.mock-nav.active {
  background: var(--blue);
}

.mock-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.status-row,
.change-card,
.metric {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.status-label,
.metric span,
.change-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.status-row strong,
.metric strong {
  font-size: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: start;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(18, 128, 92, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(18, 128, 92, 0.35); }
  50% { opacity: 0.65; box-shadow: 0 0 0 5px rgba(18, 128, 92, 0); }
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  padding: 17px;
}

.change-card {
  padding: 22px;
}

.change-line {
  height: 12px;
  width: 86%;
  border-radius: 999px;
  background: #d8e0e8;
  margin-top: 14px;
}

.change-line.short {
  width: 58%;
}

.change-line.shimmer {
  position: relative;
  overflow: hidden;
  background: #d8e0e8;
}

.change-line.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: translateX(-100%);
  animation: shimmer-sweep 2.6s ease-in-out infinite;
}

.change-line.shimmer.short::after {
  animation-delay: 0.3s;
}

@keyframes shimmer-sweep {
  100% { transform: translateX(100%); }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 24px;
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(66px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

#how,
#care,
#plans,
#start {
  scroll-margin-top: 88px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.steps-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article,
.plan-card,
.care-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps-grid article {
  padding: 28px;
}

.steps-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.steps-grid p,
.care-copy p,
.plan-card p {
  color: var(--muted);
  line-height: 1.65;
}

.care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #fff;
  border-block: 1px solid var(--line);
}

.care-copy {
  max-width: 600px;
}

.care-copy p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 18px;
}

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

.care-list div {
  padding: 20px;
}

.care-list strong,
.care-list span {
  display: block;
}

.care-list span {
  margin-top: 5px;
  color: var(--muted);
}

.plans-section {
  background:
    linear-gradient(180deg, rgba(191, 216, 255, 0.26), transparent 42%),
    var(--bg);
}

.plan-card {
  position: relative;
  padding: 28px;
}

.plan-card.featured {
  border-color: rgba(23, 105, 255, 0.48);
  box-shadow: 0 18px 60px rgba(23, 105, 255, 0.14);
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(23, 105, 255, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--blue);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(52px, 6vw, 74px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.final-cta .eyebrow {
  color: var(--soft-blue);
}

.final-cta h2 {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 112px;
}

.footer-credit {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-credit a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: var(--blue);
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
}

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

.section-heading.reveal {
  transform: translateY(22px) scale(0.97);
  filter: blur(6px);
}

.section-heading.reveal.is-visible {
  transform: none;
  filter: blur(0);
}

.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.09s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.18s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.27s; }

/* ── Custom cursor (desktop-with-mouse only, see motion.js) ───────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 999px;
  will-change: transform;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  transition: opacity 0.2s ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(23, 105, 255, 0.4);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease, background 0.25s ease, opacity 0.2s ease;
}

.cursor-ring.is-active {
  width: 54px;
  height: 54px;
  border-color: var(--blue);
  background: rgba(23, 105, 255, 0.08);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea {
  cursor: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .section-heading.reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .mock-browser,
  .status-dot,
  .change-line.shimmer::after {
    animation: none;
  }

  .hero-shader,
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.steps-grid article,
.plan-card,
.care-list div {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.steps-grid article:hover,
.plan-card:hover,
.care-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 255, 0.4);
  box-shadow: 0 18px 46px rgba(22, 32, 42, 0.1);
}

.header-cta,
.primary-btn,
.secondary-btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.header-cta:active,
.primary-btn:active,
.secondary-btn:active {
  transform: translateY(1px);
}

.start-section {
  max-width: 760px;
}

.start-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.start-form {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.start-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.start-form input,
.start-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.start-form input:focus,
.start-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 255, 0.14);
}

.start-form textarea {
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-status {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.stale-page {
  min-height: 100vh;
}

.stale-shell {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 72px) clamp(52px, 7vw, 86px);
}

.stale-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 230px);
}

.stale-copy {
  max-width: 780px;
}

.stale-copy h1 {
  max-width: 820px;
  font-size: clamp(46px, 7vw, 82px);
}

.stale-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stale-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  box-shadow: 0 24px 70px rgba(22, 32, 42, 0.12);
}

.stale-panel img {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
}

.stale-panel h2 {
  margin-bottom: 22px;
  font-size: 30px;
}

.stale-steps {
  display: grid;
  gap: 12px;
}

.stale-steps div,
.stale-about div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.stale-steps div {
  padding: 18px;
}

.stale-steps strong,
.stale-steps span,
.stale-about strong,
.stale-about span {
  display: block;
}

.stale-steps span,
.stale-about span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.stale-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stale-about div {
  padding: 22px;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding: clamp(54px, 7vw, 94px) clamp(18px, 5vw, 72px) 34px;
}

.pricing-hero-copy {
  max-width: 780px;
}

.pricing-launch-card,
.pricing-plan-card,
.pricing-faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pricing-launch-card {
  padding: 30px;
  box-shadow: 0 18px 60px rgba(22, 32, 42, 0.08);
}

.pricing-launch-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-launch-price,
.pricing-plan-price {
  color: var(--blue);
  font-size: clamp(44px, 6vw, 62px);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pricing-launch-sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.pricing-launch-list,
.pricing-plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.pricing-launch-list li,
.pricing-plan-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.pricing-launch-list li::before,
.pricing-plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--blue);
}

.pricing-plans-section {
  padding-top: clamp(34px, 4vw, 52px);
}

.pricing-intro {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.pricing-plan-grid,
.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-plan-card {
  position: relative;
  padding: 28px;
}

.pricing-plan-card p,
.pricing-faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.pricing-plan-price {
  margin-top: 18px;
  font-size: clamp(38px, 5vw, 52px);
}

.pricing-plan-price span {
  font-size: 0.46em;
  font-weight: 800;
  letter-spacing: 0;
}

.pricing-plan-featured {
  border-color: rgba(23, 105, 255, 0.48);
  box-shadow: 0 18px 60px rgba(23, 105, 255, 0.14);
}

.pricing-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--green);
}

.pricing-bolt-ons {
  background:
    linear-gradient(180deg, rgba(191, 216, 255, 0.18), transparent 32%),
    #fff;
  border-block: 1px solid var(--line);
}

.pricing-addons-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pricing-addons-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-addons-table th,
.pricing-addons-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-addons-table th {
  background: #f9fbfd;
  color: var(--ink);
  font-size: 14px;
}

.pricing-addons-table td {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-addons-table td:first-child,
.pricing-addons-table td:nth-child(2) {
  color: var(--ink);
}

.pricing-addons-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-faq-grid article {
  padding: 24px;
}

.pricing-faq-grid h3 {
  margin-bottom: 12px;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .pricing-hero,
  .stale-hero,
  .care-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .mock-body {
    min-height: 360px;
  }

  .steps-grid,
  .plans-grid,
  .pricing-plan-grid,
  .pricing-faq-grid,
  .trust-strip,
  .stale-about,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-cta,
  .primary-btn,
  .secondary-btn {
    min-height: 42px;
  }

  .hero {
    padding-top: 42px;
  }

  .pricing-hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-actions,
  .stale-actions,
  .final-cta,
  .site-footer,
  .site-footer div,
  .footer-brand,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a,
  .stale-actions a,
  .final-cta a {
    width: 100%;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

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

  .pricing-addons-table th,
  .pricing-addons-table td {
    padding: 16px 14px;
    font-size: 14px;
  }
}
