:root {
  --brand-primary: #3E71DC;
  --brand-secondary: #5988E2;
  --brand-light: #83ACED;
  --brand-pale: #A5C6F5;
  --site-background: #F8F8FD;
  --ink: #081032;
  --muted: #6C6F81;
  --soft: #6C6F81;
  --line: rgba(165, 198, 245, 0.46);
  --line-strong: rgba(131, 172, 237, 0.58);
  --brand-soft: rgba(165, 198, 245, 0.24);
  --brand-soft-strong: rgba(131, 172, 237, 0.3);
  --brand-gradient: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 55%, var(--brand-light) 100%);
  --green: #11ad55;
  --orange: #ff7a1a;
  --red: #ff2d2d;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-soft: rgba(248, 248, 253, 0.9);
  --shadow: 0 16px 44px rgba(8, 16, 50, 0.09);
  --shadow-strong: 0 22px 58px rgba(8, 16, 50, 0.14);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 12%, rgba(131, 172, 237, 0.13), transparent 24%),
    radial-gradient(circle at 82% 9%, rgba(62, 113, 220, 0.12), transparent 22%),
    linear-gradient(180deg, var(--site-background) 0%, #ffffff 42%, var(--site-background) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 16, 50, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(8, 16, 50, 0.032) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 58%);
  z-index: -1;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(62, 113, 220, 0.24);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 64px;
  margin: 10px auto 0;
  padding: 9px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(17, 23, 48, 0.06);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.site-logo {
  display: inline-block;
  width: max-content;
  max-width: 100%;
}

.site-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-logo-header {
  width: 174px;
}

.site-logo-footer {
  width: 132px;
  margin-bottom: 8px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 24px);
  font-size: 0.9rem;
  font-weight: 400;
}

.site-nav a,
.site-nav button,
.site-nav .nav-link {
  font-weight: 400;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 400;
  list-style: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown:hover summary,
.nav-dropdown[open] summary,
.nav-dropdown summary:focus-visible {
  color: var(--brand-secondary);
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft-strong));
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  display: none;
  min-width: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(17, 23, 48, 0.12);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown[open] .nav-submenu {
  display: grid;
  gap: 4px;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover {
  color: var(--brand-secondary);
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft-strong));
}

.nav-toggle {
  display: none;
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  min-height: 44px;
  padding: 6px 12px 7px;
  border: 1px solid #111;
  border-radius: 7px;
  color: #fff;
  background: #020205;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.store-badge small,
.store-badge strong {
  display: block;
  line-height: 1;
}

.store-badge small {
  margin-bottom: 3px;
  font-size: 0.64rem;
  font-weight: 600;
}

.store-badge strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.store-badge.large {
  min-width: 214px;
  min-height: 64px;
  gap: 11px;
  border-radius: 8px;
}

.store-badge.large small {
  font-size: 0.82rem;
}

.store-badge.large strong {
  font-size: 2rem;
}

.store-badge.mini {
  min-width: 178px;
  min-height: 54px;
  pointer-events: none;
}

.store-mark {
  position: relative;
  width: 23px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 54% 46% 46% 54% / 50% 50% 50% 50%;
  background: #fff;
}

.store-mark::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 10px;
  width: 10px;
  height: 12px;
  border-radius: 80% 0 80% 0;
  background: #fff;
  transform: rotate(36deg);
}

.store-mark::after {
  content: "";
  position: absolute;
  top: 9px;
  right: -4px;
  width: 8px;
  height: 11px;
  border-radius: 50%;
  background: #020205;
}

