:root {
  color-scheme: light;
  --site-bg: #F7F1E6;
  --site-bg-deep: #FBF6EC;
  --site-panel: rgba(255, 252, 246, 0.86);
  --site-panel-muted: #EFE4D0;
  --site-line: #E0D2BA;
  --site-line-strong: #D8C9B2;
  --site-text: #2D2A26;
  --site-soft: #7E7466;
  --site-muted: #9C9183;
  --site-brand: #2F7D70;
  --site-brand-strong: #25685E;
  --site-brand-rgb: 47, 125, 112;
  --site-on-brand: #FFFFFF;
  --site-nav-bg: rgba(247, 241, 230, 0.94);
  --site-visual-bg: #FFFCF6;
  --site-phone-stage-bg: #FFFCF6;
  --site-footer-bg: #F1E8D8;
  --site-input-bg: rgba(255, 252, 246, 0.9);
  --site-row-label-bg: rgba(229, 214, 190, 0.42);
  --site-shadow: rgba(84, 66, 42, 0.16);
  --site-disabled-bg: #EFE4D0;
  --site-disabled-border: #DDD0BA;
  --site-disabled-text: #9C9183;
  --site-success: #2F7D70;
  --site-error: #B85C4B;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --site-bg: #101124;
  --site-bg-deep: #0B0D1D;
  --site-panel: #1C2038;
  --site-panel-muted: #242842;
  --site-line: #2C314F;
  --site-line-strong: #363C5D;
  --site-text: #F5F6FB;
  --site-soft: #AEB4C7;
  --site-muted: #777F98;
  --site-brand: #FF5773;
  --site-brand-strong: #E74763;
  --site-brand-rgb: 255, 87, 115;
  --site-on-brand: #FFFFFF;
  --site-nav-bg: rgba(16, 17, 36, 0.94);
  --site-visual-bg: #15182E;
  --site-phone-stage-bg: #262B46;
  --site-footer-bg: #0B0D1D;
  --site-input-bg: rgba(11, 13, 29, 0.58);
  --site-row-label-bg: rgba(11, 13, 29, 0.28);
  --site-shadow: rgba(0, 0, 0, 0.32);
  --site-disabled-bg: #2A2E48;
  --site-disabled-border: #363C5D;
  --site-disabled-text: #8E96AD;
  --site-success: #DFE3EF;
  --site-error: #FF9AAD;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--site-bg);
  color: var(--site-text);
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--site-line);
  background: var(--site-nav-bg);
  backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--site-brand);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: var(--site-panel);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}

.brand-mark-wave {
  display: block;
  width: 30px;
  height: 30px;
  color: var(--site-brand);
  fill: currentColor;
}

.brand-name {
  font-size: 24px;
  line-height: 1;
  color: var(--site-brand);
  transition: color 160ms ease;
}

.brand:hover .brand-name {
  color: var(--site-brand-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--site-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--site-text);
}

.nav-download {
  padding: 9px 13px;
  border-radius: 8px;
  background: rgba(var(--site-brand-rgb), 0.14);
  color: var(--site-brand) !important;
}

.theme-toggle {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-panel);
  color: var(--site-soft);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.theme-toggle:hover {
  background: var(--site-panel-muted);
  border-color: var(--site-line-strong);
  color: var(--site-brand);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(var(--site-brand-rgb), 0.22);
  outline-offset: 2px;
}

.theme-toggle svg {
  width: 19px;
  height: 19px;
}

.theme-icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-icon-sun {
  display: block;
}

:root[data-theme="dark"] .theme-icon-moon {
  display: none;
}

.hero {
  border-bottom: 1px solid var(--site-line);
  background: var(--site-bg-deep);
}

.hero-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 76px 28px 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 38px;
}

