:root {
  --bg: #070913;
  --bg-soft: #0d1020;
  --panel: #111425;
  --panel-2: #17112a;
  --panel-3: #211334;
  --text: #fbf8ff;
  --muted: #b7afca;
  --muted-2: #837b9b;
  --line: rgba(210, 175, 255, 0.16);
  --line-strong: rgba(218, 185, 255, 0.28);
  --pink: #ff4fb8;
  --pink-soft: #ff8bd5;
  --purple: #c65cff;
  --purple-deep: #742bba;
  --blue: #35c9ff;
  --green: #46ec9b;
  --gold: #f1b84c;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --radius-small: 15px;
  --shell: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 79, 184, 0.08), transparent 28%),
    radial-gradient(circle at 4% 28%, rgba(53, 201, 255, 0.06), transparent 26%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, rgba(0,0,0,.72) 34%, transparent 92%);
}

::selection { background: rgba(255, 79, 184, .35); color: #fff; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 18px; top: 12px; z-index: 1000;
  transform: translateY(-150%); background: var(--text); color: var(--bg);
  padding: 10px 16px; border-radius: 8px; font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.site-header.scrolled {
  background: rgba(7, 9, 19, .84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(213, 144, 255, .42);
  border-radius: 13px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 9px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.92) 0 20%, rgba(53,201,255,.95) 42%, rgba(116,43,186,.95) 63%, rgba(255,79,184,.95) 84%);
  box-shadow: 0 0 0 4px rgba(198,92,255,.07), 0 12px 28px rgba(90, 23, 139, .24);
}
.brand-mark span { display: none; }
.brand-text { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.brand-text strong { font-size: 1.05rem; letter-spacing: -.025em; }
.brand-text small {
  color: var(--pink-soft);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -.025em;
  margin: 0;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 720;
}
.site-nav > a:not(.button):hover { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--text); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #190b1e;
  background: linear-gradient(135deg, #ff82d0 0%, var(--pink) 52%, #d629d6 100%);
  box-shadow: 0 16px 42px rgba(255, 79, 184, .28), inset 0 1px rgba(255,255,255,.45);
}
.button-primary:hover { box-shadow: 0 20px 50px rgba(255, 79, 184, .4); }
.button-primary span { font-size: 1.18em; }
.button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,.035);
}
.button-secondary:hover { background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.34); }
.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: .86rem;
  background: linear-gradient(135deg, #fdfbff, #dccfff);
  color: #171022;
}
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 145px 0 95px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 84%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); z-index: -1; pointer-events: none; }
.hero-glow-one {
  width: 640px;
  height: 640px;
  right: -7%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 79, 184, .19), transparent 68%);
}
.hero-glow-two {
  width: 520px;
  height: 520px;
  left: -12%;
  top: 20%;
  background: radial-gradient(circle, rgba(53, 201, 255, .11), transparent 70%);
}
.hero-grid {
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--pink-soft);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1320px;
  margin: 0 0 26px;
  font-size: clamp(3.7rem, 6.2vw, 6.8rem);
  line-height: .94;
  letter-spacing: -.064em;
}
.hero h1 span { display: block; }
.hero-title-primary { color: var(--text); }
.hero-title-accent {
  margin-top: .18em;
  background: linear-gradient(92deg, #ff80d0 0%, #e36af4 48%, #9e7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  max-width: 880px;
  margin-bottom: 0;
  color: #d2cbe0;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 31px 0 18px; }
.hero-price-line {
  display: grid;
  gap: 2px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .85rem;
}
.hero-price-line strong { color: var(--text); font-size: .94rem; }

.product-stage {
  margin: 50px 0 0;
  position: relative;
  z-index: 2;
}
.app-window {
  overflow: hidden;
  border: 1px solid rgba(214, 168, 255, .25);
  border-radius: 24px;
  background: #090b15;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.window-bar {
  height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #171324, #10121c);
  color: #d5cee2;
  font-size: .78rem;
}
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 9px; height: 9px; border-radius: 50%; }
.window-dots span:nth-child(1) { background: #ff646f; }
.window-dots span:nth-child(2) { background: #f4b94a; }
.window-dots span:nth-child(3) { background: #57c87a; }
.window-status { justify-self: end; color: var(--green); font-weight: 800; }
.app-screenshot-wrap {
  position: relative;
  overflow: hidden;
  background: #080a12;
}
.app-screenshot-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 55px rgba(0,0,0,.3);
}
.app-screenshot-wrap img { width: 100%; height: auto; }
.product-stage figcaption {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted-2);
  text-align: center;
  font-size: .78rem;
}
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.hero-feature-grid article {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 0 1px rgba(255,255,255,.03);
}
.hero-feature-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--pink-soft);
  background: rgba(198, 92, 255, .11);
  border: 1px solid rgba(198, 92, 255, .22);
  font-weight: 900;
}
.hero-feature-grid article:nth-child(2n) .hero-feature-icon { color: var(--blue); background: rgba(53,201,255,.09); border-color: rgba(53,201,255,.2); }
.hero-feature-grid article div { display: grid; line-height: 1.25; }
.hero-feature-grid strong { font-size: .88rem; }
.hero-feature-grid small { color: var(--muted); font-size: .72rem; margin-top: 4px; }