main {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(540px, 1.12fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
  min-height: 590px;
  margin-top: 28px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid #e6e9f2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 22%, rgba(131, 172, 237, 0.11), transparent 25%),
    radial-gradient(circle at 73% 42%, rgba(62, 113, 220, 0.15), transparent 27%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 253, 0.92));
  box-shadow: 0 28px 80px rgba(24, 35, 78, 0.1);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 20px;
  padding: 7px 11px;
  border: 1px solid rgba(62, 113, 220, 0.24);
  border-radius: 999px;
  color: var(--brand-primary);
  background: var(--brand-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow-brand {
  border-color: rgba(131, 172, 237, 0.22);
  color: var(--brand-primary);
  background: var(--brand-soft-strong);
}

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

h1 {
  max-width: 13ch;
  font-size: clamp(2.85rem, 4vw, 4.65rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 500px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.45;
}

.platform-note {
  max-width: 500px;
  margin-top: 14px;
  color: var(--brand-primary);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.launch-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 36px 0 48px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, var(--site-background));
  box-shadow: 0 18px 42px rgba(17, 23, 48, 0.06);
}

.launch-cta h2 {
  max-width: 560px;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.12;
}

.launch-cta p {
  max-width: 620px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.soft-waitlist-cta {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.soft-waitlist-cta a {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: none;
}

.soft-waitlist-cta a:hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: 26px;
}

.workflow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.workflow-link span {
  font-size: 1.35rem;
  line-height: 1;
}

.workflow-link:hover {
  color: var(--brand-secondary);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 600px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.76rem;
  box-shadow: 0 10px 26px rgba(17, 23, 48, 0.04);
}

.proof-row span:nth-child(2) .icon {
  color: var(--brand-secondary);
}

.proof-row span:nth-child(3) {
  background: linear-gradient(135deg, #fff, var(--brand-soft-strong));
}

.icon {
  display: inline-block;
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.phone-icon {
  border: 2px solid var(--brand-primary);
  border-radius: 4px;
}

.phone-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 2px;
  width: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-primary);
}

.audio-icon,
.export-icon {
  color: var(--brand-primary);
}

.audio-icon::before {
  content: "";
  position: absolute;
  inset: 4px 9px;
  border-radius: 4px;
  background: currentColor;
  box-shadow: -8px 3px 0 -1px currentColor, 8px -2px 0 -1px currentColor;
}

.audio-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: rotate(90deg);
  box-shadow: 5px 0 0 currentColor, -5px 0 0 currentColor;
}

.export-icon {
  border: 2px solid var(--brand-secondary);
  border-radius: 4px;
}

.export-icon::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--brand-secondary);
  border-right: 2px solid var(--brand-secondary);
}

.export-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 5px;
  width: 13px;
  height: 2px;
  background: var(--brand-secondary);
  transform: rotate(-45deg);
}

.qr-download {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.qr-code {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  width: 78px;
  height: 78px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 23, 48, 0.06);
}

.qr-code span {
  border-radius: 1px;
  background: #05050a;
  opacity: 0.16;
}

.qr-code span:nth-child(1),
.qr-code span:nth-child(2),
.qr-code span:nth-child(3),
.qr-code span:nth-child(7),
.qr-code span:nth-child(13),
.qr-code span:nth-child(19),
.qr-code span:nth-child(25),
.qr-code span:nth-child(26),
.qr-code span:nth-child(27),
.qr-code span:nth-child(10),
.qr-code span:nth-child(11),
.qr-code span:nth-child(12),
.qr-code span:nth-child(16),
.qr-code span:nth-child(22),
.qr-code span:nth-child(28),
.qr-code span:nth-child(34),
.qr-code span:nth-child(35),
.qr-code span:nth-child(36),
.qr-code span:nth-child(5),
.qr-code span:nth-child(17),
.qr-code span:nth-child(20),
.qr-code span:nth-child(23),
.qr-code span:nth-child(31) {
  opacity: 1;
}

