@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/geist.woff2') format('woff2');
}
:root,
.dark {
  color-scheme: dark;
  --background: #040817;
  --foreground: #f0f4ff;
  --surface: #0d1530;
  --blue: #5385ff;
  --violet: #7950fa;
  --muted: #a4aec8;
  --line: #28314a;
  --radius: 1rem;
  --gutter: clamp(1.25rem, 5.2vw, 6rem);
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: Geist, Arial, Helvetica, sans-serif;
  --page-max: 1600px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
::selection {
  background: var(--blue);
  color: var(--background);
}
.site-nav {
  height: 100px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  max-width: var(--page-max);
  margin: auto;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  letter-spacing: -0.06em;
  font-size: 1.6rem;
}
.brand svg {
  color: var(--blue);
}
.brand span {
  font-size: 0.65rem;
  align-self: flex-start;
  margin-top: 0.6rem;
  letter-spacing: 0;
}
.site-nav nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.site-nav nav a:hover {
  color: var(--foreground);
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  background: linear-gradient(110deg, #286aff, var(--violet));
  color: white;
  border: 1px solid #6988ff;
  padding: 1rem 1.4rem;
  border-radius: 0.55rem;
  font-weight: 550;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px #4167ff40;
}
.btn svg {
  width: 20px;
}
.btn.small {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.btn.secondary {
  background: transparent;
  border-color: var(--line);
}
.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--page-max);
  margin: auto;
  padding: 4.5rem var(--gutter) 7rem;
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.signal {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 100%;
  box-shadow: 0 0 14px var(--blue);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(3.5rem, 6.4vw, 7rem);
  line-height: 1.03;
  letter-spacing: -0.075em;
  font-weight: 500;
  margin: 1.6rem 0;
}
h1 span,
h2 span {
  color: var(--blue);
}
.intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
}
.quiet {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 1rem 0;
}
.hero-art {
  position: relative;
  min-width: 0;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img {
  position: relative;
  width: 150%;
  max-width: none;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}
.orbit {
  position: absolute;
  border: 1px solid #4561be40;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(-25deg) scaleY(0.6);
  z-index: 2;
  pointer-events: none;
}
.orbit-two {
  transform: rotate(55deg) scaleY(0.72);
  width: 110%;
  border-style: dashed;
}
.float-label {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  background: #0b112bdd;
  backdrop-filter: blur(15px);
  border-radius: 2rem;
}
.top-label {
  top: 1rem;
  left: 5%;
}
.price-ticket {
  z-index: 3;
  position: absolute;
  right: 0;
  bottom: 1rem;
  background: #101b3ce8;
  backdrop-filter: blur(20px);
  border: 1px solid #4662b5;
  border-radius: 0.9rem;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 20px 70px #0008;
  transform: rotate(-5deg);
}
.price-ticket strong {
  display: block;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.price-ticket strong span {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--muted);
  margin-left: 1rem;
  letter-spacing: 0;
}
.price-ticket > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #aec4ff;
  font-size: 0.85rem;
}
.asset-note {
  position: absolute;
  bottom: -2rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.hero-foot {
  position: absolute;
  bottom: 1.8rem;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.hero-foot > span {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.statement {
  padding: 7rem var(--gutter);
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 85% 20%, #1b277443, transparent 60%);
  max-width: var(--page-max);
  margin: auto;
}
.statement h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin: 2rem 0;
}
.statement > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.15rem;
}
.text-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--blue);
  padding: 0.5rem 0;
}
footer {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem var(--gutter);
  color: var(--muted);
  font-size: 0.8rem;
}
footer .brand {
  color: var(--foreground);
}
@media (max-width: 760px) {
  .site-nav {
    height: 80px;
  }
  .site-nav nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .hero-art {
    height: 380px;
    margin-top: 2rem;
  }
  .hero-art img {
    width: 120%;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 11vw, 5.5rem);
  }
  .hero-foot span:last-child {
    display: none;
  }
  .statement {
    padding: 4rem var(--gutter);
  }
  footer {
    flex-wrap: wrap;
  }
  .price-ticket {
    right: 0;
  }
  .top-label {
    left: 0;
  }
  .hero-art .orbit {
    width: 80%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.demo-page {
  max-width: 1600px;
  margin: auto;
  padding: 0 2.5rem;
}
.demo-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  height: 90px;
  border-bottom: 1px solid var(--line);
}
.demo-pill {
  color: #a4bdff;
  border: 1px solid #344b8d;
  background: #132553;
  border-radius: 2rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
}
.back-link {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.demo-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  padding: 2.5rem 0;
}
.demo-intro h1 {
  font-size: 2.5rem;
  margin: 0.7rem 0 0;
  letter-spacing: -0.055em;
}
.demo-intro > p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}
.demo-intro > p span {
  font-size: 0.78rem;
}
.pulse {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(140deg, #0a1026, #080e22);
}
.watch-list {
  border-right: 1px solid var(--line);
  padding: 1.3rem 1rem;
  display: flex;
  flex-direction: column;
}
.list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-head h2 {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  margin: 0;
}
.list-head > span {
  font-size: 0.75rem;
  color: var(--muted);
}
.search {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  padding: 0.35rem 0.6rem;
  margin: 1.3rem 0;
  color: var(--muted);
}
.search input {
  border: 0;
  padding: 0;
  font-size: 0.85rem;
}
.watch-tabs {
  width: 100%;
  height: 40px !important;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  margin-bottom: 1rem;
}
.watch-tabs [data-active] {
  background: #213567;
  color: #c7d6ff;
}
.watch-tabs button {
  font-size: 0.85rem;
}
.watch-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  width: 100%;
  padding: 1rem 0.65rem;
  margin-bottom: 0.65rem;
  border: 1px solid transparent;
  background: #11193170;
  border-radius: 0.5rem;
  color: var(--foreground);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.watch-item:hover {
  border-color: #384c7d;
}
.watch-item.selected {
  background: linear-gradient(110deg, #243c80, #262761);
  border-color: #4b65bb;
}
.product-thumb {
  width: 55px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060b1c;
  border-radius: 0.3rem;
  color: #90a9f0;
  flex-shrink: 0;
  overflow: hidden;
}
.product-thumb img {
  height: 75px;
  width: 112px;
  max-width: none;
  object-fit: cover;
}
.watch-item > span:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.watch-item strong,
.watch-item small,
.item-status {
  display: block;
}
.watch-item strong {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0.4rem 0;
}
.watch-item small {
  font-size: 0.72rem;
  color: var(--muted);
}
.watch-item b {
  font-size: 1.1rem;
  color: #adc4ff;
  font-weight: 500;
}
.watch-item b small {
  display: inline;
  margin-left: 0.35rem;
}
.item-status {
  font-size: 0.65rem;
  color: #bfd0ff;
}
.watch-item > svg {
  flex-shrink: 0;
}
.list-note {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 2rem;
}
.watch-detail {
  min-width: 0;
}
.detail-main {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 90% 25%, #2420756b, transparent 65%);
}
.detail-copy {
  position: relative;
  z-index: 2;
}
.detail-copy h2 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 1rem 0 0.5rem;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}
.large-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.6rem;
  white-space: nowrap;
}
.large-price > span:first-child {
  font-size: 4rem;
  letter-spacing: -0.06em;
  display: inline-block;
  line-height: 1.3;
}
.price-before {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.target-control {
  max-width: 290px;
  padding: 1.1rem 0;
}
.target-control > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
.target-control strong {
  font-size: 1.3rem;
  color: #b0c6ff;
}
.target-control small {
  font-size: 0.75rem;
  color: var(--muted);
  display: block;
  margin-top: 1rem;
}
.target-control [data-slot='slider-thumb'] {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 18px #5385ff66;
}
.detail-art {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-art > img {
  width: 175%;
  max-width: none;
  mix-blend-mode: screen;
  pointer-events: none;
}
.art-caption {
  position: absolute;
  bottom: 0;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.product-icon {
  color: #99acff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  filter: drop-shadow(0 0 45px #5264ff);
}
.product-icon span {
  color: var(--muted);
  font-size: 0.8rem;
}
.chart {
  grid-column: 1/-1;
  margin-top: 1.5rem;
}
.chart > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
}
.chart svg {
  width: 100%;
  height: 130px;
  overflow: visible;
  margin: 0.4rem 0;
}
.detail-actions {
  border-top: 1px solid var(--line);
  padding: 1.5rem 2.5rem 0.3rem;
  display: flex;
  gap: 0.8rem;
}
.detail-actions .btn {
  font-size: 0.9rem;
  gap: 0.7rem;
}
.icon-button {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: transparent;
  color: var(--muted);
  padding: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
}
.icon-button:hover {
  color: var(--foreground);
  background: var(--surface);
}
.demo-result {
  padding: 0.8rem 2.5rem 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  min-height: 3rem;
}
.alert-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 2.5rem 1.5rem;
  padding: 1rem;
  background: #17295a;
  border: 1px solid #3e61ba;
  border-radius: 0.6rem;
}
.alert-card > svg {
  color: #a7c0ff;
  flex-shrink: 0;
}
.alert-card > div {
  flex: 1;
}
.alert-card strong {
  font-size: 1rem;
}
.alert-card p {
  font-size: 0.75rem;
  color: #bdc9e6;
  margin: 0.2rem 0 0;
}
.assurances {
  border-top: 1px solid var(--line);
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.assurances span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.assurances svg {
  width: 17px;
  color: #91a7ee;
}
.preview-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 1.5rem 0;
}
.empty-state {
  padding: 2rem 0.5rem;
  color: var(--muted);
}
.empty-state h3 {
  font-size: 1rem;
  margin-top: 1rem;
  color: var(--foreground);
}
.empty-state p {
  font-size: 0.85rem;
}
.empty-state button {
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-size: 0.9rem;
  color: var(--foreground);
}
.deal-dialog {
  max-width: min(520px, calc(100% - 2rem)) !important;
  padding: 2rem !important;
  border: 1px solid #4762a0 !important;
  font-size: 1rem !important;
  line-height: 1.6;
}
.deal-dialog h2 {
  font-size: 1.5rem;
}
.deal-dialog p {
  color: var(--muted);
}
.receipt {
  display: flex;
  flex-direction: column;
  border-block: 1px solid var(--line);
  padding: 1rem 0;
}
.receipt strong {
  font-size: 3rem;
  color: #b0c6ff;
}
.receipt span {
  font-size: 0.85rem;
}
.story-heading {
  padding: 6rem var(--gutter) 3rem;
  max-width: var(--page-max);
  margin: auto;
}
.story-heading h1 {
  font-size: clamp(3rem, 5.6vw, 6rem);
}
.story-heading .intro {
  max-width: 660px;
}
.steps-section {
  padding: 0 var(--gutter) 4rem;
  max-width: var(--page-max);
  margin: auto;
}
.story-step {
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.step-number {
  font-size: 2.5rem;
  letter-spacing: -0.07em;
  color: #7d90bd;
}
.story-step > svg {
  width: 40px;
  height: 40px;
  color: var(--blue);
  margin-top: 0.65rem;
}
.story-step h2 {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.story-step p {
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}
.honesty {
  margin: 0 var(--gutter);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  background: linear-gradient(120deg, #122b61, #101330);
  border: 1px solid #334778;
  border-radius: 1rem;
}
.honesty > svg {
  width: 120px;
  height: 120px;
  align-self: center;
  justify-self: center;
  color: #819dff;
}
.honesty h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.honesty p {
  color: #bac6e1;
  max-width: 600px;
}
.faq-section {
  padding: 5rem var(--gutter);
  max-width: var(--page-max);
  margin: auto;
}
.faq-section > h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.faq-section details {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.faq-section summary {
  cursor: pointer;
  font-size: 1.1rem;
}
.faq-section details p {
  color: var(--muted);
  max-width: 750px;
  margin: 1rem 0 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 6rem var(--gutter);
  min-height: calc(100vh - 200px);
  max-width: var(--page-max);
  margin: auto;
}
.contact-layout h1 {
  font-size: clamp(3.5rem, 5.5vw, 6rem);
}
.contact-layout .intro {
  max-width: 420px;
}
.contact-card {
  background: linear-gradient(140deg, #14214a, #0b1129);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.contact-card h2 {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}
.contact-card label {
  display: block;
  font-size: 0.85rem;
  color: #c7d2ed;
  margin-bottom: 0.6rem;
}
.contact-card input,
.contact-card textarea {
  height: auto;
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  background: #080e23;
  border: 1px solid #3b4769;
}
.contact-card textarea {
  min-height: 130px;
}
.contact-card .btn {
  width: 100%;
  font-size: 0.9rem;
  gap: 1rem;
}
.form-success {
  padding: 2rem 0;
}
.form-success svg {
  color: var(--blue);
  margin-bottom: 2rem;
}
.form-success p {
  color: var(--muted);
}
@media (max-width: 1050px) {
  .pulse {
    grid-template-columns: 270px minmax(0, 1fr);
  }
  .detail-main {
    padding: 1.5rem;
  }
  .detail-copy h2 {
    font-size: 1.6rem;
  }
  .detail-actions {
    padding: 1.5rem 1.5rem 0.3rem;
  }
  .demo-result {
    padding-inline: 1.5rem;
  }
  .alert-card {
    margin-inline: 1.5rem;
    flex-wrap: wrap;
  }
  .assurances {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  .detail-art > img {
    width: 220%;
  }
  .contact-layout {
    gap: 2rem;
  }
  .demo-intro {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 760px) {
  .demo-page {
    padding: 0 1rem;
  }
  .demo-header {
    gap: 0.6rem;
    height: 80px;
    flex-wrap: wrap;
  }
  .demo-header .brand {
    font-size: 1.3rem;
  }
  .demo-pill {
    font-size: 0.6rem;
  }
  .back-link {
    font-size: 0.75rem;
  }
  .back-link svg {
    display: none;
  }
  .demo-intro h1 {
    font-size: 2rem;
  }
  .pulse {
    grid-template-columns: 1fr;
  }
  .watch-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .watch-items {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    scroll-snap-type: x mandatory;
  }
  .watch-item {
    min-width: 240px;
    scroll-snap-align: start;
  }
  .list-note {
    display: none;
  }
  .watch-tabs {
    margin-bottom: 0.5rem;
  }
  .search {
    margin: 0.8rem 0;
  }
  .detail-main {
    grid-template-columns: 1fr 1fr;
    padding: 1.3rem;
  }
  .detail-art > img {
    width: 250%;
  }
  .detail-copy {
    min-width: 0;
  }
  .detail-copy h2 {
    font-size: 1.4rem;
  }
  .detail-copy .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }
  .detail-copy .muted {
    font-size: 0.75rem;
  }
  .large-price > span:first-child {
    font-size: 3rem;
  }
  .large-price {
    gap: 0.5rem;
  }
  .price-before {
    font-size: 0.8rem;
  }
  .target-control > div:first-child {
    font-size: 0.75rem;
  }
  .target-control strong {
    font-size: 1rem;
  }
  .target-control small {
    font-size: 0.65rem;
  }
  .detail-actions {
    flex-wrap: wrap;
    padding-inline: 1.3rem;
  }
  .detail-actions .btn {
    font-size: 0.8rem;
    padding: 0.8rem;
  }
  .detail-actions .btn:first-child {
    flex: 1;
  }
  .assurances {
    font-size: 0.7rem;
    gap: 0.65rem;
  }
  .art-caption {
    font-size: 0.55rem;
  }
  .product-icon svg {
    width: 80px;
  }
  .demo-result {
    padding-inline: 1.3rem;
  }
  .story-heading {
    padding-top: 3rem;
  }
  .story-step {
    grid-template-columns: 35px 35px 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .step-number {
    font-size: 1.7rem;
  }
  .story-step > svg {
    width: 26px;
    height: 26px;
  }
  .story-step h2 {
    font-size: 1.3rem;
  }
  .story-step p {
    font-size: 0.9rem;
  }
  .honesty {
    padding: 2rem;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .honesty > svg {
    width: 60px;
    height: 60px;
    justify-self: start;
  }
  .honesty h2 {
    font-size: 2.5rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    padding-block: 3rem;
    gap: 2rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .contact-layout h1 {
    font-size: 3.5rem;
  }
}
.detail-art > img,
.hero-art > img {
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 72%);
}
.demo-result {
  display: block;
}
.watch-list {
  min-width: 0;
}
.watch-tabs {
  min-width: 0;
}
.watch-items {
  min-width: 0;
}

/* Production navigation and native demo controls. */
[hidden] {
  display: none !important;
}
svg.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.site-nav {
  height: auto;
  min-height: 100px;
  flex-wrap: wrap;
  padding-block: 1rem;
}
.site-nav nav {
  gap: 1.7rem;
  flex-wrap: wrap;
}
.site-nav .nav-signin {
  font-size: 0.9rem;
  color: var(--muted);
}
.experience-page .np-skip {
  position: absolute;
  top: -100px;
}
.experience-page .np-skip:focus {
  top: 1rem;
  z-index: 50;
  background: var(--surface);
  padding: 1rem;
}
.experience-page .np-preview-notice {
  padding: 1rem var(--gutter);
}
.experience-page footer {
  gap: 1.5rem;
  flex-wrap: wrap;
}
.experience-page footer nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.watch-tabs button {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 0.75rem;
  border-radius: 0.4rem;
}
.watch-tabs button[aria-pressed='true'] {
  background: #26366a;
  color: var(--foreground);
}
.search input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 0.6rem;
}
.target-control input {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
  min-height: 32px;
}
.demo-dialog {
  max-width: 480px;
  width: calc(100% - 2rem);
  padding: 2rem;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
}
.demo-dialog::backdrop {
  background: #01040de0;
}
.demo-dialog h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.demo-dialog .btn {
  margin: 0.5rem 0.5rem 0 0;
}
.chart line {
  stroke: var(--line);
}
.chart .target-line {
  stroke: #9a93ed;
  stroke-dasharray: 4 5;
}
.chart polyline {
  fill: none;
  stroke: #6395ff;
  stroke-width: 3;
  stroke-linejoin: round;
}
.chart circle {
  fill: #a1bdff;
}
.home-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
@media (max-width: 720px) {
  .site-nav nav {
    order: 3;
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    gap: 1.3rem;
  }
  .site-nav .nav-signin {
    margin-left: auto;
  }
  .site-nav {
    gap: 1rem;
  }
  .demo-header {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero {
    padding-top: 2rem;
  }
  .detail-actions {
    flex-wrap: wrap;
  }
  .watch-detail,
  .detail-main {
    min-width: 0;
  }
}

img {
  height: auto;
}
.trust-row {
  border-top: 1px solid var(--line);
  padding: 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.trust-row strong,
.trust-row span {
  display: block;
}
.trust-row strong {
  color: var(--foreground);
  font-size: 0.8rem;
  margin: 0.25rem 0;
}
.watch-tabs {
  display: flex;
}
.watch-item {
  min-height: 130px;
}
@media (max-width: 720px) {
  .trust-row {
    padding: 1.3rem;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .hero-art {
    height: 370px;
  }
  .price-ticket {
    right: 0;
  }
}

.product-thumb .product-icon svg {
  width: 30px;
  height: 30px;
}
