:root {
  --bg: #05080d;
  --bg-mid: #060a12;
  --panel: #0d1a2e;
  --panel-2: #101f34;
  --line: rgba(38, 217, 255, 0.16);
  --line-strong: rgba(114, 242, 161, 0.35);
  --text: #eef7ff;
  --muted: #9db0c4;
  --muted-2: #64778d;
  --cyan: #26d9ff;
  --green: #72f2a1;
  --pink: #ff5cb0;
  --orange: #ffbd5c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(38, 217, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #05080d 0%, #060a12 48%, #05080d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(5, 8, 13, 0.76);
  backdrop-filter: blur(18px);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  color: var(--cyan);
}

.brand,
.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 5px);
  align-items: end;
  gap: 3px;
  width: 26px;
  height: 28px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(13, 26, 46, 0.84);
}

.brand-mark i {
  display: block;
  width: 5px;
  border-radius: 2px;
}

.brand-mark i:nth-child(1) {
  height: 12px;
  background: var(--pink);
}

.brand-mark i:nth-child(2) {
  height: 18px;
  background: var(--cyan);
}

.brand-mark i:nth-child(3) {
  height: 15px;
  background: var(--green);
}

.brand-mark.small {
  width: 22px;
  height: 24px;
  grid-template-columns: repeat(3, 4px);
  gap: 2px;
}

.brand-mark.small i {
  width: 4px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(38, 217, 255, 0.45);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(650px, 1.18fr);
  gap: 34px;
  align-items: center;
  width: min(1280px, calc(100% - 32px));
  min-height: min(900px, calc(100vh - 72px));
  margin: 0 auto;
  padding: 38px 0 72px;
}

.hero-copy {
  min-width: 0;
  max-width: 560px;
}

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

h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: 0.89;
  font-weight: 900;
}

.hero-lede {
  max-width: 560px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 900;
}

.button-primary {
  background: var(--cyan);
  color: #031018;
  box-shadow: 0 0 28px rgba(38, 217, 255, 0.22);
}

.button-primary:hover {
  background: var(--green);
}

.button-secondary {
  border: 1px solid rgba(255, 92, 176, 0.52);
  background: rgba(13, 26, 46, 0.72);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 480px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  border-top: 1px solid var(--line);
  padding-top: 13px;
}