.qr-download strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.qr-download p {
  max-width: 230px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid #dce7f8;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(62, 113, 220, 0.08), rgba(255, 255, 255, 0.72) 52%),
    radial-gradient(circle at 76% 22%, rgba(131, 172, 237, 0.14), transparent 30%),
    radial-gradient(circle at 52% 54%, rgba(89, 136, 226, 0.13), transparent 32%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 34px 44px 74px;
  border: 1px solid rgba(62, 113, 220, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  transform: rotate(-2deg);
}

.phone {
  position: absolute;
  top: 18px;
  width: clamp(204px, 16vw, 224px);
  transform-origin: center bottom;
  filter:
    drop-shadow(0 24px 28px rgba(8, 16, 50, 0.2))
    drop-shadow(0 8px 10px rgba(8, 16, 50, 0.12));
}

.phone-import {
  left: 3%;
  top: 82px;
  transform: rotate(-6deg);
}

.phone-cards {
  left: 36%;
  z-index: 3;
  width: clamp(224px, 18vw, 248px);
}

.phone-preview {
  right: 5.5%;
  top: 82px;
  transform: rotate(6deg);
}

.phone-shell {
  position: relative;
  aspect-ratio: 9 / 18.7;
  padding: 9px;
  border: 1px solid #020305;
  border-radius: 42px;
  background: linear-gradient(145deg, #34373d 0%, #090a0d 24%, #020305 68%, #202329 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.34),
    inset 1px 0 0 rgba(255, 255, 255, 0.1),
    inset -1px 0 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 5px #050608,
    0 2px 4px rgba(8, 16, 50, 0.26),
    0 16px 36px rgba(8, 16, 50, 0.18);
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  width: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #30333a, #08090c 38%, #181a1f);
  box-shadow: 0 1px 2px rgba(8, 16, 50, 0.34);
}

.phone-shell::before {
  left: -5px;
  top: 82px;
  height: 54px;
  border-radius: 3px 0 0 3px;
  box-shadow:
    0 -26px 0 -1px #17191e,
    0 70px 0 0 #111318,
    0 1px 2px rgba(8, 16, 50, 0.34);
}

.phone-shell::after {
  right: -5px;
  top: 116px;
  height: 72px;
  border-radius: 0 3px 3px 0;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 11px;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 16px 15px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 33px;
  background: linear-gradient(180deg, #fff, #fafbff 72%, #f7f8fe);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 80px;
  height: 21px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen.has-screenshot {
  display: block;
  padding: 0;
  background: #fff;
}

.phone-screen.has-screenshot::before {
  display: none;
}

.phone-screenshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.status-bar {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 20px;
  color: #050810;
  font-size: 0.68rem;
  font-weight: 700;
}

.status-bar span:last-child {
  width: 42px;
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #050810 4px, transparent 4px 8px, #050810 8px 12px, transparent 12px 16px, #050810 16px 22px, transparent 22px 28px, #050810 28px 42px);
}

.screen-title {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  font-size: 0.72rem;
}

.screen-title small {
  color: var(--muted);
}

.compact-title {
  gap: 2px;
  font-size: 0.78rem;
}

.import-list {
  display: grid;
  gap: 8px;
}

.import-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e5e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.import-list strong,
.import-list small {
  display: block;
}

.import-list strong {
  font-size: 0.66rem;
}

.import-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.58rem;
}

.app-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.app-icon.brand {
  background: linear-gradient(135deg, var(--brand-pale), var(--brand-primary));
}

.app-icon.blue {
  background: linear-gradient(135deg, var(--brand-light), var(--brand-secondary));
}

.app-icon.green {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-light));
}

.transcribing-card {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  padding: 15px;
  border: 1px solid #e4e8f2;
  border-radius: 11px;
  background: #fff;
}

.transcribing-card small {
  color: var(--muted);
}

.waveform {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 44px;
  margin-top: 6px;
}

.waveform i {
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
}

.waveform i:nth-child(3n) {
  height: 30px;
}

.waveform i:nth-child(4n) {
  height: 23px;
}

.waveform i:nth-child(5n) {
  height: 37px;
}

.tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: auto;
  padding-top: 9px;
  border-top: 1px solid #eceff5;
  color: var(--muted);
  font-size: 0.6rem;
  text-align: center;
}

.tabbar .active {
  color: var(--brand-primary);
  font-weight: 700;
}

.progress-track {
  height: 5px;
  border-radius: 999px;
  background: #e8e9ef;
}

.progress-track span {
  display: block;
  width: 39%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}

.note-card {
  display: grid;
  gap: 14px;
  min-height: 264px;
  margin-top: 6px;
  padding: 20px 17px;
  border: 1px solid rgba(131, 172, 237, 0.26);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(131, 172, 237, 0.11);
}

.tag {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft-strong));
  color: var(--brand-primary);
  font-size: 0.64rem;
  font-weight: 700;
}

.note-card p {
  max-width: 200px;
  font-size: 1.22rem;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.note-card small {
  align-self: end;
  color: var(--muted);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.card-footer button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #eef0f7;
}

.card-footer button::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #050810;
}

.swipe-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.swipe-actions span::before {
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  line-height: 1;
}

.keep {
  color: var(--green);
}

.keep::before {
  content: "->";
}

.skip {
  color: var(--red);
}

.skip::before {
  content: "<-";
}

.feature {
  color: var(--brand-secondary);
}

.feature::before {
  content: "^";
}

.cta {
  color: var(--brand-secondary);
}

.cta::before {
  content: "->";
}

.summary-card,
.chapter-list,
.quote-card {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid #e5e8f0;
  border-radius: 8px;
  background: #fff;
}

.summary-card p,
.quote-card p,
.chapter-list p {
  color: var(--ink);
  font-size: 0.59rem;
  line-height: 1.42;
}

.chapter-list strong,
.summary-card strong,
.quote-card strong {
  font-size: 0.66rem;
}

.chapter-list p {
  display: grid;
  grid-template-columns: 40px 1fr;
}

.chapter-list span {
  color: var(--muted);
}

.quote-card {
  border-color: rgba(131, 172, 237, 0.22);
  background: linear-gradient(135deg, var(--brand-soft-strong), var(--brand-soft));
}

.export-sheet {
  display: grid;
  gap: 7px;
  margin: auto -15px -14px;
  padding: 12px 15px 14px;
  border-top: 1px solid #dce7f8;
  border-radius: 15px 15px 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -15px 30px rgba(17, 23, 48, 0.08);
  font-size: 0.61rem;
}

.export-sheet strong {
  justify-self: center;
}

.export-sheet p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.export-sheet span {
  color: var(--muted);
  font-size: 0.54rem;
}

