:root {
  --bg: #0b0f1e;
  --bg-soft: #10162a;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.115);
  --line-soft: rgba(255, 255, 255, 0.075);
  --text: #f4f6ff;
  --muted: #aeb6d0;
  --accent: #818cf8;
  --accent-light: #a5b4fc;
  --gold: #f4ca8b;
  --success: #62d6a7;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 6%, rgba(129, 140, 248, 0.16), transparent 31rem),
    radial-gradient(circle at 8% 30%, rgba(244, 202, 139, 0.07), transparent 26rem),
    var(--bg);
  font-family: var(--font-sans);
  line-height: 1.65;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-soft {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.04));
}

.section-accent {
  overflow: hidden;
  border-block: 1px solid rgba(129, 140, 248, 0.18);
  background:
    radial-gradient(circle at 90% 10%, rgba(129, 140, 248, 0.15), transparent 26rem),
    linear-gradient(145deg, rgba(129, 140, 248, 0.05), rgba(244, 202, 139, 0.025));
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #0b0f1e;
  background: var(--gold);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient span:first-child {
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -12rem;
  top: 24rem;
  border: 1px solid rgba(129, 140, 248, 0.12);
  border-radius: 50%;
}

.ambient span:last-child {
  position: absolute;
  width: 18rem;
  height: 18rem;
  left: -9rem;
  top: 70rem;
  border: 1px solid rgba(244, 202, 139, 0.09);
  border-radius: 50%;
}

.ambient i {
  position: absolute;
  width: 1px;
  height: 48rem;
  top: 5rem;
  left: 72%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(24deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(11, 15, 30, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-text {
  padding-block: 10px;
}

.site-header .of-brand__word {
  font-size: 21px;
}

.header-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: 16px;
}

.header-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.header-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.mobile-anchor-nav {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: none;
  gap: 8px;
  overflow-x: auto;
  padding-block: 13px 2px;
  background: linear-gradient(180deg, rgba(11, 15, 30, 0.98), rgba(11, 15, 30, 0));
  scrollbar-width: none;
}

.mobile-anchor-nav::-webkit-scrollbar {
  display: none;
}

.mobile-anchor-nav a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  padding-inline: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  font-size: 13px;
  font-weight: 700;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0a0e1c;
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  box-shadow: 0 18px 42px rgba(129, 140, 248, 0.23);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(165, 180, 252, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.site-header .btn {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  display: grid;
  min-height: calc(100svh - 78px);
  align-items: center;
  overflow: hidden;
  padding-top: clamp(52px, 8vw, 94px);
  padding-bottom: clamp(72px, 9vw, 110px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: clamp(38px, 6vw, 80px);
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding-inline: 13px;
  border: 1px solid rgba(129, 140, 248, 0.28);
  border-radius: 999px;
  color: var(--accent-light);
  background: rgba(129, 140, 248, 0.075);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  margin: 22px 0 24px;
  font-size: clamp(40px, 5.7vw, 72px);
  letter-spacing: -0.047em;
}

h2 {
  margin: 18px 0 22px;
  font-size: clamp(32px, 4.3vw, 52px);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: -0.022em;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 30px;
  color: #c4cbe0;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.62;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  top: 0.68em;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(98, 214, 167, 0.09);
}

.hero-visual {
  position: relative;
  min-height: 530px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 3% 0 8% 6%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.19), rgba(129, 140, 248, 0.045) 52%, transparent 68%);
  filter: blur(6px);
}

.control-card,
.phone-card,
.floating-tag {
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.control-card {
  position: absolute;
  width: min(100%, 465px);
  right: 0;
  top: 34px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(29, 37, 67, 0.96), rgba(14, 19, 38, 0.94));
  transform: rotate(1.4deg);
}

.window-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 7px;
  padding-inline: 17px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
}

.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.window-bar span:first-child {
  background: var(--gold);
}

.window-bar b {
  margin-left: auto;
  font-weight: 600;
}

.control-body {
  padding: 20px;
}

.control-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.control-status i {
  padding: 5px 9px;
  border-radius: 999px;
  color: #082217;
  background: var(--success);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-question {
  padding: 18px;
  border: 1px solid rgba(165, 180, 252, 0.19);
  border-radius: 17px;
  background: rgba(129, 140, 248, 0.085);
}

.control-question small {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 11px;
  text-transform: uppercase;
}

.control-question strong {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.45;
}

.control-question div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
}

.control-question div span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #0c1020;
  background: var(--accent-light);
  font-weight: 700;
}

.control-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.control-metrics span {
  padding: 13px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.control-metrics b,
.control-metrics small {
  display: block;
}

.control-metrics b {
  font-size: 12px;
}

.control-metrics small {
  color: var(--muted);
  font-size: 9px;
}

.phone-card {
  position: absolute;
  width: 220px;
  left: 0;
  bottom: 15px;
  z-index: 2;
  overflow: hidden;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(165deg, rgba(23, 30, 55, 0.98), rgba(10, 14, 28, 0.98));
  transform: rotate(-4deg);
}

.phone-card::before {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin: -5px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}

.phone-top span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
}

.phone-top b {
  color: var(--text);
  font-size: 10px;
}

.phone-top i {
  font-style: normal;
}

.phone-event {
  min-height: 132px;
  margin-top: 13px;
  padding: 17px 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 202, 139, 0.3), transparent 6rem),
    linear-gradient(145deg, rgba(129, 140, 248, 0.32), rgba(129, 140, 248, 0.08));
}

