:root {
  --bg: #060707;
  --bg-elevated: #101313;
  --panel: #151918;
  --panel-2: #1d2320;
  --text: #f4f1e8;
  --muted: #aeb4ad;
  --subtle: #69716c;
  --line: rgba(244, 241, 232, 0.14);
  --accent: #66bdb5;
  --accent-strong: #7ed8cf;
  --green: #67c083;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(102, 189, 181, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 189, 181, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 4%, rgba(102, 189, 181, 0.18), transparent 28rem),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto;
  color: var(--text);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

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

.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(11, 13, 13, 0.74);
  border-radius: var(--radius);
}

.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.88rem;
  border-radius: calc(var(--radius) - 2px);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: 0;
}

.nav-toggle {
  display: none;
}

.section-grid,
.section-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-band {
  padding: clamp(58px, 7vw, 92px) 0;
}

.hero {
  min-height: calc(100vh - 74px);
  padding-top: clamp(18px, 3vw, 34px);
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5.2vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.35vw, 4.1rem);
}

h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.03rem;
  letter-spacing: 0;
}

.hero-subhead,
.section-heading p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  border-radius: var(--radius);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button-primary {
  background: var(--accent);
  color: #041312;
}

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

.hero-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-specs div {
  min-width: 0;
  padding: 11px;
  background: rgba(12, 14, 14, 0.9);
  text-align: center;
}

.hero-specs dt {
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-specs dd {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.16);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.18), transparent 38%),
    linear-gradient(0deg, rgba(6, 7, 7, 0.74), transparent 48%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.detail-card span,
.contact-card span {
  display: block;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0 auto;
  text-align: center;
}

.problem-grid,
.feature-grid,
.use-case-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-grid article,
.feature-grid article {
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(29, 35, 32, 0.94), rgba(13, 15, 15, 0.96));
  text-align: center;
}

.problem-grid p,
.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon {
  display: none;
  position: relative;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid rgba(102, 189, 181, 0.46);
  background: rgba(102, 189, 181, 0.08);
  border-radius: 7px;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon::before {
  inset: 10px;
  border: 2px solid var(--accent);
}

.icon::after {
  width: 12px;
  height: 2px;
  right: -7px;
  bottom: 8px;
  background: var(--green);
}

.image-strip {
  display: grid;
  gap: 14px;
}

.image-strip-photos {
  grid-template-columns: 1fr 1fr;
}

.image-strip-photos .detail-card,
.image-strip-photos .photo-card {
  min-height: 210px;
}

.photo-card,
.gallery-grid figure,
.testing-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(18, 21, 20, 0.94);
  border-radius: var(--radius);
}

.photo-card img,
.gallery-grid img,
.testing-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center center;
}

.detail-card,
.testing-panel,
.contact-card,
.waitlist-form,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(24, 29, 27, 0.92), rgba(9, 11, 11, 0.94));
  border-radius: var(--radius);
}

.price-strip {
  padding-top: 0;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(102, 189, 181, 0.3);
  background: linear-gradient(145deg, rgba(102, 189, 181, 0.16), rgba(16, 19, 19, 0.94));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.price-card h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.price-card p:last-child {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: var(--muted);
}

.detail-card {
  padding: clamp(22px, 4vw, 36px);
  display: grid;
  align-content: center;
  text-align: center;
}

.detail-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.testing-panel {
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
  text-align: center;
}

.testing-photo {
  height: 190px;
  margin-bottom: 22px;
}

.status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.status-line span {
  width: 12px;
  height: 12px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(103, 192, 131, 0.85);
}

.testing-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  list-style-position: inside;
}

.use-case-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding-bottom: 8px;
}

.use-case-grid span {
  display: flex;
  min: 0;
  min-width: clamp(220px, 26vw, 340px);
  min-height: 108px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(18, 21, 20, 0.94);
  color: var(--text);
  font-weight: 850;
  border-radius: var(--radius);
  scroll-snap-align: start;
  text-align: center;
  white-space: nowrap;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -10px 0 18px;
}

.slider-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
}

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

.gallery-grid figure {
  min-height: 300px;
}

.early-access {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 6px;
  max-width: 360px;
  margin: 28px auto 0;
  padding: 18px;
  text-align: center;
}

.contact-card a {
  color: var(--text);
  font-weight: 900;
}

.contact-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-methods a {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius);
}

.contact-methods span {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(244, 241, 232, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
  padding: 12px;
  border-radius: var(--radius);
}

select option {
  color: #111;
}

.page-hero {
  min-height: auto;
  align-items: end;
  padding-top: clamp(42px, 6vw, 76px);
}

.page-hero .hero-visual,
.page-hero .hero-visual img {
  min-height: 420px;
}

.specs-hero {
  padding-bottom: clamp(22px, 4vw, 46px);
}

.spec-table,
.pricing-grid,
.page-card-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
}

.spec-table {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-item,
.pricing-card,
.page-card-grid article {
  padding: clamp(20px, 3vw, 32px);
  background: linear-gradient(145deg, rgba(29, 35, 32, 0.94), rgba(13, 15, 15, 0.96));
  text-align: center;
}

.spec-item span,
.pricing-card span {
  display: block;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-item strong,
.pricing-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1;
  text-wrap: balance;
}

.spec-item p,
.pricing-card p,
.page-card-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(102, 189, 181, 0.18), rgba(13, 15, 15, 0.96));
}

.page-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(102, 189, 181, 0.22);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-success {
  color: var(--green);
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 320px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  color: var(--muted);
}

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

@media (max-width: 980px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 380px;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    place-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(6, 7, 7, 0.82);
    border-radius: var(--radius);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-specs,
  .waitlist-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid,
  .feature-grid,
  .gallery-grid,
  .spec-table,
  .pricing-grid,
  .page-card-grid,
  .image-strip-photos {
    grid-template-columns: 1fr;
  }

  .price-card {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .problem-grid article,
  .feature-grid article {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 300px;
  }

  .hero {
    padding-top: 26px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