.floating-download {
  position: absolute;
  left: 39%;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.floating-download p {
  color: var(--brand-primary);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  transform: rotate(-7deg);
}

.workflow-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 28px 0 42px;
  padding: 14px;
  border: 1px solid #e7e9f2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(17, 23, 48, 0.06);
}

.workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 14px;
  align-items: center;
  min-height: 136px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 253, 0.92));
  box-shadow: 0 8px 22px rgba(17, 23, 48, 0.04);
}

.step-copy {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: start;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-primary);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(62, 113, 220, 0.2);
}

.workflow-step h3,
.feature-grid h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.workflow-step p,
.feature-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.step-arrow {
  color: var(--brand-secondary);
  font-size: 1.45rem;
  font-weight: 700;
}

.step-icon {
  min-width: 72px;
  min-height: 72px;
  border: 1px dashed rgba(89, 136, 226, 0.34);
  border-radius: 12px;
  background: var(--site-background);
}

.upload-art {
  position: relative;
}

.upload-art::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 29px;
  width: 24px;
  height: 19px;
  border: 3px solid var(--brand-primary);
  border-top: 0;
  border-radius: 0 0 13px 13px;
}

.upload-art::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 20px;
  width: 15px;
  height: 15px;
  border-left: 3px solid var(--brand-primary);
  border-top: 3px solid var(--brand-primary);
  transform: rotate(45deg);
}

.cards-art {
  position: relative;
}

.cards-art::before,
.cards-art::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 58px;
  border: 1px solid #e2e4ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(17, 23, 48, 0.08);
}

.cards-art::before {
  left: 10px;
  top: 8px;
  transform: rotate(-5deg);
}

.cards-art::after {
  right: 9px;
  top: 13px;
  transform: rotate(4deg);
}

.export-art {
  position: relative;
  border-color: rgba(131, 172, 237, 0.22);
  background: var(--brand-soft-strong);
}

.export-art::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--brand-secondary);
  border-radius: 5px;
}

.export-art::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 22px;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--brand-secondary);
  border-right: 3px solid var(--brand-secondary);
  transform: rotate(45deg);
}

.feature-section {
  padding: 24px 0 64px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-bottom: 18px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
  justify-self: start;
}

h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

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

.feature-grid article {
  min-height: 145px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 8px 24px rgba(17, 23, 48, 0.04);
}

.feature-grid article:nth-child(2n),
.seo-grid article:nth-child(2n),
.compact-feature-card:nth-child(2n) {
  border-color: rgba(131, 172, 237, 0.18);
  background: linear-gradient(180deg, #ffffff, var(--brand-soft-strong));
}

.feature-grid article:nth-child(3n),
.seo-grid article:nth-child(3n),
.compact-feature-card:nth-child(3n) {
  border-color: rgba(89, 136, 226, 0.2);
  background: linear-gradient(180deg, #ffffff, var(--brand-soft));
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 0 34px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid #e6e9f2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 16%, rgba(131, 172, 237, 0.12), transparent 22%),
    radial-gradient(circle at 18% 22%, rgba(62, 113, 220, 0.11), transparent 24%),
    linear-gradient(135deg, #ffffff, var(--site-background));
  box-shadow: 0 18px 50px rgba(24, 35, 78, 0.08);
}

.download-section h2 {
  max-width: 680px;
  margin-bottom: 12px;
}

.download-section p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.site-footer {
  width: min(calc(100% - 44px), var(--max-width));
  margin: 0 auto 28px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.footer-brand p,
.site-footer a {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-brand p {
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 16px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand-secondary);
}

.footer-legal {
  grid-column: 1 / -1;
  justify-self: end;
  display: flex;
  gap: 14px;
}

.footer-legal a {
  color: var(--brand-primary);
  font-size: 0.78rem;
}

.content-section {
  padding: 36px 0 34px;
}

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

.seo-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 8px 24px rgba(17, 23, 48, 0.04);
}

.seo-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.seo-grid p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.srt-hero {
  grid-template-columns: minmax(320px, 0.9fr) minmax(440px, 1.1fr);
}

.srt-preview {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 420px;
  padding: 28px;
  border: 1px solid #dce7f8;
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 20%, rgba(131, 172, 237, 0.12), transparent 25%),
    radial-gradient(circle at 34% 72%, rgba(62, 113, 220, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 253, 0.92));
}

.caption-card,
.notes-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 23, 48, 0.08);
}