.hero-copy {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

h1 {
  margin: 0 0 18px;
  color: var(--site-brand);
  font-size: 74px;
  line-height: 1;
  font-weight: 800;
}

.hero-lede {
  margin: 0 auto 28px;
  max-width: 760px;
  color: var(--site-soft);
  font-size: 23px;
  line-height: 1.45;
}

.download-panel {
  max-width: 540px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.platform-download-group {
  order: 2;
  padding: 16px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-panel);
}

.platform-download-group.is-recommended {
  order: 1;
  border-color: rgba(var(--site-brand-rgb), 0.48);
}

:root[data-platform="windows"] .windows-download-group {
  order: 1;
}

:root[data-platform="windows"] .mac-download-group {
  display: none;
}

:root[data-platform="mac"] .windows-download-group {
  display: none;
}

.download-group-title {
  margin-bottom: 12px;
  color: var(--site-text);
  font-size: 15px;
  font-weight: 800;
}

.mac-download-group {
  padding: 0;
  border: 0;
  background: transparent;
}

.mac-download-group.is-recommended {
  border-color: transparent;
}

.mac-download-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mac-installer-card {
  min-width: 0;
  min-height: 102px;
  padding: 16px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid var(--site-line-strong);
  border-radius: 8px;
  background: var(--site-panel);
  color: var(--site-text);
  text-align: left;
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.mac-installer-card.is-primary {
  border-color: rgba(var(--site-brand-rgb), 0.48);
  background: rgba(var(--site-brand-rgb), 0.08);
}

.mac-installer-card:hover {
  border-color: var(--site-brand);
  background: rgba(var(--site-brand-rgb), 0.12);
  transform: translateY(-1px);
}

.processor-badge {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--site-brand);
}

.processor-badge svg {
  position: absolute;
  inset: 0;
  width: 52px;
  height: 52px;
}

.processor-badge span {
  position: relative;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.processor-badge-intel span {
  font-size: 10px;
}

.installer-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.installer-card-copy strong {
  color: var(--site-text);
  font-size: 16px;
  line-height: 1.2;
}

.installer-card-copy small {
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.25;
}

.mac-installer-card.is-disabled {
  pointer-events: none;
  border-color: var(--site-disabled-border);
  background: var(--site-disabled-bg);
  color: var(--site-disabled-text);
  opacity: 0.72;
}

.mac-installer-card.is-disabled .installer-card-copy strong,
.mac-installer-card.is-disabled .installer-card-copy small {
  color: inherit;
}

.download-hint {
  margin: 10px 0 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.45;
}

.mobile-apps-note {
  order: 3;
  margin: 0;
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
  background: var(--site-brand);
  color: var(--site-on-brand);
}

.button:hover {
  background: var(--site-brand-strong);
}

.button-secondary {
  border-color: var(--site-line-strong);
  background: transparent;
  color: var(--site-text);
}

.button-secondary:hover {
  border-color: var(--site-brand);
  background: rgba(var(--site-brand-rgb), 0.1);
  color: var(--site-brand);
}

.button.is-disabled {
  pointer-events: none;
  background: var(--site-disabled-bg);
  border-color: var(--site-disabled-border);
  color: var(--site-disabled-text);
}

.hero-visual {
  width: min(980px, 100%);
  min-height: 340px;
  margin: 0 auto;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: var(--site-visual-bg);
  overflow: hidden;
  box-shadow: 0 24px 70px var(--site-shadow);
}

.visual-slot {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 0;
  text-align: center;
}

.visual-slot img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-placeholder {
  width: 100%;
  min-height: 340px;
  padding: 34px;
  color: var(--site-soft);
  display: grid;
  place-items: center;
}

.visual-placeholder[hidden] {
  display: none;
}

.visual-placeholder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--site-text);
  font-size: 24px;
}

section {
  border-bottom: 1px solid var(--site-line);
}

.section-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 64px 28px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.15;
  color: var(--site-text);
}

.section-head p,
.use-case p,
.instruction-copy p {
  margin: 0;
  color: var(--site-soft);
  font-size: 17px;
  line-height: 1.58;
}

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

