:root {
  color-scheme: dark;
  --bg: #080b10;
  --bg-2: #0d141c;
  --panel: rgba(18, 25, 34, 0.76);
  --panel-strong: rgba(23, 31, 42, 0.9);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 193, 126, 0.38);
  --text: #fff8ec;
  --muted: #b9c0ca;
  --muted-2: #858e9b;
  --accent: #ffac64;
  --accent-2: #ffd08a;
  --accent-dark: #b95718;
  --cyan: #8ad5cb;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  --container: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(255, 172, 100, 0.08), transparent 28%),
    linear-gradient(180deg, #0a0d12 0%, #0c1219 42%, #080b10 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      150deg,
      rgba(255, 188, 112, 0.08) 0,
      rgba(255, 188, 112, 0.08) 1px,
      transparent 1px,
      transparent 42px
    ),
    linear-gradient(90deg, rgba(8, 11, 16, 0.1), rgba(8, 11, 16, 0.74));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 70%, transparent 100%);
  opacity: 0.38;
}

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

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

button {
  font: inherit;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.mobile-break {
  display: none;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #160d07;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0 10px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.88), rgba(8, 11, 16, 0.28) 72%, transparent);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(8, 11, 16, 0.94), rgba(8, 11, 16, 0.46) 76%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 211, 145, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 172, 100, 0.045)),
    rgba(8, 11, 16, 0.72);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 208, 138, 0.34),
    0 14px 42px rgba(255, 172, 100, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 172, 100, 0.42);
  border-radius: 8px;
  background: rgba(255, 172, 100, 0.13);
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 208, 138, 0.8);
  background: rgba(255, 172, 100, 0.2);
}

.nav-toggle {
  display: none;
  width: 58px;
  height: 58px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 42px rgba(0, 0, 0, 0.22);
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 6px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 62px 0 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 208, 138, 0.12), transparent 34%),
    radial-gradient(circle at 78% 64%, rgba(255, 147, 65, 0.18), transparent 31%),
    linear-gradient(135deg, rgba(255, 172, 100, 0.045), transparent 34%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 16, 0.12), rgba(8, 11, 16, 0.76)),
    repeating-linear-gradient(
      150deg,
      transparent 0,
      transparent 34px,
      rgba(255, 188, 112, 0.06) 35px,
      transparent 36px
    );
  opacity: 0.68;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 172, 100, 0.55), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.hero-grid > *,
.split-section > *,
.faq-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 4.45vw, 64px);
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  align-items: center;
}

.hero-copy > .cta-row {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

.cta-row-center {
  justify-content: center;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 850;
  isolation: isolate;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease,
    border-color 170ms ease;
  white-space: nowrap;
}

.hero-copy > .cta-row .btn {
  width: 100%;
  min-height: 62px;
  padding-inline: 24px;
  font-size: 18px;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  pointer-events: none;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn-primary {
  color: #1c0f06;
  border: 1px solid rgba(255, 220, 160, 0.9);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 245, 205, 0.8), transparent 30%),
    linear-gradient(135deg, var(--accent-2), var(--accent) 62%, #f28a3c);
  box-shadow:
    0 20px 54px rgba(255, 151, 70, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(255, 151, 70, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 40px rgba(0, 0, 0, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 208, 138, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-copy > .hero-notes {
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hero-notes > span {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 180, 94, 0.26);
  border-radius: 14px;
  color: #f5efe6;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 172, 100, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(10, 15, 22, 0.72);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: left;
  backdrop-filter: blur(16px);
}

.hero-notes > span > svg {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid rgba(255, 208, 138, 0.28);
  border-radius: 999px;
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 172, 100, 0.1);
  box-shadow: 0 12px 34px rgba(255, 172, 100, 0.12);
}

.hero-notes > span > span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.hero-notes strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.12;
}

.hero-notes small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -18% 7% -14%;
  z-index: -1;
  border: 1px solid rgba(255, 172, 100, 0.28);
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 172, 100, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(255, 172, 100, 0.1), transparent 38%),
    repeating-linear-gradient(
      -16deg,
      transparent 0,
      transparent 22px,
      rgba(138, 213, 203, 0.08) 23px,
      transparent 24px
    );
  filter: drop-shadow(0 30px 90px rgba(255, 172, 100, 0.18));
  transform: skewY(-5deg);
}

.phone-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 211, 145, 0.34);
  border-radius: 18px;
  background: #07090d;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 70px rgba(255, 172, 100, 0.18);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 188, 112, 0.22);
  border-radius: 18px;
  pointer-events: none;
}