.problem-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(53,201,255,.06), rgba(198,92,255,.08), rgba(255,79,184,.06));
}
.problem-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.problem-grid p { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.problem-grid p:last-child { text-align: right; }
.problem-grid strong { color: var(--text); }
.problem-grid > span { color: var(--pink-soft); font-size: 1.55rem; }

.section-heading { max-width: 850px; margin-bottom: 52px; }
.section-heading.narrow { max-width: 720px; }
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.052em;
}
h3 { margin-bottom: 10px; font-size: 1.2rem; letter-spacing: -.025em; }
.section-heading > p:last-child,
.pricing-copy > p:last-child { max-width: 700px; color: var(--muted); font-size: 1.05rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.038), rgba(255,255,255,.018));
  box-shadow: var(--shadow-soft);
}
.step-card.featured { border-color: rgba(255,79,184,.34); background: linear-gradient(145deg, rgba(255,79,184,.1), rgba(198,92,255,.055)); }
.step-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,92,255,.18), transparent 68%);
}
.step-number { display: block; margin-bottom: 92px; color: var(--pink-soft); font-size: .74rem; font-weight: 900; letter-spacing: .14em; }
.step-card p { color: var(--muted); }

.demo-section { background: linear-gradient(180deg, rgba(13,16,32,.9), rgba(7,9,19,.95)); border-block: 1px solid var(--line); }
.demo-content { max-width: 1180px; }
.demo-copy { max-width: 770px; margin-bottom: 36px; }
.demo-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.demo-content > div[style] {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #05060b;
  box-shadow: var(--shadow);
}
.demo-content iframe { border-radius: 22px; }
.demo-purchase {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,79,184,.08), rgba(53,201,255,.045));
}
.demo-purchase p { margin: 0; color: var(--muted); }
.demo-purchase strong { color: var(--text); font-size: 1.05rem; }
.demo-purchase .button { flex: 0 0 auto; }

.tools-section { background: #080a15; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-grid article {
  min-height: 255px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.018));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.feature-grid article:hover { transform: translateY(-5px); border-color: rgba(198,92,255,.42); background: linear-gradient(145deg, rgba(198,92,255,.075), rgba(255,255,255,.02)); }
.feature-grid article > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 12px;
  background: rgba(53,201,255,.09);
  color: var(--blue);
  border: 1px solid rgba(53,201,255,.18);
  font-weight: 900;
}
.feature-grid article:nth-child(2n) > span { background: rgba(255,79,184,.09); color: var(--pink-soft); border-color: rgba(255,79,184,.18); }
.feature-grid p { color: var(--muted); font-size: .91rem; }

.audience-section {
  background: linear-gradient(110deg, rgba(53,201,255,.07), rgba(198,92,255,.075), rgba(255,79,184,.055));
  border-block: 1px solid var(--line);
}
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.audience-list { display: grid; gap: 13px; }
.audience-list p {
  margin: 0;
  padding: 17px 18px;
  display: flex;
  gap: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7,9,19,.56);
  color: #d6d0e0;
}
.audience-list span { color: var(--green); font-weight: 900; }

.pricing-section { position: relative; }
.pricing-grid { display: grid; grid-template-columns: 1fr 480px; gap: 95px; align-items: center; }
.price-card {
  padding: 35px;
  border: 1px solid rgba(255,79,184,.34);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,79,184,.1), rgba(198,92,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}