.phone-event small,
.phone-event strong {
  display: block;
}

.phone-event small {
  margin-bottom: 12px;
  color: #d8dcf1;
  font-size: 9px;
}

.phone-event strong {
  font-size: 15px;
  line-height: 1.35;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 9px;
}

.phone-actions span {
  padding: 9px 6px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.phone-nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 5px 3px;
  color: var(--muted);
  font-size: 8px;
}

.phone-nav b:nth-child(2) {
  color: var(--accent-light);
}

.floating-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(16, 22, 42, 0.88);
  font-size: 11px;
  font-weight: 700;
}

.tag-screen {
  right: 7px;
  bottom: 70px;
}

.tag-overlay {
  left: 28%;
  top: 8px;
}

.split-heading,
.organizer-grid,
.report-grid,
.audience-grid,
.faq-grid,
.no-install-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 8vw, 110px);
}

.split-heading {
  align-items: start;
}

.split-heading h2 {
  max-width: 550px;
}

.lead-copy,
.section-heading > p,
.section-heading > p + p {
  color: var(--muted);
  font-size: 17px;
}

.lead-copy p {
  margin-bottom: 17px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-block: 1px solid var(--line);
}

.journey article {
  position: relative;
  min-height: 222px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

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

.journey span,
.format-grid > article > span {
  display: block;
  margin-bottom: 27px;
  color: var(--accent-light);
  font-family: var(--font-mono), monospace;
  font-size: 12px;
}

.journey h3 {
  font-size: 19px;
}

.journey p,
.feature-card p,
.mechanics-grid p,
.format-grid p,
.output-grid p,
.audience-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading.centered > p {
  max-width: 760px;
  margin-inline: auto;
}

.section-heading.narrow {
  max-width: 750px;
}

.feature-grid,
.mechanics-grid,
.format-grid,
.output-grid {
  display: grid;
  gap: 15px;
}

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

.feature-card,
.mechanics-grid article,
.format-grid article,
.output-grid > article {
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover,
.mechanics-grid article:hover,
.format-grid article:hover,
.output-grid > article:hover {
  border-color: rgba(165, 180, 252, 0.25);
  background: var(--surface-strong);
  transform: translateY(-3px);
}

.feature-card {
  min-height: 315px;
  padding: 27px;
  border-radius: 20px;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(129, 140, 248, 0.27);
  border-radius: 14px;
  color: var(--accent-light);
  background: rgba(129, 140, 248, 0.08);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
}

.organizer-grid {
  align-items: center;
}

.text-link,
.home-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--accent-light);
  font-weight: 700;
}

