:root {
  color-scheme: dark;
  --bg: #05080d;
  --bg-2: #0b111b;
  --surface: rgba(12, 18, 28, 0.78);
  --surface-solid: #0f1724;
  --surface-muted: rgba(255, 255, 255, 0.055);
  --text: #f6f9ff;
  --muted: #9aa8bc;
  --muted-2: #718095;
  --border: rgba(255, 255, 255, 0.11);
  --border-strong: rgba(116, 178, 255, 0.36);
  --accent: #58a6ff;
  --accent-2: #2f7dff;
  --accent-dark: #1764dd;
  --glow: rgba(48, 126, 255, 0.32);
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(48, 126, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(86, 183, 255, 0.18), transparent 24rem),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg), #070b12 54%, #05070b);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(to bottom, rgba(5, 8, 13, 0.08), rgba(5, 8, 13, 0.72)),
    radial-gradient(circle at 50% 20%, transparent, rgba(5, 8, 13, 0.68) 64%);
}

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

.site-header,
main,
footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(7, 11, 18, 0.72);
  padding: 10px 12px;
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 174px;
  height: 50px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a:hover,
.contact-section a:hover {
  color: var(--accent);
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 82px 0 92px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1020px;
  margin-bottom: 28px;
  font-size: clamp(54px, 9vw, 124px);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 730;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 720;
  line-height: 1.15;
}

.lede {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.36;
}

.hero-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 14, 23, 0.64);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow), 0 0 90px rgba(48, 126, 255, 0.14);
}

.hero-mark img {
  display: block;
  width: min(230px, 52vw);
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-mark span,
.product-lockup span {
  color: var(--text);
  font-size: 15px;
  font-weight: 780;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 720;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button.primary {
  background: linear-gradient(180deg, #72b6ff, var(--accent-2));
  border-color: rgba(133, 190, 255, 0.72);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(47, 125, 255, 0.32);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.075);
}

.statement {
  padding: 74px 0;
  border-bottom: 1px solid var(--border);
}

.statement p {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.6vw, 64px);
  font-weight: 690;
  line-height: 1.06;
  letter-spacing: 0;
}

.grid-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  padding: 84px 0;
  border-bottom: 1px solid var(--border);
}

.section-copy {
  position: sticky;
  top: 28px;
  align-self: start;
}

.product-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 12px 8px 8px;
}

.product-lockup img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: contain;
}

.cards {
  display: grid;
  gap: 14px;
}

.cards article {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--surface);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.cards span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 760;
}

.cards p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 44px;
  align-items: start;
  padding: 84px 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    var(--surface);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-honey {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 720;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(2, 6, 12, 0.58);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 3px solid color-mix(in srgb, var(--accent) 16%, transparent);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.legal-page {
  max-width: 860px;
  padding: 82px 0;
}

.legal-page h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
}

.legal-page section {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-page ul {
  margin: 0;
  padding-left: 20px;
}

.legal-page strong {
  color: var(--text);
}

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

  nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0;
  }

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

  .section-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(100vw - 24px, 1180px);
  }

  h1 {
    font-size: clamp(46px, 15vw, 76px);
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-form,
  .cards article {
    padding: 20px;
  }
}