.use-case {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-panel);
  padding: 24px;
}

.use-case h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--site-text);
}

.payment-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}

.payment-copy {
  border: 1px solid rgba(var(--site-brand-rgb), 0.32);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(var(--site-brand-rgb), 0.12), var(--site-panel));
  padding: 26px;
}

.payment-copy h2 {
  text-align: left;
}

.payment-copy p {
  margin: 0;
  color: var(--site-soft);
  font-size: 17px;
  line-height: 1.58;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(var(--site-brand-rgb), 0.44);
  border-radius: 999px;
  color: var(--site-brand);
  background: rgba(var(--site-brand-rgb), 0.12);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.payment-note {
  margin-top: 18px !important;
  color: var(--site-text) !important;
  font-weight: 700;
}

.promo-form {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--site-line);
  display: grid;
  gap: 10px;
}

.promo-form h3 {
  margin: 0;
  color: var(--site-text);
  font-size: 18px;
}

.promo-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.promo-fields input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--site-line-strong);
  border-radius: 8px;
  background: var(--site-input-bg);
  color: var(--site-text);
  font: inherit;
  padding: 11px 13px;
  outline: none;
}

.promo-fields input::placeholder {
  color: var(--site-muted);
}

.promo-fields input:focus {
  border-color: rgba(var(--site-brand-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--site-brand-rgb), 0.16);
}

.promo-form button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--site-text);
  color: var(--site-bg-deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.promo-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.promo-status {
  min-height: 20px;
  color: var(--site-soft);
  font-size: 14px;
  line-height: 1.4;
}

.promo-status.is-error {
  color: var(--site-error);
}

.pricing-table {
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: var(--site-panel);
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
}

.pricing-row + .pricing-row {
  border-top: 1px solid var(--site-line);
}

.pricing-cell {
  padding: 16px 18px;
  color: var(--site-soft);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-cell:first-child {
  color: var(--site-text);
  font-weight: 800;
  background: var(--site-row-label-bg);
}

.pricing-head .pricing-cell {
  color: var(--site-text);
  font-weight: 900;
  background: var(--site-visual-bg);
}

.pricing-head .tier-name {
  display: block;
  color: var(--site-brand);
  font-size: 18px;
}

.pricing-head .tier-price {
  display: block;
  margin-top: 5px;
  color: var(--site-text);
  font-size: 24px;
}

.pricing-head .tier-detail {
  display: block;
  margin-top: 5px;
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 700;
}

.pricing-yes {
  color: var(--site-success);
  font-weight: 800;
}

.pricing-muted {
  color: var(--site-muted);
}

.instruction-list {
  display: grid;
  gap: 28px;
}

.instruction {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: 26px;
  align-items: center;
}

.instruction:nth-child(even) {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr);
}

.instruction:nth-child(even) .instruction-copy {
  order: 2;
}

.instruction-copy h3 {
  margin: 0 0 10px;
  font-size: 25px;
  color: var(--site-text);
}

.screenshot-frame {
  border: 1px solid var(--site-line);
  border-radius: 10px;
  background: var(--site-visual-bg);
  overflow: hidden;
  box-shadow: 0 18px 54px var(--site-shadow);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.setup-carousel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  outline: none;
}

.setup-carousel:focus-visible {
  border-color: rgba(var(--site-brand-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--site-brand-rgb), 0.16), 0 18px 54px var(--site-shadow);
}

.setup-carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background: var(--site-visual-bg);
}

.setup-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--site-visual-bg);
}

.setup-carousel-slide[hidden] {
  display: none;
}

.setup-carousel-phone-slide {
  background: var(--site-phone-stage-bg);
}

