:root {
  color-scheme: light;
  --orange: #f15a24;
  --orange-dark: #c84518;
  --ink: #18202a;
  --muted: #5f6874;
  --line: #d8dde3;
  --steel: #edf1f4;
  --steel-dark: #c8d0d8;
  --white: #ffffff;
  --panel: #f8fafb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(24, 32, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  color: var(--orange);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-name {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--orange-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(24, 32, 42, 0.98), rgba(44, 54, 65, 0.9) 48%, rgba(241, 90, 36, 0.82)),
    radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.22), transparent 28%);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--white);
}

.product-figure {
  position: relative;
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
}

.product-figure::before {
  position: absolute;
  inset: 10%;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  filter: blur(34px);
}

.product-figure img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.split-section,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.07rem;
}

.copy-stack p {
  margin-bottom: 24px;
}

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

.stat-row div {
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.stat-row strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.1rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(24, 32, 42, 0.98), rgba(35, 44, 55, 0.96)),
    linear-gradient(90deg, transparent, rgba(241, 90, 36, 0.16));
  color: var(--white);
}

.dark-section h2 {
  max-width: 680px;
}

.dark-section p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 0.42em;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: var(--steel);
}

.contact-section p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--steel-dark);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-link:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
}

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

/* Legal / long-form pages (privacy.html) */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 40px);
}

.legal h1 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.legal .updated {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.legal h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.2;
}

.legal p,
.legal li {
  color: var(--ink);
  font-size: 1.03rem;
}

.legal ul {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal a {
  color: var(--orange-dark);
  font-weight: 700;
}

.back-link {
  display: inline-block;
  margin-top: 48px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header,
  .site-nav,
  .hero-actions,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .site-nav {
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-figure {
    justify-self: start;
    max-width: 360px;
  }

  .split-section,
  .section-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button,
  .contact-link {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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