.text-link span {
  font-size: 22px;
  transition: transform 0.18s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.organizer-list {
  border-top: 1px solid var(--line);
}

.organizer-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.organizer-list article > span {
  display: grid;
  width: 54px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(129, 140, 248, 0.26);
  border-radius: 999px;
  color: var(--accent-light);
  background: rgba(129, 140, 248, 0.07);
  font-family: var(--font-mono), monospace;
  font-size: 10px;
}

.organizer-list h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.organizer-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.mechanics-grid,
.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mechanics-grid article {
  min-height: 280px;
  padding: 28px;
  border-radius: 20px;
}

.mechanic-mark {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  color: #0b0f1e;
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  font-size: 17px;
  font-weight: 800;
}

.formats-intro {
  align-items: center;
  margin-bottom: 48px;
}

.formats-intro .lead-copy {
  margin: 0;
}

.format-grid article {
  min-height: 240px;
  padding: 26px;
  border-radius: 18px;
}

.format-grid > article > span {
  margin-bottom: 28px;
}

.no-install-grid {
  align-items: center;
}

.no-install-visual {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(129, 140, 248, 0.16), transparent 53%),
    rgba(255, 255, 255, 0.025);
}

.qr-card {
  position: relative;
  display: grid;
  width: 156px;
  height: 156px;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: #f3f5ff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
}

.qr-card span {
  border: 10px solid #11172b;
  border-radius: 5px;
}

.qr-card span:nth-child(2),
.qr-card span:nth-child(3) {
  border-width: 5px;
  border-radius: 50%;
}

.qr-card i {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 32px;
  bottom: 31px;
  background: #11172b;
  box-shadow: -29px 0 #11172b, 0 -29px #11172b;
}