.phone-shell img {
  width: 100%;
  height: auto;
}

.floating-card {
  display: none;
}

.floating-card span {
  display: block;
  color: var(--accent-2);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.floating-card strong {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.floating-card-top {
  right: -32px;
  top: 16%;
}

.floating-card-bottom {
  left: -28px;
  bottom: 14%;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header-left {
  margin: 0;
  text-align: left;
}

.section h2,
.final-cta h2 {
  font-size: 40px;
}

.section-header p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card,
.audience-item,
.step,
.plan-card,
.faq-item,
.screen-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.mini-icon {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 208, 138, 0.3);
  border-radius: 10px;
  color: var(--accent-2);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 208, 138, 0.18), transparent 54%),
    rgba(255, 172, 100, 0.07);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 226px;
  padding: 22px;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(255, 172, 100, 0.055), rgba(138, 213, 203, 0.035)),
    rgba(13, 20, 28, 0.8);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), rgba(255, 172, 100, 0.18));
  opacity: 0.72;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  z-index: -1;
  height: 74px;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(ellipse at center, rgba(255, 172, 100, 0.13), transparent 68%);
  opacity: 0.72;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(24, 32, 43, 0.88);
}

.chord-helper {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 172, 100, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 172, 100, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 172, 100, 0.1), rgba(138, 213, 203, 0.045)),
    rgba(13, 20, 28, 0.86);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.chord-helper::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  z-index: -1;
  height: 74px;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(ellipse at center, rgba(255, 172, 100, 0.18), transparent 70%);
}

.chord-helper-main {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.chord-helper .feature-kicker {
  margin: 0;
}

.chord-helper-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 14px;
  color: var(--accent-2);
}

.chord-helper h3 {
  margin: 10px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.chord-helper p:not(.feature-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.chord-helper-tags {
  display: flex;
  max-width: 390px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.chord-helper-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 208, 138, 0.28);
  border-radius: 8px;
  color: #fff1da;
  background:
    linear-gradient(135deg, rgba(255, 172, 100, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.feature-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 172, 100, 0.32);
  border-radius: 8px;
  color: var(--accent-2);
  background: rgba(255, 172, 100, 0.09);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card h3,
.audience-item h3,
.step h3,
.plan-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-card p,
.audience-item p,
.step p,
.plan-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.feature-card p {
  margin-bottom: 22px;
}

.feature-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  margin-top: auto;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff1da;
  background:
    linear-gradient(135deg, rgba(255, 172, 100, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.audience {
  background:
    linear-gradient(90deg, rgba(255, 172, 100, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.split-section,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

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

.audience-item {
  position: relative;
  display: flex;
  min-height: 176px;
  padding: 22px;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(138, 213, 203, 0.055), rgba(255, 172, 100, 0.035)),
    rgba(13, 20, 28, 0.78);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.audience-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(138, 213, 203, 0.1), transparent 46%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.audience-item:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 213, 203, 0.32);
  background: rgba(18, 26, 35, 0.86);
}

.audience-item:hover::before {
  opacity: 1;
}

.audience-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.audience-icon {
  color: var(--cyan);
  border-color: rgba(138, 213, 203, 0.3);
  background:
    radial-gradient(circle at 50% 18%, rgba(138, 213, 203, 0.16), transparent 54%),
    rgba(138, 213, 203, 0.06);
}

.audience-item h3 {
  position: relative;
  margin-top: 0;
}

.audience-head h3 {
  margin: 2px 0 0;
}

.audience-item p {
  position: relative;
  margin-bottom: 20px;
}

.audience-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  margin-top: auto;
  padding: 0 10px;
  border: 1px solid rgba(138, 213, 203, 0.36);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(138, 213, 203, 0.075);
  font-size: 13px;
  font-weight: 850;
  text-transform: lowercase;
}

.screenshots {
  position: relative;
  overflow: hidden;
}

.screenshots::before,
.screenshots::after {
  content: "";
  position: absolute;
  top: 190px;
  bottom: 70px;
  z-index: 2;
  width: min(9vw, 92px);
  pointer-events: none;
}

.screenshots::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.screenshots::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.screens-gallery {
  position: relative;
  width: calc(100vw - 40px);
  max-width: 1320px;
  margin: 0 auto;
}

.screens-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 25vw, 360px);
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 8px 2px 30px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 172, 100, 0.5) rgba(255, 255, 255, 0.08);
  contain: layout paint;
  -webkit-overflow-scrolling: touch;
}

.screens-strip::-webkit-scrollbar {
  height: 10px;
}

.screens-strip::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.screens-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 172, 100, 0.58), rgba(196, 132, 72, 0.8));
}

