:root {
  color-scheme: light;
  --color-primary: #0a66ff;
  --color-primary-strong: #064fc8;
  --color-primary-soft: #dbeafe;
  --color-accent: #7c3aed;
  --color-ink: #07111f;
  --color-text: #243044;
  --color-muted: #64748b;
  --color-subtle: #8290a7;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-surface-solid: #ffffff;
  --color-surface-soft: rgba(248, 251, 255, 0.78);
  --color-border: rgba(148, 163, 184, 0.28);
  --color-border-strong: rgba(10, 102, 255, 0.22);
  --shadow-soft: 0 16px 40px rgba(31, 72, 126, 0.1);
  --shadow-card: 0 22px 70px rgba(15, 23, 42, 0.12);
  --shadow-device: 0 28px 80px rgba(15, 23, 42, 0.18), 0 10px 24px rgba(10, 102, 255, 0.12);
  --shadow-button: 0 14px 28px rgba(10, 102, 255, 0.24);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container-wide: 1120px;
  --container-reading: 900px;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  line-height: 1.7;
  background:
    radial-gradient(circle at 12% 8%, rgba(10, 102, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, 0.12), transparent 26rem),
    linear-gradient(180deg, #f7faff 0%, #eef6ff 46%, #f8fbff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(10, 102, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

body::after {
  position: fixed;
  inset: auto 8% 6% auto;
  z-index: -1;
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(10, 102, 255, 0.12), transparent 68%);
  filter: blur(8px);
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes hero-frame-reveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96) rotateX(8deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes blob-drift {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 0.92;
    transform: translate3d(-14px, 18px, 0) scale(1.08);
  }
}

@keyframes cta-shine {
  0% {
    opacity: 0;
    transform: translateX(-145%) skewX(-18deg);
  }

  22%,
  58% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(145%) skewX(-18deg);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-1px) scale(1.018);
  }
}

a {
  color: var(--color-primary);
  font-weight: 650;
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

img,
iframe {
  max-width: 100%;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0 0 0.35em;
  font-size: clamp(2.3rem, 7vw, 4.8rem);
}

h2 {
  margin: 1.5em 0 0.55em;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  margin: 0 0 0.7em;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p,
li {
  margin-bottom: 1em;
}

ul,
ol {
  padding-left: 1.35rem;
}

code {
  padding: 0.16rem 0.42rem;
  border: 1px solid var(--color-border);
  border-radius: 0.45rem;
  background: rgba(10, 102, 255, 0.07);
  color: var(--color-ink);
  font-size: 0.94em;
}

pre {
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.88);
}

.site-header,
.site-footer,
.page-container {
  width: min(calc(100% - 32px), var(--container-wide));
  margin-inline: auto;
}

.site-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  min-width: 0;
  gap: 0.9rem;
  align-items: center;
}

.logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(10, 102, 255, 0.18);
}

.brand-title {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle,
.muted,
.small,
.note,
.eyebrow {
  color: var(--color-muted);
}

.brand-subtitle,
.small,
.note {
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
  line-height: 1.55;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-pill);
  color: var(--color-text);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(10, 102, 255, 0.09);
  color: var(--color-primary-strong);
  text-decoration: none;
}

.page-container {
  padding-block: 1.25rem 2.5rem;
}

.reading-container {
  max-width: var(--container-reading);
}

.hero,
.page-hero,
.card,
.summary-box,
.note-box {
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-soft) 100%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: var(--shadow-card);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 86% 12%, rgba(10, 102, 255, 0.16), transparent 18rem);
}

.hero::after {
  position: absolute;
  inset: auto -6rem -8rem auto;
  z-index: 0;
  width: min(34vw, 380px);
  height: min(34vw, 380px);
  border-radius: 999px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 35% 35%, rgba(124, 58, 237, 0.28), transparent 52%),
    radial-gradient(circle at 68% 62%, rgba(10, 102, 255, 0.22), transparent 58%);
  filter: blur(4px);
  animation: blob-drift 8s ease-in-out infinite;
}

.hero-copy,
.copy {
  position: relative;
  z-index: 1;
  flex: 1 1 460px;
}