.caption-card span,
.notes-card span {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft-strong));
  color: var(--brand-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.caption-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

.caption-card strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.notes-card h2 {
  font-size: 1.55rem;
}

.notes-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.caption-arrow {
  color: var(--brand-secondary);
  font-size: 1.6rem;
  font-weight: 800;
}

.srt-workflow .workflow-step {
  grid-template-columns: 1fr;
}

.srt-tool-hero {
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
}

.srt-tool-page .hero-supporting-copy {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.srt-tool-page .utility-trust-note {
  max-width: 560px;
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.srt-tool-page .utility-use-cases {
  margin-top: 24px;
}

.srt-tool-page .utility-use-cases p,
.srt-tool-page .brizinotes-promo p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.srt-tool-summary {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 20%, rgba(62, 113, 220, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff, var(--site-background));
  box-shadow: 0 18px 48px rgba(17, 23, 48, 0.07);
}

.srt-tool-summary article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.srt-tool-summary span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-primary);
  font-weight: 800;
}

.srt-tool-summary h2 {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.srt-tool-summary p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.converter-panel {
  margin: 28px 0 42px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 18px 48px rgba(17, 23, 48, 0.07);
}

.converter-panel .section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
}

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

.converter-field {
  display: grid;
  gap: 10px;
}

.converter-field label,
.file-picker span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.converter-field textarea {
  width: 100%;
  min-height: 320px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  resize: vertical;
}

.file-picker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-picker-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.file-picker-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--brand-primary);
  background: #fff;
  cursor: pointer;
}

.file-picker-button:hover {
  border-color: var(--brand-secondary);
  background: var(--brand-soft);
}

.file-picker-input:focus-visible + .file-picker-button {
  outline: 3px solid rgba(62, 113, 220, 0.24);
  outline-offset: 2px;
}

.file-picker-button span {
  color: inherit;
}

.file-picker .file-picker-name {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}

.converter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.converter-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(62, 113, 220, 0.22);
  border-radius: 999px;
  color: var(--brand-primary);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.converter-button.primary {
  color: #fff;
  background: var(--brand-primary);
}

.converter-button:hover {
  border-color: var(--brand-secondary);
  background: var(--brand-soft);
}

.converter-button.primary:hover {
  background: var(--brand-secondary);
}

.converter-button.subtle {
  color: var(--muted);
}

.converter-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.converter-status.is-success {
  color: #147a3d;
}

.converter-status.is-error {
  color: #b42318;
}

.workflow-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(62, 113, 220, 0.2);
  border-radius: 999px;
  color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft-strong));
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.workflow-hero {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.workflow-hero-panel {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid #dce7f8;
  border-radius: 26px;
  background:
    radial-gradient(circle at 62% 24%, rgba(62, 113, 220, 0.13), transparent 25%),
    radial-gradient(circle at 78% 68%, rgba(131, 172, 237, 0.11), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 253, 0.92));
}

.workflow-detail-section,
.screenshot-section,
.faq-section {
  padding: 36px 0 38px;
}

.workflow-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffffff, var(--site-background));
  box-shadow: 0 14px 40px rgba(17, 23, 48, 0.06);
}

.workflow-detail.flip {
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
}

.workflow-detail.flip .workflow-detail-copy {
  grid-column: 2;
}

.workflow-detail.flip .placeholder-phone {
  grid-column: 1;
  grid-row: 1;
}

.workflow-detail-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.workflow-detail h3,
.faq-grid h3,
.app-placeholder h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.workflow-detail p,
.faq-grid p,
.screenshot-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.placeholder-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 226px);
  min-height: 0;
  aspect-ratio: 9 / 18.7;
  margin: 0 auto;
  padding: 9px;
  border: 1px solid #020305;
  border-radius: 40px;
  background: linear-gradient(145deg, #34373d 0%, #090a0d 24%, #020305 68%, #202329 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.34),
    inset 1px 0 0 rgba(255, 255, 255, 0.1),
    inset -1px 0 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 5px #050608,
    0 2px 4px rgba(8, 16, 50, 0.24),
    0 20px 42px rgba(8, 16, 50, 0.18);
}

.placeholder-phone::before {
  content: "";
  position: absolute;
  inset: 58px 26px 88px;
  border: 1px dashed rgba(131, 172, 237, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(62, 113, 220, 0.18) 0 42px, transparent 42px),
    linear-gradient(90deg, transparent 0 118px, rgba(131, 172, 237, 0.14) 118px 156px, transparent 156px),
    repeating-linear-gradient(180deg, rgba(108, 111, 129, 0.16) 0 8px, transparent 8px 20px);
}

.placeholder-phone.has-screenshot::before,
.mini-screen.has-screenshot::before {
  display: none;
}

.screenshot-img {
  position: absolute;
  inset: 9px;
  z-index: 1;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  object-fit: contain;
  object-position: top center;
}

.mini-screen .screenshot-img,
.hero-mini-screen .screenshot-img {
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 18px;
}