.gallery-arrow {
  position: absolute;
  top: calc(50% - 15px);
  z-index: 5;
  display: inline-flex;
  width: 54px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 210, 145, 0.3);
  border-radius: 8px;
  color: #ffe0b5;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 172, 100, 0.2), transparent 42%),
    rgba(11, 16, 23, 0.78);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease,
    opacity 170ms ease;
}

.gallery-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(255, 210, 145, 0.58);
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 172, 100, 0.28), transparent 46%),
    rgba(17, 23, 31, 0.88);
}

.gallery-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.gallery-arrow:disabled:hover,
.gallery-arrow:disabled:focus-visible {
  transform: translateY(-50%);
  border-color: rgba(255, 210, 145, 0.3);
}

.gallery-arrow-prev {
  left: 10px;
}

.gallery-arrow-next {
  right: 10px;
}

.screen-card {
  margin: 0;
  padding: 7px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 172, 100, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(12, 18, 26, 0.84);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.screen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 172, 100, 0.38);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.screen-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.screen-card:hover img {
  transform: scale(1.01);
}

.how {
  background: linear-gradient(180deg, rgba(138, 213, 203, 0.04), rgba(255, 172, 100, 0.04));
}

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

.steps::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 172, 100, 0.62), transparent);
}

.step {
  position: relative;
  z-index: 1;
  min-height: 212px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 172, 100, 0.06), rgba(138, 213, 203, 0.03)),
    rgba(13, 20, 28, 0.82);
}

.step::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 27px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow:
    0 0 0 8px rgba(255, 172, 100, 0.1),
    0 0 28px rgba(255, 172, 100, 0.42);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 24px;
}

.step-icon {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  margin-left: 24px;
  padding: 0 10px;
  border: 1px solid rgba(255, 172, 100, 0.28);
  border-radius: 8px;
  color: var(--accent-2);
  background: rgba(255, 172, 100, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.step-head .step-label {
  margin-left: 0;
}

.step h3 {
  margin-top: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 24px;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 172, 100, 0.1), transparent 34%),
    rgba(13, 20, 28, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 208, 138, 0.34);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.26);
}

.plan-card-pro {
  border-color: rgba(255, 172, 100, 0.48);
  background:
    linear-gradient(135deg, rgba(255, 172, 100, 0.14), rgba(138, 213, 203, 0.06)),
    rgba(13, 20, 28, 0.88);
}

.plan-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.plan-card-pro .plan-top {
  padding-right: 58px;
}

.plan-heading-text {
  min-width: 0;
}

.plan-top h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.plan-top p {
  margin: 7px 0 0;
  max-width: 560px;
}

.plan-icon {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  border-radius: 999px;
}

.plan-icon svg {
  width: 22px;
  height: 22px;
}

.plan-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 208, 138, 0.55);
  border-radius: 8px;
  color: #1c0f06;
  background: var(--accent-2);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: #e9eef3;
  line-height: 1.45;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 0 4px rgba(255, 172, 100, 0.1);
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 20px 52px 20px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 820;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--accent-2);
  font-size: 25px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: 86px 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 172, 100, 0.14), rgba(138, 213, 203, 0.08)),
    #0b1118;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  max-width: 820px;
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 38px 0 42px;
  border-top: 1px solid var(--line);
  background: #070a0f;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
}

.site-footer p {
  max-width: 430px;
  margin: 14px 0 0;
}

.privacy-note {
  color: #e3c7a5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  color: #edf2f7;
  font-weight: 760;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-2);
}

