:root {
  --ink: #111318;
  --ink-soft: #2f353d;
  --paper: #f7f3ea;
  --paper-2: #fffaf0;
  --mist: #ece6d9;
  --line: rgba(17, 19, 24, 0.16);
  --line-dark: rgba(255, 250, 240, 0.18);
  --charcoal: #14171d;
  --charcoal-2: #20252d;
  --steel: #354153;
  --teal: #18a887;
  --teal-dark: #0c6f5e;
  --mint: #7ef1cc;
  --amber: #e7ad42;
  --red: #d95763;
  --blue: #4169d8;
  --violet: #8f5fd4;
  --white: #fffdf8;
  --muted: #727986;
  --shadow: 0 24px 70px rgba(9, 11, 15, 0.24);
  --radius: 8px;
  color-scheme: light;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(247, 243, 234, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 20px;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 8px;
  color: currentColor;
  font-weight: 700;
  font-size: 14px;
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.13);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a.is-active {
  background: rgba(17, 19, 24, 0.08);
}

.site-nav .nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #06140f;
  background: var(--mint);
  opacity: 1;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: rgba(24, 168, 135, 0.42);
  background: rgba(24, 168, 135, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 156px);
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 72px) 76px;
  background: #101318;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 19, 24, 0.95) 0%, rgba(16, 19, 24, 0.76) 38%, rgba(16, 19, 24, 0.20) 100%),
    linear-gradient(180deg, rgba(16, 19, 24, 0.08), rgba(16, 19, 24, 0.42));
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(120deg, #101318 0%, #1d2128 44%, #302722 100%);
}

.desk-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: perspective(700px) rotateX(58deg) translateY(170px) scale(1.3);
  transform-origin: bottom;
}

.dashboard-window,
.floating-feed,
.command-strip,
.product-shot {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.product-shot[hidden],
.screenshots[hidden] {
  display: none !important;
}

.dashboard-window {
  top: 17%;
  right: 8%;
  width: min(650px, 52vw);
  min-height: 380px;
  background: rgba(21, 25, 32, 0.92);
  backdrop-filter: blur(10px);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--teal);
}

.window-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 58px minmax(180px, 260px) 1fr;
  gap: 16px;
  padding: 18px;
}

.dashboard-sidebar {
  display: grid;
  gap: 10px;
  align-content: start;
}

.dashboard-sidebar span {
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar .active {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.camera-list {
  display: grid;
  gap: 10px;
}

.camera-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  min-width: 0;
}

.camera-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.camera-row b {
  padding: 4px 7px;
  border-radius: 999px;
  color: #0a1511;
  background: var(--teal);
  font-size: 10px;
  flex: 0 0 auto;
}

.camera-row.ring b {
  background: var(--blue);
  color: #eef3ff;
}

.camera-row.sound b {
  background: var(--amber);
}

.camera-row.muted b {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.preview-pane {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(24, 168, 135, 0.24), transparent 44%),
    linear-gradient(35deg, rgba(217, 87, 99, 0.25), transparent 38%),
    #0a0d12;
}

.preview-pane::before,
.feed-image::before {
  position: absolute;
  inset: 12%;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.preview-pane::after,
.feed-image::after {
  position: absolute;
  right: 14%;
  bottom: 12%;
  width: 34%;
  height: 30%;
  content: "";
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.12);
  clip-path: polygon(0 100%, 22% 34%, 48% 62%, 72% 12%, 100% 100%);
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: scan 4.5s linear infinite;
}

.feed-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.floating-feed {
  width: 260px;
  min-height: 174px;
  overflow: hidden;
  background: rgba(8, 10, 14, 0.92);
}

.feed-one {
  right: 39%;
  bottom: 15%;
  animation: floatOne 8s ease-in-out infinite;
}

.feed-two {
  right: 5%;
  bottom: 8%;
  animation: floatTwo 9s ease-in-out infinite;
}

.feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.feed-top b {
  color: var(--red);
  font-size: 11px;
}

.feed-image {
  position: relative;
  height: 104px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 8px),
    linear-gradient(140deg, rgba(65, 105, 216, 0.30), transparent 45%),
    #101820;
}