.placeholder-phone span {
  position: relative;
  z-index: 1;
  max-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(131, 172, 237, 0.2);
  border-radius: 12px;
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.large-placeholder {
  width: min(100%, 236px);
  min-height: 0;
}

.screenshot-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.app-placeholder,
.faq-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 10px 28px rgba(17, 23, 48, 0.05);
}

.app-placeholder .placeholder-phone {
  width: min(100%, 188px);
  min-height: 0;
  margin-bottom: 16px;
}

.screenshot-link {
  margin-top: 18px;
}

.section-link {
  margin-top: 18px;
}

.features-hero {
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
}

.features-hero-panel {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid #dce7f8;
  border-radius: 26px;
  background:
    radial-gradient(circle at 74% 20%, rgba(89, 136, 226, 0.13), transparent 24%),
    radial-gradient(circle at 24% 72%, rgba(131, 172, 237, 0.11), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 253, 0.92));
}

.mini-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, 92px);
  gap: 14px;
}

.mini-placeholder-grid span,
.mini-placeholder-grid .hero-mini-screen,
.mini-screen {
  position: relative;
  aspect-ratio: 9 / 18.7;
  border: 1px solid #020305;
  border-radius: 24px;
  background: linear-gradient(145deg, #34373d 0%, #090a0d 24%, #020305 68%, #202329 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.28),
    inset 0 0 0 3px #050608,
    0 12px 28px rgba(8, 16, 50, 0.16);
}

.mini-placeholder-grid span,
.mini-placeholder-grid .hero-mini-screen {
  width: 92px;
  height: auto;
}

.mini-placeholder-grid span:nth-child(2),
.mini-placeholder-grid span:nth-child(3),
.mini-placeholder-grid .hero-mini-screen:nth-child(2),
.mini-placeholder-grid .hero-mini-screen:nth-child(3) {
  transform: translateY(18px);
}

.compact-features-section {
  padding: 34px 0 44px;
}

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

.compact-feature-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 250px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 10px 28px rgba(17, 23, 48, 0.05);
}

.mini-screen {
  display: grid;
  place-items: center;
  width: 92px;
  min-height: 0;
  padding: 14px 8px;
}

.mini-screen::before {
  content: "";
  position: absolute;
  inset: 38px 14px 46px;
  border: 1px dashed rgba(131, 172, 237, 0.26);
  border-radius: 12px;
  background:
    repeating-linear-gradient(180deg, rgba(108, 111, 129, 0.15) 0 6px, transparent 6px 15px);
}