.reveal {
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 36px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .split-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 78px;
    gap: 14px;
    padding: 9px 12px;
    border-radius: 22px;
  }

  .brand {
    gap: 12px;
    font-size: 24px;
  }

  .brand img {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 104px;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 172, 100, 0.035)),
      rgba(9, 13, 19, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 38px 0 62px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    max-width: 640px;
    font-size: 20px;
  }

  .hero-visual {
    width: 100%;
    max-width: 370px;
    justify-self: center;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 28px;
    text-align: left;
  }

  .chord-helper {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chord-helper-tags {
    max-width: none;
    justify-content: flex-start;
  }

  .audience-list,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 14px;
  }

  .steps::before {
    left: 20px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 172, 100, 0.08), rgba(255, 172, 100, 0.62), rgba(255, 172, 100, 0.08));
  }

  .step {
    min-height: auto;
    padding: 20px 20px 20px 44px;
  }

  .step::before {
    left: 16px;
    top: 24px;
  }

  .step-label {
    margin-left: 0;
  }

  .step-head {
    padding-left: 0;
  }

  .screens-gallery {
    width: 100vw;
    max-width: none;
  }

  .gallery-arrow {
    display: none;
  }

  .screens-strip {
    grid-auto-columns: min(78vw, 330px);
    width: calc(100vw - 14px);
    margin: 0 auto;
    padding-left: 7px;
    padding-right: 7px;
  }

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

  .footer-links {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 19px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 26px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 172, 100, 0.08), rgba(255, 255, 255, 0.035)),
      rgba(8, 11, 16, 0.48);
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero-copy > .cta-row {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
  }

  .btn {
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding: 0 0 4px;
    overflow: visible;
    scrollbar-width: none;
  }

  .hero-copy > .hero-notes {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-notes::-webkit-scrollbar {
    display: none;
  }

  .hero-notes > span {
    min-height: 88px;
    padding: 10px 8px;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e3e9ef;
    background:
      radial-gradient(circle at 50% 10%, rgba(255, 172, 100, 0.16), transparent 42%),
      rgba(255, 255, 255, 0.045);
  }

  .hero-notes > span > svg {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .hero-notes strong {
    font-size: 15px;
  }

  .hero-notes small {
    font-size: 12px;
  }

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

  .feature-card,
  .audience-item,
  .step,
  .plan-card {
    min-height: auto;
    padding: 18px;
  }

  .mini-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 9px;
  }

  .mini-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-heading {
    flex-wrap: wrap;
  }

  .feature-card {
    padding-left: 20px;
  }

  .feature-card::before {
    inset: 16px auto 16px 0;
  }

  .feature-meta {
    min-height: 32px;
    white-space: normal;
  }

  .chord-helper {
    margin-top: 14px;
    padding: 18px;
  }

  .chord-helper-main {
    gap: 12px;
  }

  .chord-helper-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 10px;
  }

  .chord-helper h3 {
    font-size: 24px;
  }

  .chord-helper p:not(.feature-kicker) {
    font-size: 16px;
  }

  .chord-helper-tags {
    gap: 7px;
  }

  .chord-helper-tags span {
    min-height: 31px;
    padding: 0 9px;
    font-size: 12px;
  }

  .audience-item {
    padding: 18px;
  }

  .audience-head {
    gap: 10px;
  }

  .audience-item p {
    margin-bottom: 16px;
  }

  .step {
    padding: 18px 18px 18px 42px;
  }

  .step-head {
    gap: 8px;
  }

  .step::before {
    left: 15px;
    top: 22px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .mobile-break {
    display: block;
  }

  .hero-visual {
    max-width: 335px;
  }

  .section-header p:not(.eyebrow),
  .final-cta p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-copy,
  .section-header,
  .feature-card,
  .audience-item,
  .step,
  .plan-card,
  .faq-item {
    overflow-wrap: anywhere;
  }

  .screenshots::before,
  .screenshots::after {
    display: none;
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-cta::before {
    inset: 10px;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 22px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-notes > span {
    min-height: 82px;
    padding: 9px 6px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 25px;
  }

  .screens-strip {
    grid-auto-columns: min(80vw, 300px);
  }
}

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