.hero-copy > .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .button-row,
.hero-copy .trust-copy {
  opacity: 0;
  animation: hero-reveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy .lead {
  animation-delay: 180ms;
}

.hero-copy .button-row {
  animation-delay: 270ms;
}

.hero-copy .trust-copy {
  animation-delay: 360ms;
}

.hero-media {
  position: relative;
  z-index: 1;
  flex: 1 1 520px;
  min-width: min(100%, 340px);
  perspective: 1200px;
}

.lead {
  max-width: 760px;
  margin: 0 0 1.6rem;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.32rem);
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row,
.meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  overflow: hidden;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: -45% -35%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  opacity: 0;
  transform: translateX(-145%) skewX(-18deg);
}

.button:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--color-primary), #3aa0ff);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.hero .button-primary,
.cta-band .button-primary {
  animation: cta-breathe 3.2s ease-in-out infinite;
}

.hero .button-primary::after,
.cta-band .button-primary::after {
  animation: cta-shine 3.4s ease-in-out 900ms infinite;
}

.cta-band .button-primary::after {
  background: linear-gradient(90deg, transparent, rgba(10, 102, 255, 0.22), transparent);
}

.hero .button-primary:hover,
.cta-band .button-primary:hover {
  animation: none;
  transform: translateY(-3px) scale(1.018);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-strong), var(--color-primary));
  color: #fff;
  box-shadow: 0 18px 34px rgba(10, 102, 255, 0.28);
}

.button-secondary {
  border-color: var(--color-border-strong);
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-primary);
  box-shadow: 0 10px 22px rgba(31, 72, 126, 0.08);
}

.button-secondary:hover {
  border-color: rgba(10, 102, 255, 0.34);
  background: #fff;
  color: var(--color-primary-strong);
}

.trust-copy {
  margin-top: 1rem;
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 750;
}

.section-block {
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

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

.section-intro h2,
.trust-section h2,
.cta-band h2 {
  margin-top: 0;
}

.section-lead {
  max-width: 720px;
  margin-top: -0.15rem;
  color: var(--color-muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.step-card {
  position: relative;
  padding: clamp(1.1rem, 2.6vw, 1.45rem);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card:hover {
  border-color: rgba(10, 102, 255, 0.34);
  box-shadow: 0 20px 48px rgba(31, 72, 126, 0.13);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(10, 102, 255, 0.2);
}

.benefit-grid,
.features,
.card-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card,
.summary-box,
.note-box {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.summary-box:hover,
.note-box:hover {
  border-color: rgba(10, 102, 255, 0.34);
  box-shadow: 0 20px 48px rgba(31, 72, 126, 0.13);
  transform: translateY(-4px);
}

.card::before,
.summary-box::before,
.note-box::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  opacity: 0.72;
}

.card h2:first-child,
.card h3:first-child,
.summary-box h2:first-child {
  margin-top: 0;
}


.social-proof {
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.social-proof .section-intro {
  max-width: 840px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(10, 102, 255, 0.22);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(10, 102, 255, 0.12), rgba(124, 58, 237, 0.1));
  color: var(--color-primary-strong);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.2;
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  color: var(--color-ink);
  font-size: clamp(1.02rem, 1rem + 0.25vw, 1.16rem);
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-card figcaption {
  margin-top: auto;
  color: var(--color-muted);
  font-size: 0.96rem;
  font-weight: 750;
}

.benefit-card {
  min-height: 100%;
}

.benefit-icon {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  padding-inline: 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 102, 255, 0.1);
  color: var(--color-primary-strong);
  font-weight: 850;
}

.trust-section,
.cta-band {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(1.25rem, 3.5vw, 2rem);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.trust-section {
  background: rgba(255, 255, 255, 0.78);
}

.trust-section > div {
  max-width: 640px;
}

.trust-list {
  flex: 0 1 320px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--color-text);
  font-weight: 700;
}

.cta-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.3), transparent 12rem),
    linear-gradient(135deg, var(--color-primary-strong), var(--color-primary));
  color: #fff;
  box-shadow: var(--shadow-card);
}

.cta-band h2,
.cta-band .eyebrow,
.cta-band .section-lead {
  color: #fff;
}

.cta-band .button-primary {
  flex: 0 0 auto;
  background: #fff;
  color: var(--color-primary-strong);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.18);
}

.cta-band .button-primary:hover {
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
}