.feed-image.alt {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 10px),
    linear-gradient(150deg, rgba(231, 173, 66, 0.30), transparent 52%),
    #17140e;
}

.feed-controls {
  display: flex;
  gap: 8px;
  padding: 10px;
}

.feed-controls i {
  width: 34px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.command-strip {
  right: 8%;
  bottom: 32%;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(14px);
}

.command-strip button {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 23, 29, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.command-strip button.is-active {
  border-color: rgba(24, 168, 135, 0.78);
  background: rgba(24, 168, 135, 0.28);
}

.hero-shot {
  top: 17%;
  right: 5%;
  z-index: 2;
  width: min(710px, 50vw);
  margin: 0;
  overflow: hidden;
  background: rgba(8, 12, 18, 0.96);
  filter: brightness(1.12) contrast(1.04);
}

.hero-shot + .dashboard-window,
.hero-scene:has(.hero-shot:not([hidden])) .dashboard-window,
.hero-scene:has(.hero-shot:not([hidden])) .floating-feed,
.hero-scene:has(.hero-shot:not([hidden])) .command-strip {
  opacity: 0;
  pointer-events: none;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-shot figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.hero:has(.hero-shot:not([hidden])) .hero-content {
  max-width: min(720px, 44vw);
}

.hero:has(.hero-shot:not([hidden])) .hero-copy,
.hero:has(.hero-shot:not([hidden])) .trial-note,
.hero:has(.hero-shot:not([hidden])) .trust-row {
  max-width: min(700px, 44vw);
}

.hero:has(.hero-shot:not([hidden])) .hero-content::before {
  position: absolute;
  top: -18px;
  bottom: -22px;
  left: -22px;
  width: 3px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), var(--violet), var(--amber));
  box-shadow: 0 0 28px rgba(48, 220, 176, 0.38);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-width: 820px;
  min-width: 0;
}

.hero:has(.hero-shot:not([hidden])) h1 {
  font-size: clamp(56px, 5.2vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7ef1cc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy {
  max-width: min(660px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.22;
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

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

.button {
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #07130f;
  background: var(--teal);
  box-shadow: 0 16px 40px rgba(24, 168, 135, 0.28);
}

.button.download {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 16px;
}

.button.primary:hover {
  background: #31c29f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.30);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.wide {
  width: 100%;
}

.trial-note {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 38px 0 0;
}

.trust-row div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.trust-row dt {
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
}

.trust-row dd {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.problem,
.features,
.security,
.faq,
.uses,
.workflow,
.pricing,
.download-band,
.screenshots {
  padding: clamp(64px, 10vw, 116px) clamp(20px, 5vw, 72px);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  max-width: 1260px;
  margin: 0 auto 42px;
}

.section-header.compact {
  display: block;
  max-width: 850px;
  text-align: center;
}

.section-header.compact .eyebrow {
  margin-bottom: 12px;
}

.section-header h2 {
  max-width: 900px;
}

.problem-grid,
.feature-grid,
.use-strip,
.timeline,
.security-list,
.faq-list,
.price-layout,
.download-card,
.download-benefits,
.screenshot-grid {
  max-width: 1260px;
  margin: 0 auto;
}

.screenshots {
  background: var(--paper);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 14px;
  align-items: stretch;
}

.screenshots .product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-color: var(--line);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.screenshots .product-shot.large {
  grid-row: span 2;
}

.screenshots .product-shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.screenshots .product-shot:not(.large) img {
  aspect-ratio: 16 / 10;
}

.screenshots figcaption {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 23, 29, 0.96), rgba(20, 23, 29, 1));
}

.screenshots figcaption strong {
  font-size: 18px;
}

.screenshots figcaption span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.download-band {
  background:
    linear-gradient(135deg, rgba(24, 168, 135, 0.13), transparent 46%),
    var(--paper);
}

.download-card {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.download-card h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.download-card p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 18px;
}

.download-action-box {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(24, 168, 135, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(24, 168, 135, 0.12), rgba(24, 168, 135, 0.04)),
    #ffffff;
}

.download-action-box small {
  color: var(--muted);
  font-size: 13px;
}

.windows-badge {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #07130f;
  background: rgba(24, 168, 135, 0.18);
  font-size: 13px;
  font-weight: 950;
}

.download-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.download-benefits article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
}

.download-benefits strong,
.download-benefits span {
  display: block;
}

.download-benefits strong {
  font-size: 18px;
}

.download-benefits span {
  margin-top: 10px;
  color: var(--muted);
}

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

.problem-grid article,
.feature-grid article,
.use-strip article,
.timeline article,
.security-list div,
.price-panel,
.fit-panel {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.problem-grid article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.problem-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: #07130f;
  background: var(--amber);
  font-weight: 950;
}

.problem-grid p,
.feature-grid p,
.timeline p,
.security-copy p,
.security-list span,
.fit-panel p,
.faq-list p {
  color: rgba(255, 253, 248, 0.72);
}

.uses,
.pricing,
.workflow {
  background: var(--paper);
}

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

.use-strip article {
  min-height: 142px;
  padding: 22px;
  border-color: var(--line);
  background: var(--paper-2);
}

.use-strip strong,
.use-strip span {
  display: block;
}

.use-strip strong {
  font-size: 19px;
}

.use-strip span {
  margin-top: 12px;
  color: var(--muted);
}

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

.feature-grid article {
  min-height: 224px;
  padding: 21px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-grid article:nth-child(2n) {
  background: rgba(24, 168, 135, 0.10);
}

.feature-grid article:nth-child(3n) {
  background: rgba(231, 173, 66, 0.10);
}

.feature-grid h3 {
  margin-bottom: 14px;
}

.workflow {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline::before {
  position: absolute;
  top: 27px;
  right: 12%;
  left: 12%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

.timeline article {
  position: relative;
  min-height: 210px;
  padding: 78px 24px 24px;
  border-color: var(--line);
  background: var(--paper-2);
}

.timeline span {
  position: absolute;
  top: 18px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 22px;
  font-weight: 950;
}

.timeline p {
  color: var(--muted);
}

.security {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.security-copy,
.security-list {
  max-width: none;
}

.security-copy h2 {
  margin-bottom: 24px;
}

.security-copy p {
  max-width: 650px;
  font-size: 18px;
}

.security-list {
  display: grid;
  gap: 12px;
}

.security-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.security-list strong {
  color: var(--white);
  font-size: 18px;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(280px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-panel,
.fit-panel {
  border-color: var(--line);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.price-panel {
  padding: 28px;
}

.price-panel.highlight {
  border-color: rgba(24, 168, 135, 0.46);
}

.price-top {
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-top span {
  color: var(--teal-dark);
  font-weight: 950;
}

.price-top strong {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 64px;
  line-height: 1;
}

.price-top strong em {
  position: relative;
  color: var(--muted);
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
}

.price-top strong em::after {
  position: absolute;
  top: 50%;
  right: -4px;
  left: -4px;
  height: 3px;
  content: "";
  background: var(--red);
  transform: rotate(-9deg);
}

.price-top small,
.price-note {
  color: var(--muted);
}

.price-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-panel li {
  position: relative;
  padding-left: 26px;
}

.price-panel li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--teal);
}

.price-note {
  margin: 16px 0 0;
  font-size: 13px;
}

.fit-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
}

.fit-panel h3 + p {
  margin-top: 0;
}

.fit-panel p {
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.legal-page {
  background:
    linear-gradient(180deg, #060b12 0%, #07101a 48%, #0a111c 100%);
  color: var(--ink);
}

.legal-main {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 120px clamp(18px, 5vw, 48px) 72px;
}

.legal-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(160, 205, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(12, 22, 36, 0.92);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.legal-card h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(25px, 3vw, 34px);
}

.legal-card p,
.legal-card li {
  color: rgba(216, 226, 241, 0.78);
}

.legal-card a {
  color: var(--mint);
  font-weight: 850;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes floatOne {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes floatTwo {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(10px) rotate(-1deg);
  }
}

@media (max-width: 1060px) {
  .hero {
    align-items: flex-end;
    min-height: auto;
    padding-top: 420px;
  }

  .dashboard-window {
    top: 88px;
    right: 18px;
    left: 18px;
    width: auto;
    min-height: 292px;
  }

  .dashboard-body {
    grid-template-columns: 42px minmax(140px, 220px) 1fr;
    gap: 10px;
    padding: 12px;
  }

  .preview-pane {
    min-height: 208px;
  }

  .floating-feed,
  .command-strip {
    display: none;
  }

  .hero-shot {
    top: 88px;
    right: 18px;
    left: 18px;
    width: auto;
  }

  .problem-grid,
  .feature-grid,
  .use-strip,
  .timeline,
  .price-layout,
  .security,
  .download-card,
  .download-benefits,
  .screenshot-grid,
  .section-header {
    grid-template-columns: 1fr;
  }

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

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 11px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-2);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    min-height: 46px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    border-color: rgba(24, 168, 135, 0.42);
    background: rgba(24, 168, 135, 0.20);
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 360px 18px 52px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(16, 19, 24, 0.30) 0%, rgba(16, 19, 24, 0.86) 46%, rgba(16, 19, 24, 0.97) 100%);
  }

  .dashboard-window {
    top: 78px;
    right: 10px;
    left: 10px;
    max-width: calc(100vw - 20px);
    min-height: auto;
    overflow: hidden;
  }

  .hero-shot {
    top: 78px;
    right: 10px;
    left: 10px;
    max-width: calc(100vw - 20px);
  }

  .hero-shot figcaption {
    right: 9px;
    bottom: 9px;
    font-size: 11px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .dashboard-sidebar {
    display: none;
  }

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

  .preview-pane {
    min-height: 130px;
  }

  h1 {
    max-width: 330px;
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 36px;
  }

  .hero-content {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .hero .eyebrow {
    max-width: 330px;
  }

  .hero-copy {
    width: 100%;
    max-width: 330px;
    font-size: 19px;
  }

  .trial-note {
    max-width: 330px;
    font-size: 13px;
    overflow-wrap: normal;
  }

  .trust-row,
  .feature-grid,
  .use-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .button.download {
    min-height: 54px;
    padding-inline: 14px;
  }

  .hero-actions .secondary {
    min-height: 54px;
    padding-inline: 12px;
    font-size: 15px;
  }

  .problem,
  .features,
  .security,
  .faq,
  .uses,
  .workflow,
  .pricing,
  .download-band,
  .screenshots {
    padding: 56px 18px;
  }

  .problem-grid article,
  .feature-grid article,
  .use-strip article,
  .timeline article,
  .price-panel,
  .fit-panel {
    min-height: auto;
  }

  .price-top strong {
    flex-wrap: wrap;
    font-size: 52px;
  }

  .price-top strong em {
    font-size: 25px;
  }

  .download-card {
    padding: 24px 18px;
  }

  .download-card p {
    font-size: 16px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* Premium dark sales direction */
:root {
  --ink: #f7fbff;
  --ink-soft: #c7d2e5;
  --paper: #070d15;
  --paper-2: #0c1624;
  --mist: #172235;
  --line: rgba(160, 205, 255, 0.20);
  --line-dark: rgba(173, 213, 255, 0.18);
  --charcoal: #060b12;
  --charcoal-2: #0f1928;
  --steel: #263650;
  --teal: #30dcb0;
  --teal-dark: #86f4d6;
  --mint: #89f3d2;
  --amber: #f0c66d;
  --red: #ff668b;
  --blue: #5798ff;
  --violet: #ed70d6;
  --white: #fffdf8;
  --muted: #9facbf;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

body {
  background:
    linear-gradient(180deg, #060b12 0%, #07101a 42%, #0a111c 100%);
  color: var(--ink);
}

.site-header {
  color: var(--white);
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(137, 243, 210, 0.16);
  background: rgba(6, 11, 18, 0.82);
  color: var(--white);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.brand img {
  box-shadow:
    0 0 0 1px rgba(237, 112, 214, 0.30),
    0 16px 38px rgba(237, 112, 214, 0.20);
}

.site-nav a {
  color: rgba(255, 253, 248, 0.86);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a.is-active {
  color: var(--white);
  background: rgba(137, 243, 210, 0.10);
}

.site-nav .nav-cta,
.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  border-color: rgba(137, 243, 210, 0.55);
  color: #04130f;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  box-shadow: 0 14px 34px rgba(48, 220, 176, 0.22);
}

.hero {
  min-height: calc(100svh - 118px);
  background: #060b12;
  padding-inline: clamp(44px, 5.8vw, 132px) clamp(28px, 3vw, 72px);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(112deg, rgba(6, 11, 18, 0.97) 0%, rgba(6, 11, 18, 0.91) 36%, rgba(6, 11, 18, 0.34) 68%, rgba(6, 11, 18, 0.50) 100%),
    linear-gradient(90deg, rgba(48, 220, 176, 0.13), transparent 34%),
    linear-gradient(145deg, transparent 0 54%, rgba(237, 112, 214, 0.12) 54% 61%, transparent 61% 100%),
    linear-gradient(18deg, transparent 0 64%, rgba(240, 198, 109, 0.12) 64% 68%, transparent 68% 100%);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 11, 18, 0.08) 0%, rgba(6, 11, 18, 0.38) 100%);
}

.hero-scene {
  background:
    linear-gradient(120deg, #060b12 0%, #0a1320 48%, #140f18 100%);
}

.desk-grid {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(137, 243, 210, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 112, 214, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero .eyebrow,
.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(137, 243, 210, 0.30);
  border-left-color: rgba(237, 112, 214, 0.58);
  border-radius: 8px;
  color: var(--mint);
  background: rgba(137, 243, 210, 0.07);
}

h1 {
  text-shadow: 0 22px 70px rgba(255, 255, 255, 0.10);
}

.hero:has(.hero-shot:not([hidden])) h1 {
  font-size: clamp(56px, 5.2vw, 96px);
}

.hero-copy {
  color: rgba(255, 253, 248, 0.86);
}

.launch-countdown {
  width: min(100%, 520px);
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(137, 243, 210, 0.30);
  border-top-color: rgba(240, 198, 109, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 198, 109, 0.12), rgba(237, 112, 214, 0.08)),
    rgba(7, 16, 26, 0.76);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.launch-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

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

.countdown-grid span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 12px 8px;
  border: 1px solid rgba(160, 205, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
}

.countdown-grid strong {
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.countdown-grid small {
  color: rgba(216, 226, 241, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.button.primary {
  border-color: rgba(137, 243, 210, 0.60);
  color: #03120e;
  background: linear-gradient(135deg, var(--mint), var(--teal) 68%, #d8ffe9);
  box-shadow:
    0 18px 48px rgba(48, 220, 176, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.button.primary:hover {
  background: linear-gradient(135deg, #b2ffe9, #37e7ba 70%, #fff0c5);
}

.button.download {
  position: relative;
  overflow: hidden;
}

.button.download::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.40) 48%, transparent 56%);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button.download:hover::before {
  transform: translateX(120%);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.28);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(237, 112, 214, 0.14), rgba(48, 220, 176, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trial-note {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: min(700px, 44vw);
  padding: 12px 14px;
  border: 1px solid rgba(137, 243, 210, 0.34);
  border-left-color: rgba(240, 198, 109, 0.72);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.76);
  background:
    linear-gradient(135deg, rgba(137, 243, 210, 0.12), rgba(237, 112, 214, 0.08)),
    rgba(7, 16, 26, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trial-note strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1.1;
}

.trial-note span {
  color: rgba(216, 226, 241, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.trust-row div,
.download-benefits article,
.use-strip article,
.timeline article,
.price-panel,
.fit-panel,
.download-card,
.download-action-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(12, 22, 36, 0.92);
  border-color: rgba(160, 205, 255, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-row div,
.download-benefits article,
.use-strip article,
.timeline article {
  position: relative;
  overflow: hidden;
}

.trust-row div::after,
.download-benefits article::after,
.use-strip article::after,
.timeline article::after {
  position: absolute;
  right: -22%;
  bottom: -42%;
  width: 58%;
  height: 78%;
  content: "";
  background: linear-gradient(135deg, transparent 20%, rgba(137, 243, 210, 0.08), rgba(237, 112, 214, 0.06));
  pointer-events: none;
  transform: rotate(-18deg);
}

.trust-row div:nth-child(1) {
  border-top-color: rgba(137, 243, 210, 0.56);
}

.trust-row div:nth-child(2) {
  border-top-color: rgba(237, 112, 214, 0.50);
}

.trust-row div:nth-child(3) {
  border-top-color: rgba(240, 198, 109, 0.62);
}

.trust-row dt {
  color: var(--white);
}

.deal-stat {
  border-color: rgba(240, 198, 109, 0.42) !important;
  background:
    linear-gradient(135deg, rgba(240, 198, 109, 0.14), rgba(237, 112, 214, 0.08)),
    rgba(12, 22, 36, 0.94) !important;
}

.deal-stat dt {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.deal-current {
  color: var(--amber);
  text-shadow: 0 0 24px rgba(240, 198, 109, 0.24);
}

.deal-old,
.mini-deal em {
  position: relative;
  color: rgba(216, 226, 241, 0.62);
  font-style: normal;
  font-weight: 950;
}

.deal-old::after,
.mini-deal em::after {
  position: absolute;
  top: 52%;
  right: -5px;
  left: -5px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--red);
  transform: rotate(-9deg);
}

.trust-row dd,
.download-benefits span,
.use-strip span,
.timeline p,
.fit-panel p,
.download-action-box small,
.price-note {
  color: rgba(216, 226, 241, 0.74);
}

.hero-shot {
  top: 16%;
  right: clamp(18px, 2.6vw, 52px);
  width: min(930px, 49vw);
  border-color: rgba(137, 243, 210, 0.25);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(237, 112, 214, 0.16),
    0 0 70px rgba(48, 220, 176, 0.10);
}

.hero-shot figcaption {
  color: #06130f;
  background: linear-gradient(135deg, rgba(137, 243, 210, 0.92), rgba(240, 198, 109, 0.88));
}

.download-band,
.screenshots,
.uses,
.workflow,
.pricing {
  background:
    linear-gradient(180deg, #080f18 0%, #0b1421 100%);
}

.download-card {
  position: relative;
  overflow: hidden;
}

.download-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--violet), var(--amber));
}

.download-card::after {
  position: absolute;
  inset: auto 32px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(240, 198, 109, 0.56), transparent);
}

.download-card p,
.fit-panel p {
  color: rgba(216, 226, 241, 0.78);
}

.download-action-box {
  border-color: rgba(137, 243, 210, 0.28);
}

.mini-deal {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: baseline;
  padding: 12px 14px;
  border: 1px solid rgba(240, 198, 109, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 198, 109, 0.16), rgba(137, 243, 210, 0.08)),
    rgba(5, 10, 17, 0.50);
}

.mini-deal span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-deal strong {
  color: var(--amber);
  font-size: 32px;
  line-height: 1;
}

.mini-deal em {
  font-size: 18px;
}

.waitlist-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(137, 243, 210, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(137, 243, 210, 0.12), rgba(237, 112, 214, 0.08)),
    rgba(5, 10, 17, 0.52);
}

.waitlist-card strong,
.waitlist-card span {
  display: block;
}

.waitlist-card strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
}

.waitlist-card span {
  color: rgba(216, 226, 241, 0.76);
  font-size: 14px;
}

.privacy-note {
  display: block;
  color: rgba(216, 226, 241, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.modal-open {
  overflow: hidden;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(48, 220, 176, 0.08), rgba(237, 112, 214, 0.10)),
    rgba(3, 7, 12, 0.82);
  backdrop-filter: blur(18px);
}

.modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(540px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  width: min(100%, 1220px);
  max-height: min(760px, calc(100svh - 44px));
  padding: clamp(28px, 4vw, 44px);
  overflow: auto;
  border: 1px solid rgba(137, 243, 210, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(48, 220, 176, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #07101a;
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(237, 112, 214, 0.12);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 28px;
  line-height: 1;
}

.modal-close:hover {
  border-color: rgba(137, 243, 210, 0.38);
  background: rgba(137, 243, 210, 0.10);
}

.modal-copy {
  align-self: center;
  max-width: 430px;
  padding-right: 0;
}

.modal-copy h2 {
  max-width: 420px;
  font-size: clamp(42px, 4.4vw, 68px);
  overflow-wrap: normal;
  word-break: normal;
}

.modal-copy p:not(.eyebrow) {
  color: rgba(216, 226, 241, 0.76);
  font-size: 17px;
}

.modal-copy .privacy-note {
  margin-top: 12px;
  color: rgba(216, 226, 241, 0.68);
  font-size: 13px;
}

.waitlist-form {
  overflow: hidden;
  border: 1px solid rgba(137, 243, 210, 0.22);
  border-radius: 8px;
  background: #ffffff;
}

.waitlist-form iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: min(680px, calc(100svh - 120px));
  border: 0;
  background: #ffffff;
}

@media (max-width: 1120px) {
  .modal-card {
    grid-template-columns: minmax(280px, 0.78fr) minmax(500px, 1fr);
    width: min(100%, 1040px);
    gap: 28px;
  }

  .modal-copy h2 {
    font-size: clamp(38px, 4vw, 54px);
  }
}

.windows-badge {
  color: #06130f;
  background: linear-gradient(135deg, var(--mint), rgba(240, 198, 109, 0.86));
}

.section-header.compact::after {
  display: block;
  width: min(360px, 76vw);
  height: 2px;
  margin: 24px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--teal), var(--violet), var(--amber), transparent);
}

.screenshots .product-shot {
  border-color: rgba(160, 205, 255, 0.18);
  background: #07101a;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.screenshots .product-shot.large {
  border-top-color: rgba(48, 220, 176, 0.50);
}

.screenshots .product-shot:not(.large):nth-child(2) {
  border-top-color: rgba(237, 112, 214, 0.48);
}

.screenshots .product-shot:not(.large):nth-child(3) {
  border-top-color: rgba(240, 198, 109, 0.52);
}

.screenshots figcaption {
  background:
    linear-gradient(90deg, rgba(48, 220, 176, 0.10), rgba(237, 112, 214, 0.08)),
    #07101a;
}

.band,
.features,
.security,
.faq,
.problem {
  background:
    linear-gradient(180deg, #050a11 0%, #08101a 100%);
}

.problem-grid article,
.feature-grid article,
.security-list div,
.faq-list details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(11, 20, 33, 0.92);
  border-color: rgba(160, 205, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.problem-grid article:nth-child(1),
.feature-grid article:nth-child(4n+1) {
  border-top-color: rgba(48, 220, 176, 0.54);
}

.problem-grid article:nth-child(2),
.feature-grid article:nth-child(4n+2) {
  border-top-color: rgba(237, 112, 214, 0.46);
}

.problem-grid article:nth-child(3),
.feature-grid article:nth-child(4n+3) {
  border-top-color: rgba(240, 198, 109, 0.58);
}

.problem-grid span,
.timeline span {
  color: #06130f;
  background: linear-gradient(135deg, var(--amber), var(--mint));
}

.feature-grid article:nth-child(2n),
.feature-grid article:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(11, 20, 33, 0.92);
}

.price-panel.highlight {
  position: relative;
  overflow: hidden;
  border-color: rgba(137, 243, 210, 0.48);
  background:
    linear-gradient(145deg, rgba(48, 220, 176, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.025)),
    rgba(12, 22, 36, 0.94);
}

.sale-ribbon {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 36px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(240, 198, 109, 0.46);
  border-radius: 8px;
  color: #130d02;
  background: linear-gradient(135deg, var(--amber), #fff1b7);
  box-shadow: 0 16px 42px rgba(240, 198, 109, 0.18);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-top span {
  color: var(--mint);
}

.price-top strong span {
  color: var(--amber);
  text-shadow: 0 0 34px rgba(240, 198, 109, 0.25);
}

.price-top strong em {
  color: rgba(216, 226, 241, 0.58);
}

.site-footer {
  border-top-color: rgba(160, 205, 255, 0.15);
  background: #050a11;
}

.site-footer span,
.site-footer nav {
  color: rgba(216, 226, 241, 0.68);
}

@media (max-width: 1060px) {
  .hero-shot {
    width: auto;
    right: 18px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 352px 18px 52px;
  }

  .hero:has(.hero-shot:not([hidden])) h1 {
    font-size: 40px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 11, 18, 0.18) 0%, rgba(6, 11, 18, 0.95) 38%, #060b12 100%),
      linear-gradient(120deg, rgba(48, 220, 176, 0.10), transparent 60%);
  }

  .hero .eyebrow,
  .eyebrow {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding-block: 8px;
    white-space: normal;
  }

  .hero-shot {
    top: 76px;
    right: 10px;
    left: 10px;
    filter: brightness(1.08) contrast(1.03);
  }

  .hero-content,
  .hero:has(.hero-shot:not([hidden])) .hero-content {
    width: min(320px, calc(100vw - 36px));
    max-width: min(320px, calc(100vw - 36px));
  }

  .hero:has(.hero-shot:not([hidden])) .hero-content::before {
    display: none;
  }

  .trust-row div {
    min-height: 92px;
  }

  .hero-copy,
  .launch-countdown,
  .trial-note,
  .trust-row,
  .hero:has(.hero-shot:not([hidden])) .hero-copy,
  .hero:has(.hero-shot:not([hidden])) .launch-countdown,
  .hero:has(.hero-shot:not([hidden])) .trial-note,
  .hero:has(.hero-shot:not([hidden])) .trust-row {
    max-width: min(320px, calc(100vw - 36px));
  }

  .launch-countdown {
    padding: 13px;
  }

  .countdown-grid {
    gap: 6px;
  }

  .countdown-grid span {
    padding: 10px 4px;
  }

  .countdown-grid strong {
    font-size: 24px;
  }

  .modal-overlay {
    align-items: stretch;
    padding: 10px;
  }

  .modal-card {
    grid-template-columns: 1fr;
    align-self: center;
    gap: 14px;
    max-height: calc(100svh - 20px);
    padding: 16px;
  }

  .modal-close {
    top: 8px;
    right: 8px;
  }

  .modal-copy {
    padding-right: 42px;
  }

  .modal-copy h2 {
    font-size: 30px;
  }

  .modal-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .waitlist-form iframe {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
