:root {
  --ink: #070713;
  --navy: #070713;
  --navy-2: #0d1024;
  --panel: #11162b;
  --panel-2: #171d36;
  --line-dark: rgba(255, 255, 255, 0.12);
  --muted: rgba(255, 255, 255, 0.66);
  --accent: #176bff;
  --cyan: #7fd8ff;
  --blue: #176bff;
  --violet: #7057ff;
  --starlight: #c9d6ff;
  --danger: #ff5c6c;
  --success: #7fd8ff;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-full: 999px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(112, 87, 255, 0.22), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(23, 107, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 42%, rgba(127, 216, 255, 0.07), transparent 42%),
    var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 24px 0;
  background: linear-gradient(180deg, rgba(7, 7, 19, 0.94), rgba(7, 7, 19, 0));
}

.nav-shell {
  max-width: 1240px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(8, 10, 28, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand small {
  opacity: 0.58;
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links a {
  padding: 8px 13px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 750;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  box-shadow: 0 18px 42px rgba(23, 107, 255, 0.28);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 24px;
}

.dark-section {
  position: relative;
  color: #fff;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(112, 87, 255, 0.24), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(23, 107, 255, 0.2), transparent 34%),
    radial-gradient(circle at 52% 18%, rgba(127, 216, 255, 0.06), transparent 38%);
  opacity: 0.9;
}

.dark-section > * {
  position: relative;
}

.hero {
  max-width: none;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 54px;
  margin-top: -88px;
  padding: 154px max(24px, calc((100vw - 1320px) / 2 + 24px)) 82px;
  background:
    linear-gradient(180deg, rgba(7, 7, 19, 0.98), rgba(9, 13, 33, 0.98) 78%, rgba(7, 7, 19, 1) 100%),
    var(--navy);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(127, 216, 255, 0.54);
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.55rem, 6.15vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.078em;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(120deg, #fff, var(--starlight) 26%, var(--violet) 56%, var(--blue) 80%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

.phase-note {
  max-width: 650px;
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.phase-note strong {
  color: #fff;
}

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

.command-center {
  position: relative;
  display: grid;
  grid-template-columns: 166px 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(9, 12, 31, 0.84);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}

.app-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 24px 16px;
  border-right: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, 0.2);
}

.app-sidebar strong {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.app-sidebar span {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 750;
}

.app-sidebar .active {
  color: #fff;
  background: linear-gradient(135deg, rgba(112, 87, 255, 0.95), rgba(23, 107, 255, 0.84));
}

.app-main {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 20px;
}

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

.status-row article,
.checklist,
.chart-card,
.device-stage {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.status-row article {
  padding: 16px;
}

.status-row span,
.checklist span,
.checklist em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 750;
}

.status-row strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.device-stage {
  min-height: 226px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.25fr;
  align-items: end;
  gap: 14px;
  padding: 18px;
}

.phone-frame,
.tablet-frame,
.desktop-frame {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(127, 216, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(112, 87, 255, 0.16), rgba(23, 107, 255, 0.1));
}

.phone-frame {
  min-height: 170px;
  border-radius: 26px;
}

.tablet-frame {
  min-height: 190px;
}

.desktop-frame {
  min-height: 150px;
}

.phone-frame span,
.tablet-frame span,
.desktop-frame span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
}

.phone-frame i,
.tablet-frame i,
.desktop-frame i {
  display: block;
  height: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.checklist,
.chart-card {
  padding: 18px;
}

.checklist strong,
.chart-card strong {
  display: block;
  margin-bottom: 14px;
}

.checklist p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line-dark);
}

.checklist em {
  color: var(--cyan);
}

.chart-card svg {
  width: 100%;
  height: 132px;
  color: var(--cyan);
  filter: drop-shadow(0 0 20px rgba(127, 216, 255, 0.2));
}

.compact,
.tools,
.faq-waitlist,
.before-after {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1320px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1320px) / 2 + 24px));
  background: var(--navy);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-self: center;
}