.screenshot-showcase {
  width: min(100%, 620px);
  margin: 0 auto;
  opacity: 0;
  transform-style: preserve-3d;
  animation: hero-frame-reveal 850ms cubic-bezier(0.2, 0.8, 0.2, 1) 360ms forwards;
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(10, 102, 255, 0.2);
  border-radius: clamp(1rem, 3vw, 1.65rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.9));
  box-shadow: var(--shadow-device);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screenshot-showcase:hover .browser-frame {
  box-shadow: 0 34px 92px rgba(15, 23, 42, 0.2), 0 16px 32px rgba(10, 102, 255, 0.16);
  transform: translateY(-6px) rotateX(2deg) rotateY(-3deg) scale(1.015);
}

.browser-chrome {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  padding: 0.72rem 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 241, 255, 0.86));
}

.chrome-dot {
  width: 0.72rem;
  height: 0.72rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ff6b6b;
  box-shadow: 1.05rem 0 0 #ffd166, 2.1rem 0 0 #35d399;
}


.chrome-address {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 2.45rem;
  padding: 0.28rem 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-subtle);
  font-size: clamp(0.72rem, 1.5vw, 0.86rem);
  font-weight: 750;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screenshot {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf4ff, #f7fbff);
}

.screenshot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transition: transform 220ms ease;
}

.screenshot-showcase:hover .screenshot img {
  transform: scale(1.025);
}

.screenshot-showcase figcaption {
  max-width: 56ch;
  margin: 0.9rem auto 0;
  color: var(--color-muted);
  font-size: clamp(0.92rem, 0.86rem + 0.2vw, 1rem);
  font-weight: 650;
  line-height: 1.55;
  text-align: center;
}

.demo-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.78));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.demo-copy h2 {
  margin-top: 0;
}

.video {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: calc(var(--radius-lg) - 4px);
  background: #000;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.legal-content > section,
.legal-content > .summary-box {
  margin-top: 1rem;
}

.site-footer {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-muted);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
  margin-top: 0.45rem;
  font-size: 0.95rem;
}

form label {
  display: block;
  margin-top: 0.85rem;
  color: var(--color-ink);
  font-weight: 750;
}

.support-form-card h2 {
  margin-top: 0;
}

.support-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  margin-top: 0;
}

input,
textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field textarea {
  margin-top: 0;
}

textarea {
  min-height: 11rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-subtle);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(10, 102, 255, 0.16);
  border-color: var(--color-primary);
  background: var(--color-surface-solid);
}

input:required:user-invalid,
textarea:required:user-invalid,
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

input:required:user-valid,
textarea:required:user-valid {
  border-color: rgba(22, 163, 74, 0.48);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.55em;
  margin: 0;
  color: #15803d;
  font-size: 0.98rem;
  font-weight: 750;
}

.form-status:not(:empty) {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(22, 163, 74, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(22, 163, 74, 0.1);
}

.form-status[data-status="pending"] {
  border-color: rgba(10, 102, 255, 0.24);
  background: rgba(10, 102, 255, 0.1);
  color: var(--color-primary-strong);
}

.form-status[data-status="error"] {
  border-color: rgba(220, 38, 38, 0.24);
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.diag {
  max-height: 220px;
  white-space: pre-wrap;
}

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

  .hero::after,
  .hero .button-primary,
  .hero .button-primary::after,
  .cta-band .button-primary,
  .cta-band .button-primary::after {
    animation: none !important;
  }

  .hero-copy > .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .button-row,
  .hero-copy .trust-copy,
  .screenshot-showcase {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .hero .button-primary:hover,
  .cta-band .button-primary:hover,
  .card:hover,
  .summary-box:hover,
  .note-box:hover,
  .step-card:hover,
  .screenshot-showcase:hover .browser-frame,
  .screenshot-showcase:hover .screenshot img {
    transform: none;
  }
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .trust-section,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-media {
    width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }

  .screenshot-showcase {
    width: 100%;
  }

  .browser-chrome {
    padding: 0.62rem 0.7rem;
  }

  .chrome-address {
    margin-left: 2.25rem;
  }

  .demo-card {
    grid-template-columns: 1fr;
  }

  .logo {
    width: 56px;
    height: 56px;
  }
}

.brand,
.brand:hover {
  color: inherit;
  text-decoration: none;
}

.brand-title,
.brand-subtitle {
  display: block;
}

/* Premium homepage upgrades */
.hero-premium {
  min-height: 690px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 246, 255, 0.84) 48%, rgba(232, 239, 255, 0.78) 100%);
}

