:root {
  --paper: #f7f5ef;
  --paper-2: #fffdfa;
  --ink: #15142f;
  --ink-2: #252348;
  --muted: #6f6b80;
  --line: #e4dfd3;
  --violet: #4b3fb0;
  --violet-2: #6d5fd6;
  --gold: #d7ae57;
  --cyan: #2a91a8;
  --sage: #e8efe8;
  --shadow: 0 28px 80px rgba(21, 20, 47, 0.18);
  --soft-shadow: 0 18px 54px rgba(21, 20, 47, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

.site-header {
  position: fixed;
  inset: 16px 24px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 10px 34px rgba(21, 20, 47, 0.08);
  color: var(--ink);
  backdrop-filter: blur(18px);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-header.is-elevated {
  background: rgba(255, 253, 250, 0.9);
  box-shadow: 0 18px 44px rgba(21, 20, 47, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(21, 20, 47, 0.18);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--violet);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 14px 28px rgba(21, 20, 47, 0.18);
}

.button {
  min-height: 54px;
  padding: 0 22px;
}

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

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 42px rgba(21, 20, 47, 0.24);
}

.button.primary:hover,
.nav-cta:hover {
  background: #23204d;
}

.button.secondary {
  border-color: rgba(75, 63, 176, 0.18);
  background: rgba(255, 253, 250, 0.74);
  color: var(--ink);
}

.button.light {
  background: #fffdfa;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px 7vw 64px;
  background-color: #ede9df;
  background-image: url("assets/scissorcv-product-clean.png");
  background-position: 62% center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(760px, 62%);
  background: rgba(247, 245, 239, 0.9);
  box-shadow: 110px 0 130px rgba(247, 245, 239, 0.82);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(21, 20, 47, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(610px, 100%);
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 8.6vw, 112px);
  font-weight: 880;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--ink-2);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 680;
  line-height: 1.15;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(570px, 100%);
  margin: 38px 0 0;
}

.hero-metrics div {
  padding: 16px 0 0;
  border-top: 1px solid rgba(21, 20, 47, 0.18);
}

.hero-metrics dt {
  font-size: 30px;
  font-weight: 880;
  line-height: 1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.signal-band {
  min-height: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 0 7vw;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.signal-band p {
  margin: 0;
  color: #dedbf0;
  font-size: 14px;
  font-weight: 620;
}

.marquee {
  display: flex;
  gap: 30px;
  min-width: 0;
  color: #fffdfa;
  font-weight: 800;
  white-space: nowrap;
}

.marquee span:nth-child(2n) {
  color: #e5c46e;
}

.section {
  padding: 116px 7vw;
}

.intro,
.faq,
.site-footer {
  background: var(--paper-2);
}

.intro-grid,
.privacy-layout,
.pricing,
.product-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: min(7vw, 72px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 870;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.08;
}

.intro-grid p,
.strip-copy p,
.privacy-copy p,
.pricing-copy p,
.install-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.36;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 76px auto 0;
}

.step-card {
  min-height: 264px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.72);
  box-shadow: 0 12px 36px rgba(21, 20, 47, 0.05);
}

.step-card:nth-child(2) {
  background: #f1eff9;
}

.step-card:nth-child(3) {
  background: #f7f0df;
}

.step-num {
  color: var(--violet);
  font-size: 13px;
  font-weight: 850;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.product-strip {
  max-width: none;
  margin: 0;
  background: #ecebea;
}

.strip-copy {
  align-self: center;
  max-width: 540px;
}

.strip-copy p {
  margin-top: 26px;
}

.strip-visual {
  overflow: hidden;
  border: 1px solid rgba(21, 20, 47, 0.11);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.strip-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 48% 45%;
}

.privacy {
  background: var(--paper);
}

.privacy-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(21, 20, 47, 0.16);
}

.privacy-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(21, 20, 47, 0.16);
}

.privacy-list strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.privacy-list span {
  color: var(--muted);
}

.pricing {
  max-width: none;
  margin: 0;
  background: #16142f;
  color: #fffdfa;
}

.pricing .section-kicker,
.pricing .price-label {
  color: var(--gold);
}

.pricing-copy p {
  margin-top: 26px;
  color: #d9d5e7;
}

.price-panel {
  justify-self: end;
  width: min(430px, 100%);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.price-panel strong {
  display: block;
  margin: 6px 0 16px;
  color: #fffdfa;
  font-size: 76px;
  line-height: 1;
}

.price-panel p {
  margin: 0 0 28px;
  color: #dfdced;
}

.faq {
  max-width: none;
}

.faq > .section-kicker,
.faq > h2,
.faq-list {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.faq h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 25px 0;
  font-size: 22px;
  font-weight: 780;
}

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

details p {
  max-width: 780px;
  margin: -8px 0 28px;
  color: var(--muted);
}

.install {
  padding: 112px 7vw;
  background: #111026;
  color: #fffdfa;
}

.install-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.install h2 {
  max-width: 820px;
  margin-bottom: 24px;
}

.install-inner p:not(.eyebrow) {
  max-width: 680px;
  color: #d8d5e7;
}

.install .button {
  margin-top: 36px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 7vw;
  color: var(--muted);
}

.small-brand {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.policy {
  max-width: 880px;
  margin: 0 auto;
  padding: 124px 22px 86px;
}

.policy h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.98;
}

.policy h2 {
  margin: 46px 0 12px;
  font-size: 28px;
  line-height: 1.12;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 20px;
}

.policy .back {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--violet);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    inset: 10px 12px auto;
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86svh;
    padding: 104px 22px 54px;
    background-position: 67% center;
  }

  .hero::before {
    width: 100%;
    background: rgba(247, 245, 239, 0.9);
    box-shadow: none;
  }

  .hero-copy {
    width: min(560px, 100%);
  }

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

  .intro-grid,
  .privacy-layout,
  .pricing,
  .product-strip,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .signal-band {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .marquee {
    overflow: auto;
    gap: 22px;
  }

  .section,
  .install {
    padding: 82px 22px;
  }

  .step-grid {
    margin-top: 44px;
  }

  .product-strip,
  .pricing {
    gap: 38px;
  }

  .price-panel {
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 8px 9px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
  }

  .hero {
    padding-top: 96px;
    background-position: 70% center;
  }

  .hero::before {
    background: rgba(247, 245, 239, 0.98);
  }

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

  .hero-lede {
    font-size: 20px;
  }

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

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

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

  .privacy-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  summary {
    font-size: 19px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