.section-heading h2,
.before-after h2,
.faq h2,
.waitlist h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.workflow-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.workflow-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translate(50%, -50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  font-weight: 800;
}

.workflow-grid span,
.use-case-grid span,
.roadmap-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
}

.workflow-grid strong,
.use-case-grid strong,
.roadmap-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.workflow-grid p,
.roadmap-grid p,
.use-case-grid p,
.before-card p,
.after-card p,
.faq p,
.waitlist > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.integration-row,
.tool-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.integration-row span,
.tool-strip span {
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
}

.use-cases-section {
  padding-top: 90px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(112, 87, 255, 0.16), transparent 34%),
    var(--navy);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.use-case-grid article,
.before-card,
.after-card,
.panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.use-case-grid article {
  min-height: 270px;
  padding: 28px;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 42px;
}

.before-after::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(23, 107, 255, 0.24);
}

.before-card,
.after-card {
  padding: 42px;
}

.after-card {
  background: linear-gradient(135deg, rgba(112, 87, 255, 0.16), rgba(23, 107, 255, 0.1));
  border-color: rgba(127, 216, 255, 0.2);
}

.before-after ul {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  list-style: none;
}

.before-after li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.before-after li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
}

.after-card li::before {
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

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

.roadmap-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
}

.roadmap-grid article.active {
  border-color: rgba(127, 216, 255, 0.32);
  background: linear-gradient(135deg, rgba(112, 87, 255, 0.18), rgba(23, 107, 255, 0.1));
}

.roadmap-grid small {
  display: inline-block;
  margin-top: 22px;
  padding: 7px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 18px;
  padding-top: 48px;
}

.faq,
.waitlist {
  padding: 38px;
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--cyan);
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin-top: 12px;
}

.waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

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

label {
  display: grid;
  gap: 7px;
}

label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
  outline: none;
  padding: 13px 14px;
  font-size: 0.92rem;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(127, 216, 255, 0.74);
  box-shadow: 0 0 0 4px rgba(127, 216, 255, 0.11);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

select option {
  background: var(--navy-2);
  color: #fff;
}

.form-message {
  display: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 850;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.waitlist small {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
  text-align: center;
}

.site-footer {
  max-width: none;
  margin: 0;
  padding: 42px max(24px, calc((100vw - 1320px) / 2 + 24px)) 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  background: var(--navy);
}

.site-footer div {
  display: flex;
  gap: 16px;
  font-weight: 850;
}

@media (max-width: 1120px) {
  .hero,
  .faq-waitlist,
  .before-after {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

  .command-center {
    grid-template-columns: 1fr;
    transform: none;
  }

  .app-sidebar {
    display: none;
  }

  .workflow-grid,
  .roadmap-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 10px 0;
  }

  .nav-shell {
    height: auto;
    padding: 12px;
  }

  .nav-links {
    display: none;
  }

  .section,
  .compact,
  .tools,
  .faq-waitlist,
  .before-after {
    padding: 72px 16px;
  }

  .hero {
    gap: 36px;
    padding: 132px 16px 76px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.35rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .command-center {
    min-height: auto;
    border-radius: 24px;
  }

  .app-main {
    padding: 14px;
  }

  .status-row,
  .dashboard-grid,
  .workflow-grid,
  .roadmap-grid,
  .use-case-grid,
  .form-grid,
  .device-stage {
    grid-template-columns: 1fr;
  }

  .workflow-grid article,
  .roadmap-grid article,
  .use-case-grid article {
    min-height: auto;
  }

  .workflow-grid article::after,
  .before-after::after {
    display: none;
  }

  .before-card,
  .after-card,
  .faq,
  .waitlist {
    padding: 28px;
  }

  .section-heading h2,
  .before-after h2,
  .faq h2,
  .waitlist h2 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
    letter-spacing: -0.06em;
  }

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

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