.hero-proof strong {
  display: block;
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.18rem;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.safety-line {
  max-width: 480px;
  margin-top: 18px;
  color: var(--cyan);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.support-strip {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.support-strip p {
  color: var(--muted-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.support-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.support-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(38, 217, 255, 0.22);
  border-radius: 7px;
  background: rgba(13, 26, 46, 0.58);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.support-strip span:nth-child(2),
.support-strip span:nth-child(6) {
  border-color: rgba(114, 242, 161, 0.26);
}

.support-strip span:nth-child(3) {
  border-color: rgba(255, 92, 176, 0.28);
}

.app-stage {
  position: relative;
  min-width: 0;
}

.real-app-stage {
  display: flex;
  align-items: center;
  overflow: visible;
}

.app-stage::before {
  content: "";
  position: absolute;
  inset: 9% -4% -8% 14%;
  background: linear-gradient(135deg, rgba(255, 92, 176, 0.32), rgba(38, 217, 255, 0.2) 48%, rgba(114, 242, 161, 0.28));
  filter: blur(34px);
  opacity: 0.72;
}

.real-app-shot {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(38, 217, 255, 0.24);
  border-radius: 14px;
  background: #05080d;
  box-shadow: var(--shadow);
}

.zoom-callout {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(38, 217, 255, 0.32);
  border-radius: 10px;
  background: rgba(6, 10, 18, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.zoom-callout::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(38, 217, 255, 0), var(--cyan));
}

.zoom-callout::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #05080d;
  box-shadow: 0 0 18px rgba(38, 217, 255, 0.72);
}

.zoom-callout span {
  display: block;
  color: var(--orange);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.zoom-callout strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.12;
}

.zoom-callout p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.38;
}

.zoom-library {
  top: 4%;
  left: 28%;
}

.zoom-library::before {
  left: 34px;
  bottom: -20px;
  transform: rotate(82deg);
}

.zoom-library::after {
  left: 84px;
  bottom: -50px;
}

.zoom-cues {
  right: 6%;
  bottom: 33%;
  border-color: rgba(255, 189, 92, 0.38);
}

.zoom-cues::before {
  right: 100%;
  top: 50%;
  background: linear-gradient(90deg, var(--orange), rgba(255, 189, 92, 0));
}

.zoom-cues::after {
  right: calc(100% + 50px);
  top: calc(50% - 4px);
  border-color: var(--orange);
  box-shadow: 0 0 18px rgba(255, 189, 92, 0.72);
}

.zoom-sources {
  left: -22px;
  bottom: 22%;
  border-color: rgba(255, 92, 176, 0.36);
}

.zoom-sources::before {
  left: 100%;
  top: 50%;
  background: linear-gradient(90deg, var(--pink), rgba(255, 92, 176, 0));
}

.zoom-sources::after {
  left: calc(100% + 50px);
  top: calc(50% - 4px);
  border-color: var(--pink);
  box-shadow: 0 0 18px rgba(255, 92, 176, 0.72);
}

.zoom-originals {
  right: -16px;
  bottom: 2%;
  border-color: rgba(114, 242, 161, 0.36);
}

.zoom-originals::before {
  right: 70px;
  top: -18px;
  transform: rotate(-52deg);
  background: linear-gradient(90deg, rgba(114, 242, 161, 0), var(--green));
}

.zoom-originals::after {
  right: 118px;
  top: -44px;
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(114, 242, 161, 0.72);
}

.app-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 217, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(13, 26, 46, 0.96), rgba(6, 10, 18, 0.98));
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(38, 217, 255, 0.14);
  color: var(--muted-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 7px;
}

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

.window-dots span:nth-child(2) {
  background: var(--cyan);
}

.window-dots span:nth-child(3) {
  background: var(--green);
}

.app-grid {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  min-width: 0;
  min-height: 520px;
}

.app-sidebar {
  padding: 20px 14px;
  border-right: 1px solid rgba(38, 217, 255, 0.12);
  background: rgba(5, 8, 13, 0.48);
}

.mini-brand {
  margin-bottom: 24px;
  font-size: 0.96rem;
}

.source {
  display: block;
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font: 700 0.78rem Inter, sans-serif;
  text-align: left;
  padding: 0 11px;
}

.source.active {
  border-color: rgba(38, 217, 255, 0.28);
  background: rgba(38, 217, 255, 0.1);
  color: var(--cyan);
}

.app-main {
  padding: 26px;
}

.score-row,
.export-panel,
.track-list div {
  border: 1px solid rgba(38, 217, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(6, 10, 18, 0.62);
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.app-label {
  color: var(--muted-2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.score-row h2 {
  margin-top: 8px;
  color: var(--text);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 4rem;
  line-height: 0.95;
}

.score-row h2 span {
  color: var(--muted-2);
  font-size: 1rem;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #08111e 56%, transparent 57%),
    conic-gradient(var(--green) 0deg 295deg, rgba(255, 255, 255, 0.08) 295deg 360deg);
  color: var(--green);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.6rem;
  font-weight: 800;
}

.bars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bars div {
  display: grid;
  grid-template-columns: 44px 1fr 42px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.bars b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) var(--w), rgba(255, 255, 255, 0.08) var(--w));
}

.bars em {
  color: var(--green);
  font-style: normal;
}

.export-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 20px;
}

.export-panel h3 {
  margin-top: 5px;
  font-size: 1.4rem;
}

.export-panel button {
  min-width: 82px;
  min-height: 40px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: #031018;
  font: 900 0.86rem Inter, sans-serif;
}

.track-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.track-list div {
  display: grid;
  grid-template-columns: 10px 42px 42px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
}

.cue {
  width: 8px;
  height: 26px;
  border-radius: 99px;
}

.cue.cyan {
  background: var(--cyan);
}

.cue.green {
  background: var(--green);
}

.cue.pink {
  background: var(--pink);
}

.track-list b,
.track-list strong {
  color: var(--text);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.track-list p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.track-list em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.track-list div:last-child em {
  color: var(--pink);
}

.workflow,
.problem-band,
.features,
.feature-band,
.morning-after,
.access,
.trust,
.pricing,
.story-band,
.faq,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.problem-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 44px;
  align-items: center;
  padding: 66px 0;
  border-top: 1px solid var(--line);
}

.problem-band h2,
.morning-after h2,
.story-band h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 900;
}

.problem-band p,
.morning-after p,
.story-band p,
.studio-card p,
.handoff-card p,
.access-grid p,
.feature-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.problem-band ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 92, 176, 0.22);
  border-radius: 12px;
  background: rgba(13, 26, 46, 0.56);
  list-style: none;
}

.problem-band li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.45;
}

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

.features,
.access {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.feature-grid,
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature-grid article,
.access-grid article {
  min-height: 236px;
  padding: 26px;
  background: rgba(5, 8, 13, 0.92);
}

.feature-grid h3,
.access-grid h3,
.handoff-card strong,
.studio-card strong {
  display: block;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.1;
}

.access-grid span,
.handoff-card span,
.studio-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow {
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
  gap: 28px;
  align-items: end;
}

.section-heading h2,
.feature-copy h2,
.pricing h2,
.faq h2 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.98;
  font-weight: 900;
}

.section-heading p,
.feature-copy p,
.pricing > div:first-child p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.step-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-block: 1px solid var(--line);
}

.step-line article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.step-line article:last-child {
  border-right: 0;
}

.step-line span {
  color: var(--pink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-line h3 {
  margin-top: 52px;
  font-size: 1.45rem;
}

.step-line p,
.trust p,
.price-card p,
.faq p,
.site-footer p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: center;
  padding: 62px;
  border: 1px solid rgba(114, 242, 161, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(13, 26, 46, 0.92), rgba(6, 10, 18, 0.94)),
    linear-gradient(90deg, rgba(38, 217, 255, 0.16), rgba(255, 92, 176, 0.1));
  box-shadow: var(--shadow);
}

.morning-after,
.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.handoff-card,
.studio-card {
  display: block;
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(38, 217, 255, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 26, 46, 0.88), rgba(6, 10, 18, 0.94)),
    #060a12;
  box-shadow: var(--shadow);
}