.price-topline { display: flex; justify-content: space-between; gap: 14px; color: #e5def0; font-weight: 800; }
.price-badge { padding: 5px 9px; border-radius: 8px; background: rgba(70,236,155,.1); color: var(--green); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.price { margin: 28px 0 0; display: flex; align-items: start; gap: 8px; }
.price sup { color: var(--muted); font-weight: 800; padding-top: 17px; }
.price strong { font-size: 4.7rem; line-height: 1; letter-spacing: -.07em; }
.future-price { margin: 6px 0 26px; color: var(--muted); font-size: .83rem; }
.price-card ul { list-style: none; padding: 22px 0; margin: 0 0 22px; border-block: 1px solid var(--line); display: grid; gap: 11px; }
.price-card li { display: flex; gap: 10px; color: #dad3e3; }
.price-card li::before { content: "✓"; color: var(--pink-soft); font-weight: 900; }
.price-card > small { display: block; margin-top: 14px; color: var(--muted-2); text-align: center; line-height: 1.45; }

.faq-section { background: #060812; border-block: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 82px; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 23px 42px 23px 0; cursor: pointer; list-style: none; position: relative; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; top: 50%; transform: translateY(-50%); color: var(--pink-soft); font-size: 1.45rem; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); padding: 0 50px 23px 0; }

.final-cta { padding: 82px 0; background: linear-gradient(110deg, rgba(255,79,184,.14), rgba(198,92,255,.09), rgba(53,201,255,.07)); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.final-cta h2 { max-width: 800px; margin: 0; font-size: clamp(2.1rem, 4.3vw, 4.2rem); }

.site-footer { padding: 58px 0 35px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.footer-brand { margin-bottom: 17px; }
.footer-grid p { color: var(--muted-2); font-size: .87rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: var(--muted); font-size: .86rem; text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.copyright { grid-column: 1/-1; border-top: 1px solid var(--line); padding-top: 24px; margin: 15px 0 0; }

.setup-dialog {
  width: min(560px, calc(100% - 34px));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #111425;
  color: var(--text);
  padding: 34px;
  box-shadow: var(--shadow);
}
.setup-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(5px); }
.setup-dialog h2 { font-size: 2.15rem; }
.setup-dialog p:not(.eyebrow) { color: var(--muted); }
.setup-dialog code { display: block; margin: 20px 0; padding: 14px; border-radius: 10px; background: #080a14; color: var(--blue); overflow-wrap: anywhere; }
.dialog-close { position: absolute; right: 13px; top: 10px; border: 0; background: transparent; color: var(--muted); font-size: 1.8rem; cursor: pointer; }
.toast {
  position: fixed;
  z-index: 300;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 130%);
  opacity: 0;
  max-width: min(520px, calc(100% - 30px));
  padding: 12px 17px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #171a2c;
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transition: .24s ease;
  text-align: center;
}
.toast.visible { opacity: 1; transform: translate(-50%,0); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

@media (max-width: 1280px) {
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(3.4rem, 6vw, 5.8rem); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 6.7vw, 5.1rem); }
  .pricing-grid { gap: 52px; }
  .price-card { width: min(540px, 100%); }
  .faq-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 860px) {
  .hero h1 { font-size: clamp(2.75rem, 8.4vw, 4.4rem); }
  .hero-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(11,13,25,.98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 11px; }
  .site-nav .button { margin-top: 7px; }
  .steps-grid, .audience-grid { grid-template-columns: 1fr; }
  .audience-grid { gap: 36px; }
  .problem-grid { grid-template-columns: 1fr; gap: 5px; padding-block: 28px; }
  .problem-grid p:last-child { text-align: left; }
  .problem-grid > span { transform: rotate(90deg); justify-self: start; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-purchase { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 80px 0; }
  .hero { padding: 112px 0 76px; }
  .hero h1 { font-size: clamp(2.35rem, 11.2vw, 3.6rem); line-height: .98; letter-spacing: -.055em; }
  .hero-title-accent { margin-top: .2em; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-feature-grid { grid-template-columns: 1fr; }
  .window-bar { grid-template-columns: auto 1fr; gap: 12px; }
  .window-bar > span:nth-child(2) { text-align: right; }
  .window-status { display: none; }
  .product-stage figcaption { padding-inline: 10px; }
  h2 { font-size: 2.55rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 220px; }
  .price-card { padding: 25px 20px; }
  .price-topline { align-items: flex-start; flex-direction: column; }
  .price strong { font-size: 3.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; }
  .brand-text { display: grid; gap: 2px; }
  .brand-text small { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
}


@media (max-width: 480px) {
  .hero h1 { font-size: clamp(2.05rem, 10.4vw, 3rem); }
  .hero-lede { font-size: .98rem; line-height: 1.55; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { width: 100%; }
  .product-stage { margin-top: 36px; }
  .window-bar { height: 46px; padding-inline: 12px; font-size: .68rem; }
  .app-window { border-radius: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Headline spacing: give descenders such as g and y enough room at every viewport size. */
.hero h1 {
  line-height: 1.08;
  overflow: visible;
}
.hero h1 span {
  display: block;
  overflow: visible;
  padding-bottom: 0.08em;
}
.hero-title-accent {
  margin-top: 0.02em;
}

.other-modes-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 92, 255, .12), transparent 34%),
    linear-gradient(180deg, #080a15, #070913);
  border-top: 1px solid var(--line);
}
.other-modes-figure {
  margin: 0;
}
.other-modes-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #070913;
  box-shadow: var(--shadow);
}
.other-modes-figure figcaption {
  margin-top: 16px;
  color: var(--muted-2);
  text-align: center;
  font-size: .82rem;
}

@media (max-width: 640px) {
  .hero h1 {
    line-height: 1.1;
  }
  .hero h1 span {
    padding-bottom: 0.1em;
  }
  .other-modes-figure img {
    border-radius: 17px;
  }
}
