:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--gray-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  background: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 22%;
  background: var(--orange);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.brand-mark svg {
  width: 70%;
  height: 70%;
}

.nav-link {
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--gray-900);
}

.hero {
  background: #000;
  color: #fff;
  padding-block: 5rem;
}

.hero-content {
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.05);
  padding: 0.5rem 1rem;
  color: #e5e7eb;
  font-size: 0.875rem;
}

.eyebrow svg,
.feature-icon svg,
.button svg,
.back-link svg {
  flex: 0 0 auto;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.text-orange {
  color: var(--orange);
}

.hero-copy {
  max-width: 48rem;
  margin: 2rem auto 0;
  color: var(--gray-400);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.button {
  display: inline-flex;
  min-width: 200px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  padding: 1.25rem 2rem;
  transition: background-color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 64rem;
  margin: 5rem auto 0;
}

.feature-card {
  border: 1px solid var(--zinc-800);
  border-radius: 12px;
  background: rgba(24, 24, 27, 0.5);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.feature-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}

.feature-card h3 {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.4;
}

.feature-card p {
  margin: 1rem 0 0;
  color: var(--gray-400);
  line-height: 1.65;
}

.cta {
  background: var(--orange);
  color: #fff;
  padding-block: 5rem;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  line-height: 1.25;
}

.cta p {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  min-width: 160px;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  border-radius: 6px;
  background: #fff;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  transition: background-color 160ms ease;
}

.cta-button:hover {
  background: var(--gray-100);
}

.footer {
  border-top: 1px solid var(--gray-200);
  background: #fff;
  padding-block: 3rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-main p,
.footer-bottom p,
.footer-bottom a,
.privacy-footer p,
.privacy-footer a {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.privacy-main {
  max-width: 56rem;
  padding-block: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  transition: color 160ms ease;
}

.back-link:hover {
  color: var(--gray-900);
}

.privacy-main h1 {
  margin: 0 0 2rem;
  color: var(--gray-900);
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  line-height: 1.25;
}

.policy {
  display: grid;
  gap: 1.5rem;
}

.policy p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}

.policy section {
  display: grid;
  gap: 1rem;
}

.policy h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: 1.25rem;
  line-height: 1.4;
}

.policy ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-600);
}

.policy a {
  color: var(--orange);
}

.policy a:hover {
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 3rem;
}

.privacy-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: center;
}

.not-found h1 {
  display: inline-block;
  margin: 0 20px 0 0;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0 23px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 49px;
  vertical-align: top;
}

.not-found h2 {
  display: inline-block;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 49px;
}

@media (min-width: 768px) {
  .hero {
    padding-block: 8rem;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

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

  .footer-bottom,
  .privacy-footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