.handoff-card strong,
.studio-card strong {
  color: var(--green);
  font-size: 1.8rem;
}

.studio-card:hover {
  border-color: rgba(114, 242, 161, 0.5);
}

.report-card {
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(38, 217, 255, 0.24);
  border-radius: 10px;
  background: #05080d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.report-card p,
.report-card b,
.report-card small {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.report-card p {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
}

.report-card strong {
  display: block;
  margin-top: 52px;
  font-size: 5rem;
  line-height: 0.9;
}

.report-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.report-meter {
  height: 12px;
  margin-top: 54px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.report-meter i {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--green));
}

.report-card b {
  display: block;
  margin-top: 18px;
  color: var(--green);
}

.report-card small {
  display: block;
  margin-top: 52px;
  color: var(--muted-2);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 100px 0;
}

.trust article {
  border-left: 2px solid var(--cyan);
  padding-left: 20px;
}

.trust article:nth-child(2) {
  border-color: var(--green);
}

.trust article:nth-child(3) {
  border-color: var(--pink);
}

.trust h3 {
  font-size: 1.28rem;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 390px;
  gap: 52px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.story-band {
  border-top: 1px solid var(--line);
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(13, 26, 46, 0.96), rgba(6, 10, 18, 0.96));
  box-shadow: var(--shadow);
}

.price-card span {
  color: var(--orange);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-size: 5.5rem;
  line-height: 0.9;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-weight: 700;
}

.price-card li {
  display: flex;
  gap: 10px;
}

.price-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.price-card .button {
  width: 100%;
}

.checkout-note {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.faq {
  max-width: 820px;
  padding: 90px 0;
}

.faq h2 {
  margin-bottom: 30px;
  text-align: center;
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding-right: 34px;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: translateY(5px) rotate(225deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 360px;
  font-size: 0.9rem;
}

::selection {
  background: var(--cyan);
  color: #031018;
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .problem-band,
  .feature-band,
  .morning-after,
  .story-band,
  .pricing {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 12ch;
  }

  .app-stage {
    width: 100%;
    min-width: 0;
    max-width: 760px;
  }

  .zoom-callout {
    position: relative;
    inset: auto;
    width: auto;
  }

  .zoom-callout::before,
  .zoom-callout::after {
    display: none;
  }

  .real-app-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .real-app-shot {
    grid-column: 1 / -1;
  }

  .step-line,
  .trust,
  .feature-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .access-grid article {
    min-height: 0;
  }

  .step-line article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-line article:last-child {
    border-bottom: 0;
  }

  .step-line h3 {
    margin-top: 28px;
  }

  .feature-band {
    padding: 34px;
  }
}

@media (max-width: 720px) {
  body {
    background:
      radial-gradient(circle at 88% 12%, rgba(38, 217, 255, 0.13), transparent 19rem),
      linear-gradient(180deg, #05080d 0%, #060a12 48%, #05080d 100%);
  }

  .site-header {
    flex-wrap: wrap;
    width: 100%;
    min-height: 0;
    padding: 12px 16px;
  }

  .site-header nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
    overflow: hidden;
    padding-top: 8px;
    font-size: 0.8rem;
  }

  .site-header nav a:nth-child(2) {
    display: none;
  }

  .header-action {
    display: none;
  }

  .hero {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 15.2vw, 4rem);
    line-height: 0.94;
  }

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

  .real-app-stage {
    grid-template-columns: 1fr;
  }

  .zoom-callout {
    display: none;
  }

  .hero-actions,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions a {
    width: 100%;
  }

  .app-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(38, 217, 255, 0.12);
  }

  .mini-brand {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }

  .source {
    margin-top: 0;
    font-size: 0.72rem;
  }

  .app-main {
    padding: 16px;
    min-width: 0;
  }

  .score-row {
    padding: 18px;
  }

  .score-row h2 {
    font-size: 3.1rem;
  }

  .score-ring {
    width: 86px;
    height: 86px;
    font-size: 1.2rem;
  }

  .track-list div {
    grid-template-columns: 8px 34px 34px minmax(0, 1fr);
    min-height: 58px;
  }

  .track-list em {
    display: none;
  }

  .workflow,
  .problem-band,
  .features,
  .feature-band,
  .morning-after,
  .access,
  .trust,
  .pricing,
  .story-band,
  .faq,
  .site-footer {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .workflow,
  .features,
  .problem-band,
  .morning-after,
  .access,
  .trust,
  .pricing,
  .story-band,
  .faq {
    padding: 58px 0;
  }

  .feature-band {
    padding: 24px;
  }

  .report-card {
    min-height: 340px;
    padding: 22px;
  }

  .report-card strong {
    margin-top: 38px;
    font-size: 4rem;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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