.hero-premium h1 {
  max-width: 11ch;
  background: linear-gradient(120deg, #06111f 0%, #0a66ff 52%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(10, 102, 255, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(31, 72, 126, 0.08);
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(1px);
  opacity: 0.75;
}

.hero-orb-one {
  top: 12%;
  right: 38%;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(10, 102, 255, 0.18), transparent 68%);
  animation: float-soft 8s ease-in-out infinite;
}

.hero-orb-two {
  right: 8%;
  bottom: 18%;
  width: 5.5rem;
  height: 5.5rem;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  animation: float-soft 7s ease-in-out 1.4s infinite reverse;
}

.hero-metrics {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 1.55rem;
}

.hero-metrics div {
  padding: 0.88rem;
  border: 1px solid rgba(10, 102, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(31, 72, 126, 0.08);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--color-ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1;
}

.hero-metrics span {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.25;
}

.hero-copy .hero-metrics {
  opacity: 0;
  animation: hero-reveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 230ms forwards;
}

.screenshot {
  position: relative;
}

.floating-tool {
  position: absolute;
  display: inline-flex;
  gap: 0.48rem;
  align-items: center;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(10, 102, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  font-size: clamp(0.72rem, 1.45vw, 0.9rem);
  line-height: 1;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
  animation: float-soft 5.4s ease-in-out infinite;
}

.floating-tool span {
  display: inline-grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.floating-tool-top {
  top: 9%;
  left: 5%;
}

.floating-tool-bottom {
  right: 5%;
  bottom: 10%;
  animation-delay: 1.1s;
}

.momentum-strip {
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid rgba(10, 102, 255, 0.15);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.momentum-track {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  align-items: center;
  padding: 0.72rem 1rem;
  animation: marquee 24s linear infinite;
}

.momentum-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-primary-strong);
  font-size: 0.92rem;
  font-weight: 850;
  white-space: nowrap;
}

.momentum-track span::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 0 0 rgba(10, 102, 255, 0.38);
  animation: pulse-dot 2.2s ease-in-out infinite;
}

.transformation-section {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(10, 102, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 15%, rgba(10, 102, 255, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

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

.before-after-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.05rem, 2.5vw, 1.45rem);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 42px rgba(31, 72, 126, 0.1);
}

.before-card {
  border: 1px solid rgba(100, 116, 139, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(241, 245, 249, 0.78));
}

.after-card {
  border: 1px solid rgba(10, 102, 255, 0.22);
  background: linear-gradient(135deg, rgba(232, 244, 255, 0.96), rgba(245, 240, 255, 0.82));
}

.before-after-card h3 {
  margin-top: 0.65rem;
}

.before-after-card ul {
  margin-bottom: 0;
}

.pill-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 0.32rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 102, 255, 0.1);
  color: var(--color-primary-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-showcase .feature-card-pro {
  min-height: 100%;
  background:
    radial-gradient(circle at 88% 12%, rgba(10, 102, 255, 0.12), transparent 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.82));
}

.feature-card-pro::after {
  position: absolute;
  inset: auto -30% -42% 18%;
  height: 8rem;
  content: "";
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 68%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.feature-card-pro:hover::after {
  opacity: 0.95;
  transform: scale(1.3);
}

.feature-spark {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(10, 102, 255, 0.2);
}

.site-nav a:last-child {
  background: linear-gradient(135deg, var(--color-primary), #3aa0ff);
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 102, 255, 0.18);
}

.site-nav a:last-child:hover {
  background: linear-gradient(135deg, var(--color-primary-strong), var(--color-primary));
  color: #fff;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(10, 102, 255, 0.34);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(10, 102, 255, 0);
  }
}

@media (max-width: 900px) {
  .hero-premium h1 {
    max-width: 100%;
  }

  .hero-metrics,
  .transformation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-metrics {
    gap: 0.55rem;
  }

  .floating-tool {
    position: static;
    margin: 0.65rem;
  }

  .screenshot {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb,
  .floating-tool,
  .momentum-track,
  .momentum-track span::before {
    animation: none !important;
  }
}

/* Premium inner-page polish */
.premium-page-container {
  max-width: var(--container-wide);
}

.page-hero-premium {
  min-height: 0;
  margin-bottom: 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(10, 102, 255, 0.18), transparent 16rem),
    radial-gradient(circle at 18% 88%, rgba(124, 58, 237, 0.12), transparent 14rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.97) 0%, rgba(238, 246, 255, 0.86) 52%, rgba(232, 239, 255, 0.78) 100%);
  box-shadow: var(--shadow-card);
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(1.25rem, 4vw, 2rem);
  align-items: stretch;
}

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