.entry-line {
  position: absolute;
  display: flex;
  right: 24px;
  bottom: 30px;
  left: 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.entry-line b {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.entry-line span {
  width: 28px;
  height: 1px;
  background: rgba(165, 180, 252, 0.34);
}

.output-section .section-heading {
  margin-bottom: 52px;
}

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

.output-grid > article {
  padding: 14px 14px 28px;
  border-radius: 22px;
}

.output-grid h3,
.output-grid p {
  margin-inline: 14px;
}

.output-preview {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 25px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}

.output-preview span,
.output-preview i {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.output-preview strong {
  position: relative;
  z-index: 1;
  margin-block: 8px 12px;
  font-size: 19px;
  line-height: 1.25;
}

.output-preview i {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  color: #0b0f1e;
  background: var(--gold);
  font-weight: 700;
}

.screen-preview {
  background:
    linear-gradient(0deg, rgba(8, 12, 25, 0.84), transparent 74%),
    radial-gradient(circle at 72% 22%, rgba(244, 202, 139, 0.48), transparent 7rem),
    linear-gradient(135deg, #333e87, #171d38);
}

.overlay-preview {
  background-color: #161d36;
  background-image:
    linear-gradient(45deg, #222b4a 25%, transparent 25%),
    linear-gradient(-45deg, #222b4a 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #222b4a 75%),
    linear-gradient(-45deg, transparent 75%, #222b4a 75%);
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.overlay-preview::after {
  content: "";
  position: absolute;
}

.stage-preview {
  background:
    linear-gradient(0deg, rgba(8, 12, 25, 0.74), transparent),
    linear-gradient(145deg, #29345e, #11162b);
}

.report-grid {
  align-items: center;
}

.report-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(31, 39, 70, 0.84), rgba(16, 21, 41, 0.84));
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.25);
}

.report-card-head,
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.report-card-head {
  margin-bottom: 28px;
}

.report-card-head span {
  font-size: 19px;
  font-weight: 700;
}

.report-card-head b {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--accent-light);
  background: rgba(129, 140, 248, 0.1);
  font-size: 10px;
  text-transform: uppercase;
}

.report-bars {
  display: flex;
  height: 150px;
  align-items: end;
  justify-content: space-between;
  gap: 9px;
  margin-bottom: 24px;
  padding: 20px 18px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 100% 34px;
}

.report-bars span {
  display: flex;
  height: 100%;
  flex: 1;
  align-items: end;
}

.report-bars i {
  display: block;
  width: 100%;
  height: 38%;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--accent-light), rgba(129, 140, 248, 0.34));
}

.report-bars span:nth-child(2) i { height: 72%; }
.report-bars span:nth-child(3) i { height: 52%; }
.report-bars span:nth-child(4) i { height: 88%; background: linear-gradient(180deg, var(--gold), rgba(244, 202, 139, 0.32)); }
.report-bars span:nth-child(5) i { height: 64%; }

.report-row {
  padding-block: 12px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row b {
  color: var(--text);
  font-size: 11px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

thead th {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody th {
  width: 20%;
  color: var(--text);
  font-size: 14px;
}

tbody td {
  width: 40%;
  color: var(--muted);
  font-size: 14px;
}

tbody td:last-child {
  color: #dce0f3;
  background: rgba(129, 140, 248, 0.045);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.audience-grid {
  align-items: start;
}

.audience-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.audience-list > li > span {
  color: var(--accent-light);
  font-family: var(--font-mono), monospace;
  font-size: 11px;
}

.audience-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.faq-section {
  border-top: 1px solid var(--line-soft);
}

.faq-grid {
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 116px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 1px;
  right: 8px;
  top: 50%;
  background: var(--accent-light);
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 740px;
  margin: -6px 48px 24px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-cta {
  padding-top: 50px;
}

.final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(165, 180, 252, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 0, rgba(244, 202, 139, 0.18), transparent 23rem),
    radial-gradient(circle at 0 100%, rgba(129, 140, 248, 0.19), transparent 28rem),
    rgba(255, 255, 255, 0.045);
}

.final-cta h2 {
  max-width: 770px;
}

.final-cta p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
}

.home-link {
  margin-top: 10px;
  font-size: 13px;
}

.cta-actions {
  min-width: 240px;
  flex-direction: column;
}

.site-footer {
  padding: 46px 0 60px;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-text,
.footer-links a,
.footer-contact a {
  color: var(--muted);
  font-size: 13px;
}

.footer-text {
  max-width: 330px;
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-contact strong {
  margin-bottom: 4px;
  font-size: 13px;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--text);
}

@media (max-width: 1060px) {
  .header-nav {
    display: none;
  }

  .mobile-anchor-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 35px;
  }

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

  .feature-card {
    min-height: 270px;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

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

  .journey article:nth-child(2) {
    border-right: 0;
  }

  .journey article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .output-grid {
    grid-template-columns: 1fr 1fr;
  }

  .output-grid > article:last-child {
    grid-column: 1 / -1;
  }

  .output-grid > article:last-child .output-preview {
    min-height: 160px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, 680px);
  }

  .header-actions .btn-ghost {
    display: none;
  }

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

  .hero-grid,
  .split-heading,
  .organizer-grid,
  .report-grid,
  .audience-grid,
  .faq-grid,
  .no-install-grid,
  .final-cta-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-visual {
    width: min(100%, 550px);
    min-height: 490px;
    margin-inline: auto;
  }

  .journey {
    margin-top: 42px;
  }

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

  .no-install-visual {
    min-height: 330px;
  }

  .faq-heading {
    position: static;
  }

  .cta-actions {
    min-width: 0;
    flex-direction: row;
  }

  .footer-inner {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 126px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding-block: 66px;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .site-header .of-brand__word {
    font-size: 19px;
  }

  .site-header .btn {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .mobile-anchor-nav {
    top: 70px;
  }

  h1 {
    font-size: clamp(37px, 12vw, 51px);
  }

  h2 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-points {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 430px;
  }

  .control-card {
    width: calc(100% - 18px);
  }

  .phone-card {
    width: 184px;
  }

  .phone-event {
    min-height: 112px;
  }

  .control-body {
    padding: 14px;
  }

  .control-question {
    padding: 14px;
  }

  .control-question div span {
    display: none;
  }

  .tag-screen {
    display: none;
  }

  .feature-grid-four,
  .mechanics-grid,
  .format-grid,
  .output-grid,
  .journey {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .mechanics-grid article,
  .format-grid article {
    min-height: auto;
  }

  .journey article,
  .journey article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .feature-icon,
  .mechanic-mark {
    margin-bottom: 25px;
  }

  .organizer-list article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .organizer-list article > span {
    width: 46px;
  }

  .output-grid > article:last-child {
    grid-column: auto;
  }

  .output-grid > article:last-child .output-preview,
  .output-preview {
    min-height: 190px;
  }

  .audience-list li {
    grid-template-columns: 37px 1fr;
    gap: 12px;
  }

  .faq-list summary {
    padding-right: 40px;
    font-size: 16px;
  }

  .faq-list details p {
    margin-right: 12px;
    font-size: 14px;
  }

  .final-cta {
    padding-top: 32px;
  }

  .final-cta-box {
    padding: 30px 22px;
    border-radius: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