.screenshot-frame .setup-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.setup-carousel-phone-preview {
  position: relative;
  height: calc(100% - 48px);
  aspect-ratio: 1284 / 2228;
  border-radius: 18px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.setup-carousel-ios-preview {
  background-image: url('/site-assets/setup-ios-start.jpeg?v=3');
}

.setup-carousel-browser-preview {
  background-image: url('/site-assets/setup-browser-start.jpeg?v=2');
}

.setup-theme-dark {
  display: none !important;
}

:root[data-theme="dark"] .setup-theme-light {
  display: none !important;
}

:root[data-theme="dark"] .setup-theme-dark {
  display: block !important;
}

.library-carousel,
.playlist-carousel,
.audio-extraction-preview {
  width: min(100%, 520px);
  justify-self: center;
}

.audio-extraction-preview {
  aspect-ratio: 740 / 716;
}

.audio-extraction-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library-carousel .setup-carousel-viewport {
  aspect-ratio: 818 / 708;
}

.library-carousel .setup-carousel-image {
  object-fit: cover;
}

.playlist-carousel .setup-carousel-viewport {
  aspect-ratio: 818 / 890;
}

.setup-carousel-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--site-line-strong);
  border-radius: 50%;
  background: var(--site-panel);
  color: var(--site-text);
  box-shadow: 0 8px 24px var(--site-shadow);
  cursor: pointer;
  opacity: 0.68;
}

.setup-carousel-arrow:hover {
  border-color: var(--site-brand);
  color: var(--site-brand);
  opacity: 1;
}

.setup-carousel-arrow:focus-visible {
  outline: 3px solid rgba(var(--site-brand-rgb), 0.24);
  outline-offset: 2px;
  opacity: 1;
}

.setup-carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.setup-carousel-previous {
  grid-column: 1;
}

.setup-carousel-next {
  grid-column: 4;
}

.setup-carousel-footer {
  min-height: 54px;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--site-line);
  background: var(--site-panel);
}

.setup-carousel-caption {
  grid-column: 2;
  color: var(--site-soft);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.setup-carousel-dots {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.setup-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--site-line-strong);
  cursor: pointer;
}

.setup-carousel-dot.is-active {
  background: var(--site-brand);
}

.setup-carousel-dot:focus-visible {
  outline: 3px solid rgba(var(--site-brand-rgb), 0.24);
  outline-offset: 3px;
}

footer {
  background: var(--site-footer-bg);
  color: var(--site-soft);
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--site-soft);
  text-decoration: none;
}

.footer-links .is-disabled {
  color: var(--site-muted);
  pointer-events: none;
}

@media (max-width: 820px) {
  .nav-links a:not(.nav-download) {
    display: none;
  }

  .hero-inner {
    padding-top: 52px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .use-grid,
  .payment-wrap,
  .instruction,
  .instruction:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .instruction:nth-child(even) .instruction-copy {
    order: 0;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .pricing-row {
    min-width: 720px;
  }
}

@media (max-width: 520px) {
  .nav-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-links {
    gap: 10px;
  }

  .brand-name {
    font-size: 21px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 29px;
  }

  .mac-download-cards {
    gap: 10px;
  }

  .mac-installer-card {
    min-height: 88px;
    padding: 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .processor-badge,
  .processor-badge svg {
    width: 42px;
    height: 42px;
  }

  .processor-badge span {
    font-size: 13px;
  }

  .processor-badge-intel span {
    font-size: 8px;
  }

  .installer-card-copy strong {
    font-size: 14px;
  }

  .installer-card-copy small {
    font-size: 11px;
  }

  .hero-visual,
  .visual-slot {
    min-height: 260px;
  }

  .visual-placeholder {
    min-height: 260px;
    padding: 22px;
  }

  .setup-carousel-phone-preview {
    height: calc(100% - 32px);
    border-radius: 14px;
  }

  .setup-carousel-footer {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
  }

  .setup-carousel-caption {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .setup-carousel-previous {
    grid-column: 1;
    grid-row: 2;
  }

  .setup-carousel-dots {
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
  }

  .setup-carousel-next {
    grid-column: 3;
    grid-row: 2;
  }
}

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

  .theme-toggle {
    transition: none;
  }
}