.premium-hero-copy h1 {
  max-width: 13ch;
  margin-top: 0;
  background: linear-gradient(120deg, #06111f 0%, #0a66ff 54%, #7c3aed 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.legal-hero .premium-hero-copy h1 {
  max-width: 16ch;
}

.premium-hero-copy > .eyebrow,
.premium-hero-copy h1,
.premium-hero-copy .lead,
.premium-hero-copy .button-row,
.premium-hero-panel,
.premium-summary-box,
.premium-card-grid > *,
.support-layout > *,
.legal-cta,
.feedback-card {
  opacity: 0;
  animation: hero-reveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.premium-hero-copy h1 { animation-delay: 90ms; }
.premium-hero-copy .lead { animation-delay: 180ms; }
.premium-hero-copy .button-row { animation-delay: 270ms; }
.premium-hero-panel { animation-delay: 260ms; }
.premium-summary-box { animation-delay: 120ms; }
.premium-card-grid > *:nth-child(1),
.support-layout > *:nth-child(1) { animation-delay: 150ms; }
.premium-card-grid > *:nth-child(2),
.support-layout > *:nth-child(2) { animation-delay: 220ms; }
.premium-card-grid > *:nth-child(3) { animation-delay: 290ms; }
.premium-card-grid > *:nth-child(4) { animation-delay: 360ms; }
.premium-card-grid > *:nth-child(n+5) { animation-delay: 430ms; }
.legal-cta,
.feedback-card { animation-delay: 480ms; }

.premium-hero-panel {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: clamp(1rem, 2.6vw, 1.25rem);
  border: 1px solid rgba(10, 102, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px rgba(31, 72, 126, 0.1);
  backdrop-filter: blur(16px);
}

.panel-stat {
  padding: 0.95rem;
  border: 1px solid rgba(10, 102, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 246, 255, 0.72));
}

.panel-stat strong,
.panel-stat span {
  display: block;
}

.panel-stat strong {
  color: var(--color-ink);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1;
}

.panel-stat span {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.25;
}

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

.premium-card-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card-grid .card,
.legal-grid .card {
  min-height: 100%;
}

.feature-card-pro h2,
.feature-card-pro h3 {
  position: relative;
  z-index: 1;
}

.feature-card-pro p,
.feature-card-pro ul,
.feature-card-pro .muted {
  position: relative;
  z-index: 1;
}

.premium-trust-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 102, 255, 0.1), transparent 12rem),
    rgba(255, 255, 255, 0.8);
}

.feedback-card {
  margin-top: clamp(1.5rem, 4vw, 2rem);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1rem;
  align-items: start;
}

.support-side-stack {
  display: grid;
  gap: 1rem;
}

.premium-form-card {
  padding: clamp(1.25rem, 3vw, 1.7rem);
}

.premium-summary-box {
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 1.65rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 12%, rgba(124, 58, 237, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.78));
}

.premium-summary-box h2 {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  position: absolute;
  top: 0.18rem;
  left: 0;
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.legal-grid {
  margin-top: 1rem;
}

.legal-grid .feature-spark {
  min-width: 2.35rem;
  padding-inline: 0.4rem;
}

.legal-cta {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .split-hero,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .premium-hero-copy h1,
  .legal-hero .premium-hero-copy h1 {
    max-width: 100%;
  }

  .premium-hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-card-grid.four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .premium-card-grid,
  .premium-card-grid.four-up,
  .premium-hero-panel {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-hero-copy > .eyebrow,
  .premium-hero-copy h1,
  .premium-hero-copy .lead,
  .premium-hero-copy .button-row,
  .premium-hero-panel,
  .premium-summary-box,
  .premium-card-grid > *,
  .support-layout > *,
  .legal-cta,
  .feedback-card {
    opacity: 1;
    animation: none !important;
  }
}
