:root {
  --bg: #ffffff;
  --text: #050505;
  --muted: #5b5b63;
  --accent: #111111;
  --accent-2: #e54040;
  --border: rgba(5, 5, 5, 0.08);
  --radius: 18px;
  --shadow-soft: 0 40px 80px rgba(5, 5, 5, 0.08);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 32px clamp(24px, 5vw, 72px) 64px;
  background-image: radial-gradient(circle at 10% -10%, rgba(229, 64, 64, 0.12), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(17, 17, 17, 0.08), transparent 50%);
  background-repeat: no-repeat;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

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

.brand img {
  width: 45px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy span {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--accent-2);
}

.primary-btn {
  background: var(--accent-2);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(229, 64, 64, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.primary-btn:hover,
.primary-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(229, 64, 64, 0.4);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin: 14px 0 12px;
}

.lead {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 22px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.cta-group--spaced {
  margin-top: 24px;
}

.ghost-btn {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.trust-bar span {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.02);
}

.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  background: #fff;
  position: relative;
  overflow: hidden;
}

.insight-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px dashed rgba(5, 5, 5, 0.08);
  pointer-events: none;
}

.insight-card img {
  width: 72px;
  margin-bottom: 20px;
}

.insight-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

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

.video-section {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(229, 64, 64, 0.07), transparent);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.video-wrapper {
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  position: relative;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.value-card h4 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.value-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.technical {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(24px, 3vw, 48px);
  background: rgba(5, 5, 5, 0.02);
}

.technical h3 {
  margin-top: 0;
  font-size: 1.7rem;
}

.technical-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.technical-list li {
  list-style: none;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.pricing {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 56px);
  box-shadow: var(--shadow-soft);
}

.pricing h3 {
  margin-top: 0;
  font-size: 2rem;
}

.price-tag {
  font-size: clamp(3rem, 5vw, 4rem);
  margin: 0;
  font-weight: 800;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 0.95rem;
}

.pricing-table th,
.pricing-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.pricing-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.cta-final {
  text-align: center;
  padding: clamp(32px, 4vw, 60px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  font-size: 0.95rem;
  color: var(--muted);
}

footer a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.waitlist {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  max-width: 480px;
}

.waitlist label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.waitlist .form-row {
  display: flex;
  gap: 10px;
}

.waitlist input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
}

.waitlist button {
  border: none;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
}

.form-status {
  font-size: 0.9rem;
  margin-top: 10px;
  color: var(--muted);
}

.form-status.success {
  color: #0a7a29;
}

.form-status.error {
  color: #b00020;
}

.policy-hero {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-hero h1 {
  margin-bottom: 0;
}

.policy-meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-section {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 32px);
}

.policy-section h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.policy-subsection h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.policy-section ul,
.policy-section ol {
  margin: 0 0 0 1.25rem;
}

.policy-section li {
  margin-bottom: 8px;
  color: var(--muted);
}

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

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

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist .form-row {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-btn {
    transition: none;
  }
}