.mini-screen span {
  position: relative;
  z-index: 1;
  max-width: 78px;
  padding: 7px 8px;
  border: 1px solid rgba(62, 113, 220, 0.2);
  border-radius: 10px;
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.compact-feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.compact-feature-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.compact-feature-card ul {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.pricing-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: -24px 0 34px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 24%, rgba(131, 172, 237, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff, var(--site-background));
  box-shadow: 0 14px 38px rgba(24, 35, 78, 0.06);
}

.pricing-teaser h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.pricing-teaser p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pricing-teaser-link {
  min-width: 130px;
}

.about-hero {
  grid-template-columns: minmax(0, 760px);
  align-items: start;
  min-height: 0;
}

.about-content {
  padding: 10px 0 24px;
}

.about-copy {
  max-width: 780px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 10px 28px rgba(17, 23, 48, 0.05);
}

.about-copy h2 {
  margin-bottom: 14px;
}

.about-copy p,
.about-copy li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-copy ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.waitlist-page {
  background:
    radial-gradient(circle at 18% 20%, rgba(62, 113, 220, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(131, 172, 237, 0.1), transparent 26%),
    linear-gradient(180deg, var(--site-background) 0%, #ffffff 48%, var(--site-background) 100%);
}

.waitlist-shell {
  padding: clamp(28px, 5vw, 62px) 0 44px;
}

.waitlist-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 70%, rgba(62, 113, 220, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 253, 0.92));
  box-shadow: 0 24px 70px rgba(17, 23, 48, 0.08);
}

.waitlist-intro {
  display: grid;
  gap: 18px;
}

.waitlist-intro h1 {
  max-width: 560px;
  font-size: clamp(2.25rem, 5vw, 4.05rem);
}

.waitlist-phone-wrap {
  display: grid;
  justify-items: center;
  margin-top: 6px;
}

.waitlist-phone {
  width: min(100%, 220px);
  min-height: 0;
}

.waitlist-form-panel {
  display: grid;
  gap: 24px;
}

.waitlist-form-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

.waitlist-form-heading p,
.waitlist-microcopy {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.waitlist-platform-note {
  margin-top: 10px;
  color: var(--brand-primary);
  font-weight: 600;
}

.waitlist-form {
  display: grid;
  gap: 18px;
}

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

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.waitlist-form label small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.waitlist-form textarea {
  resize: vertical;
}

.converter-field textarea:focus-visible {
  border-color: var(--brand-primary);
  outline: 3px solid rgba(62, 113, 220, 0.22);
  outline-offset: 2px;
}

.waitlist-form input:focus-visible,
.waitlist-form select:focus-visible,
.waitlist-form textarea:focus-visible {
  border-color: var(--brand-primary);
  outline: 3px solid rgba(62, 113, 220, 0.22);
  outline-offset: 2px;
}

.waitlist-submit {
  justify-self: start;
  width: fit-content;
  min-width: 190px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-primary);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(62, 113, 220, 0.24);
  cursor: pointer;
}

.waitlist-submit:hover {
  background: var(--brand-secondary);
}

.waitlist-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.waitlist-status {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.waitlist-status.is-success {
  color: #147a3d;
}

.waitlist-status.is-error {
  color: #b42318;
}

.thank-you-page main {
  display: grid;
  align-items: center;
}

.thanks-shell {
  display: grid;
  place-items: center;
  min-height: 64vh;
  padding: 64px 0 104px;
}

.thanks-card {
  width: min(100%, 820px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(62, 113, 220, 0.13), transparent 27%),
    radial-gradient(circle at 88% 78%, rgba(131, 172, 237, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 253, 0.94));
  box-shadow: 0 24px 70px rgba(17, 23, 48, 0.08);
}

.thanks-card h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.thanks-note {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(62, 113, 220, 0.14);
}

.thanks-actions .workflow-link {
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(62, 113, 220, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(17, 23, 48, 0.06);
}

.pricing-hero {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.pricing-note-small {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.pricing-hero-panel {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 25% 28%, rgba(62, 113, 220, 0.16), transparent 27%),
    radial-gradient(circle at 75% 68%, rgba(131, 172, 237, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, var(--site-background));
}

.pricing-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, 1fr));
  gap: 16px;
  width: min(100%, 420px);
  padding: 24px;
}

.pricing-orbit::before {
  content: "";
  position: absolute;
  inset: 64px;
  border: 1px dashed rgba(131, 172, 237, 0.26);
  border-radius: 999px;
  transform: rotate(-10deg);
}

.pricing-orbit span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 118px;
  border: 1px solid rgba(62, 113, 220, 0.2);
  border-radius: 22px;
  color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(17, 23, 48, 0.08);
}

.pricing-orbit span:nth-child(2) {
  border-color: rgba(62, 113, 220, 0.24);
  background: linear-gradient(135deg, #ffffff, var(--brand-soft));
}

.pricing-orbit span:nth-child(3) {
  border-color: rgba(131, 172, 237, 0.24);
  background: linear-gradient(135deg, #ffffff, var(--brand-soft-strong));
}

.pricing-orbit span:nth-child(4) {
  color: #fff;
  background: var(--brand-gradient);
}

.pricing-section,
.pricing-notes {
  padding: 36px 0 44px;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 480px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, var(--site-background));
  box-shadow: 0 12px 32px rgba(17, 23, 48, 0.06);
}

.plan-accent {
  width: 54px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand-secondary);
}

.plan-kicker {
  min-height: 38px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-card h3 {
  margin-top: 14px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plan-price {
  margin: 8px 0 16px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 14px;
  border: 1px solid rgba(62, 113, 220, 0.24);
  border-radius: 999px;
  color: var(--brand-primary);
  background: var(--brand-soft);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.plan-free {
  border-color: rgba(89, 136, 226, 0.2);
  background: linear-gradient(180deg, #ffffff, var(--brand-soft));
}

.plan-free .plan-accent,
.plan-free li::before {
  background: var(--brand-secondary);
}

.plan-starter {
  border-color: rgba(62, 113, 220, 0.22);
  background: linear-gradient(180deg, #ffffff, var(--brand-soft));
}

.plan-starter .plan-accent,
.plan-starter li::before {
  background: var(--brand-primary);
}

.plan-pro {
  border-color: rgba(131, 172, 237, 0.22);
  background: linear-gradient(180deg, #ffffff, var(--brand-soft-strong));
}

.plan-pro .plan-accent {
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-light));
}

.plan-pro li::before {
  background: linear-gradient(90deg, var(--brand-secondary), var(--brand-light));
}

.plan-power {
  border-color: transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--brand-gradient) border-box;
  box-shadow: 0 18px 42px rgba(62, 113, 220, 0.12);
}

.plan-power::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 0%, rgba(131, 172, 237, 0.15), transparent 35%);
}

.plan-power .plan-accent,
.plan-power li::before,
.plan-power .plan-button {
  background: var(--brand-gradient);
}

.plan-power .plan-button {
  border-color: transparent;
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

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

  .phone-import {
    left: 8%;
  }

  .phone-cards {
    left: 37%;
  }

  .phone-preview {
    right: 7%;
  }

  .workflow-panel {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

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

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

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

  .srt-hero,
  .srt-tool-hero,
  .workflow-hero,
  .features-hero,
  .waitlist-card,
  .pricing-hero,
  .pricing-teaser,
  .download-section,
  .site-footer,
  .converter-grid {
    grid-template-columns: 1fr;
  }

  .srt-tool-summary p {
    grid-column: 1 / -1;
  }

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

  .workflow-detail,
  .workflow-detail.flip {
    grid-template-columns: 1fr;
  }

  .workflow-detail.flip .workflow-detail-copy,
  .workflow-detail.flip .placeholder-phone {
    grid-column: auto;
    grid-row: auto;
  }

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

  .pricing-teaser-link {
    justify-self: start;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    top: 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-store {
    display: none;
  }

  body.menu-open .site-nav,
  body.menu-open .header-store {
    display: flex;
    grid-column: 1 / -1;
  }

  body.menu-open .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  body.menu-open .site-nav a,
  body.menu-open .nav-dropdown summary {
    padding: 10px 0;
  }

  body.menu-open .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  body.menu-open .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 4px 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .nav-submenu a {
    padding: 8px 0;
  }

  body.menu-open .header-store {
    justify-self: start;
  }

  main {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero {
    padding: 30px 4px 18px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.65rem);
    letter-spacing: -0.055em;
  }

  .hero-subtitle {
    max-width: 500px;
    font-size: 1rem;
  }

  .launch-cta {
    align-items: flex-start;
    flex-direction: column;
    margin: 28px 0 38px;
    padding: 20px;
  }

  .thanks-shell {
    padding: 42px 0 76px;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 34px;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-row span {
    white-space: normal;
  }

  .hero-visual {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .phone {
    position: static;
    width: min(236px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .phone-import,
  .phone-preview {
    display: none;
  }

  .floating-download {
    position: static;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .floating-download p {
    font-size: 0.8rem;
  }

  .workflow-panel {
    padding: 14px;
    gap: 14px;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .step-icon {
    justify-self: start;
  }

  .feature-section {
    padding-left: 4px;
    padding-right: 4px;
  }

  .srt-preview {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .caption-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .workflow-hero-panel {
    min-height: 0;
    padding: 18px;
  }

  .features-hero-panel,
  .pricing-hero-panel {
    min-height: 0;
    padding: 24px;
  }

  .mini-placeholder-grid {
    grid-template-columns: repeat(2, 82px);
  }

  .mini-placeholder-grid span,
  .mini-placeholder-grid .hero-mini-screen {
    width: 82px;
    height: auto;
  }

  .placeholder-phone,
  .large-placeholder {
    width: min(100%, 214px);
    min-height: 0;
  }

  .waitlist-card {
    align-items: start;
  }

  .waitlist-phone {
    width: min(100%, 206px);
    min-height: 0;
  }

  .pricing-orbit {
    max-width: 390px;
    padding: 16px;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(calc(100% - 18px), var(--max-width));
    padding: 9px 10px;
    border-radius: 12px;
  }

  .site-logo-header {
    width: 154px;
  }

  .store-badge.large,
  .store-badge {
    width: 100%;
    min-width: 0;
  }

  .store-badge.large strong {
    font-size: 1.72rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .workflow-link {
    justify-content: center;
    min-height: 46px;
  }

  .qr-download {
    align-items: flex-start;
  }

  .phone-screen {
    min-height: 0;
  }

  .workflow-step {
    padding: 18px;
  }

  .step-copy {
    grid-template-columns: 1fr;
  }

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

  .seo-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: 0;
  }

  .pricing-teaser {
    margin-top: -10px;
  }

  .pricing-orbit {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .pricing-orbit::before {
    display: none;
  }

  .pricing-orbit span {
    min-height: 82px;
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .compact-feature-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px;
  }

  .mini-screen {
    width: 76px;
    min-height: 0;
    border-radius: 18px;
  }

  .mini-screen span {
    max-width: 58px;
    font-size: 0.56rem;
  }

  .placeholder-phone,
  .large-placeholder,
  .app-placeholder .placeholder-phone {
    width: min(100%, 202px);
    min-height: 0;
  }

  .waitlist-card {
    padding: 20px;
    border-radius: 18px;
  }

  .waitlist-field-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-submit {
    width: 100%;
  }

  .file-picker {
    align-items: flex-start;
    flex-direction: column;
  }

  .file-picker-button {
    width: 100%;
    justify-content: center;
  }
}
