@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --background: #f7f7f4;
  --surface: #f2f1ee;
  --surface-raised: #f2f1ee;
  --surface-selected: #e5e4e0;
  --outline: #e2e2de;
  --icon: #b0b1ac;
  --accent: #ff3b30;
  --accent-soft: rgba(255, 59, 48, 0.12);
  --text: #26251f;
  --subtext: #787671;
  --hairline: #e2e2de;
  --shadow: rgba(176, 177, 172, 0.34);
  --soft-shadow: rgba(176, 177, 172, 0.2);
  --radius-large: 18px;
  --radius: 16px;
  --radius-small: 10px;
  font-family: "Nunito", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  overflow-x: hidden;
}

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  border: 1px solid var(--outline);
  border-radius: var(--radius-small);
  padding: 10px 12px;
  background: var(--surface);
}

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

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 18px clamp(24px, 4.2vw, 60px) 10px;
}

.icon-link {
  justify-self: start;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.icon-link img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.wordmark {
  justify-self: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero {
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: clamp(28px, 4.6vh, 50px) clamp(18px, 4vw, 56px) 76px;
  overflow-x: hidden;
  overflow-y: visible;
}

.hero-copy {
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.hero h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(46px, 4.8vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 700;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--subtext);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
  font-weight: 420;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1180px;
  min-height: 0;
  display: grid;
  place-items: center;
  margin-top: clamp(44px, 6vh, 64px);
}

svg {
  display: block;
}

.glass-button svg,
.icon-button svg,
.search-field svg,
.download-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-window {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 48px));
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--outline);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 24px 54px var(--shadow);
  backdrop-filter: blur(22px) saturate(1.04);
}

.app-titlebar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px 14px;
}

.app-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.glass-button,
.icon-button {
  min-height: 38px;
  border: 1px solid rgba(226, 226, 222, 0.85);
  border-radius: var(--radius-small);
  background: rgba(247, 247, 244, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 2px 8px rgba(226, 226, 222, 0.75);
  color: var(--text);
  backdrop-filter: blur(22px) saturate(1.08);
  cursor: pointer;
  transition: transform 120ms ease, opacity 120ms ease, border-color 120ms ease, background 120ms ease;
}

.glass-button:active,
.icon-button:active {
  transform: scale(0.96);
  opacity: 0.92;
}

.glass-button:focus,
.icon-button:focus,
.glass-button:focus-visible,
.icon-button:focus-visible {
  outline: none;
}

.glass-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  font-size: 14px;
  line-height: 1;
  font-weight: 650;
}

.glass-button svg {
  width: 16px;
  height: 16px;
}

.plus-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.35;
  flex: 0 0 auto;
}

.glass-button.record {
  width: 94px;
  justify-content: center;
  border-color: rgba(226, 226, 222, 0.85);
  background: rgba(247, 247, 244, 0.62);
  color: var(--accent);
}

.glass-button.record.is-recording {
  border-color: rgba(255, 59, 48, 0.95);
  background: var(--accent);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(255, 59, 48, 0.24);
}

.record-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 59, 48, 0.105);
}

.record.is-recording .record-dot {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  padding: 0;
  color: var(--icon);
}

.icon-button svg {
  width: 17px;
  height: 17px;
}

.app-body {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  height: 350px;
  border-top: 1px solid rgba(226, 226, 222, 0.86);
}

.notes-sidebar {
  display: flex;
  flex-direction: column;
  padding: 14px 8px 10px;
  border-right: 1px solid rgba(226, 226, 222, 0.9);
  background: var(--surface);
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.sidebar-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding: 0 8px;
}

.sidebar-heading strong {
  font-size: 14px;
  font-weight: 650;
}

.sidebar-heading span,
.editor-heading p,
.note-row span {
  color: var(--subtext);
  font-size: 11px;
  font-weight: 500;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin: 0 8px 10px;
  padding: 0 10px;
  border: 1px solid rgba(226, 226, 222, 0.95);
  border-radius: 9px;
  background: var(--background);
  color: var(--icon);
}

.search-field span {
  width: 14px;
  height: 14px;
}

.search-field input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--subtext);
  font-size: 12.5px;
  font-weight: 400;
  appearance: none;
}

.search-field input::placeholder {
  color: var(--subtext);
  opacity: 0.86;
}

.note-list {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.note-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.note-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 10px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  font: inherit;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease;
}

.note-row:hover {
  background: rgba(229, 228, 224, 0.45);
}

.note-row.selected {
  border: 1px solid rgba(226, 226, 222, 0.72);
  background: var(--surface-selected);
}

.note-row strong {
  display: block;
  grid-column: 1;
  overflow: hidden;
  min-width: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.note-row span {
  grid-column: 2;
  min-width: max-content;
  text-align: right;
  white-space: nowrap;
}

.note-row p {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--subtext);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.editor-pane {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 34px 34px;
  background: var(--surface);
}

.editor-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.editor-heading h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1;
  font-weight: 650;
}

.editor-heading p {
  margin: 0;
}

.note-paper {
  display: grid;
  gap: 15px;
  margin-top: 30px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
}

.note-paper p {
  margin: 0;
}

.note-paper p:first-child {
  color: var(--subtext);
}

.note-placeholder,
.empty-search {
  color: var(--subtext);
}

.empty-search {
  margin: 16px 2px 0;
  font-size: 13px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: clamp(34px, 4.5vh, 52px);
  position: relative;
  z-index: 2;
}

.hero-actions p {
  margin: 20px 0 0;
  color: #96938d;
  font-size: 12px;
  font-weight: 500;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--text);
  color: var(--background);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 15px 32px rgba(38, 37, 31, 0.18);
  font-size: 17px;
  font-weight: 650;
}

.download-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.15;
}

.hotkey-flow,
.privacy-panel,
.use-cases,
.history-note,
.faq {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.privacy-panel,
.use-cases,
.history-note,
.faq {
  margin-top: 22px;
}

.hotkey-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 6vw, 74px);
  padding: 72px 0 54px;
  border-top: 1px solid var(--outline);
}

.section-copy h2,
.history-note h2,
.faq h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.25vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 600;
}

.section-copy p,
.history-note p,
.faq p {
  margin: 14px 0 0;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.flow-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
}

.flow-rail div,
.privacy-panel,
.use-cases,
.history-note,
.faq {
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(192, 191, 184, 0.16);
}

.flow-rail div {
  min-height: 132px;
  padding: 18px 16px;
}

.flow-rail span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid var(--outline);
  border-radius: 9px;
  background: var(--background);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.flow-rail strong,
.use-list strong,
.faq summary {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 600;
}

.flow-rail p,
.use-list p {
  margin: 7px 0 0;
  color: var(--subtext);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 400;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 50px);
  padding: clamp(24px, 3.4vw, 34px);
}

.privacy-mark {
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(226, 226, 222, 0.82);
  border-radius: 26px;
  background: var(--background);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.privacy-mark span {
  display: none;
}

.privacy-mark svg {
  width: 54px;
  height: 54px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-cases {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(28px, 4.5vw, 62px);
  padding: clamp(24px, 3.4vw, 34px);
}

.use-list {
  display: grid;
  gap: 10px;
}

.use-list div {
  padding: 14px 16px;
  border: 1px solid var(--outline);
  border-radius: 12px;
  background: var(--background);
}

.history-note {
  padding: 24px clamp(24px, 4vw, 36px);
  text-align: center;
}

.faq {
  display: grid;
  gap: 0;
  padding: 24px clamp(24px, 4vw, 34px);
}

.faq h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.15vw, 30px);
}

.faq details {
  padding: 15px 0;
  border-top: 1px solid var(--outline);
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  cursor: pointer;
}

.faq summary:focus,
.faq summary:focus-visible {
  outline: none;
}

.faq p {
  margin-top: 10px;
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 96px;
  padding: 28px 20px;
  color: #a09e98;
  font-size: 12px;
  font-weight: 400;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  font-weight: inherit;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
  }

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

  .hero h1 {
    max-width: 560px;
    font-size: clamp(42px, 9.4vw, 60px);
    line-height: 1;
    white-space: normal;
  }

  .hero-copy p {
    max-width: 350px;
  }

  .hero-stage {
    width: 100%;
    min-height: auto;
    display: grid;
    place-items: center;
    margin-top: 42px;
    overflow: visible;
  }

  .app-window {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .app-body {
    grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  }

  .hotkey-flow,
  .privacy-panel,
  .use-cases {
    grid-template-columns: 1fr;
  }

  .hotkey-flow {
    padding-top: 74px;
  }

  .flow-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  html,
  body,
  main,
  .hero,
  .hero-copy,
  .hero-stage {
    max-width: 100vw;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding-inline: 18px;
  }

  .site-header nav {
    display: none;
  }

  .wordmark {
    justify-self: start;
    margin-left: 12px;
    font-size: 20px;
  }

  .icon-link {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .hero {
    padding-inline: 16px;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .hero-stage {
    width: calc(100vw - 32px);
    max-width: 320px;
    overflow: hidden;
  }

  .app-window {
    width: 100%;
    max-width: 320px;
  }

  .hero-copy p {
    max-width: 292px;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .hero h1 {
    max-width: 288px;
    font-size: 36px;
  }

  .app-titlebar {
    justify-content: center;
    padding: 12px 10px;
    overflow: hidden;
  }

  .app-actions {
    width: 100%;
    justify-content: center;
    gap: 6px;
    min-width: 0;
  }

  .glass-button {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
    max-width: 112px;
    min-height: 34px;
    gap: 7px;
    padding: 0 9px;
    font-size: 13px;
    white-space: nowrap;
  }

  .glass-button svg,
  .plus-icon {
    width: 14px;
    height: 14px;
  }

  .icon-button {
    flex: 0 0 34px;
    width: 34px;
    min-height: 34px;
  }

  .app-body {
    display: block;
    grid-template-columns: none;
    min-width: 0;
  }

  .notes-sidebar {
    width: 100%;
    max-width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--outline);
    overflow: hidden;
  }

  .note-list {
    max-height: 160px;
    overflow: auto;
  }

  .note-row {
    grid-template-columns: minmax(0, 1fr) minmax(min-content, auto);
    column-gap: 8px;
    padding: 7px 9px;
  }

  .note-row span {
    max-width: 58px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .note-row p {
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.3;
  }

  .editor-pane {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 240px;
    padding: 24px 22px 28px;
    overflow: hidden;
  }

  .note-paper {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .note-paper p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    margin-top: 36px;
  }

  .download-button {
    min-height: 46px;
    padding: 0 22px;
    font-size: 17px;
  }

  .hotkey-flow,
  .privacy-panel,
  .use-cases,
  .history-note,
  .faq {
    display: block;
    width: calc(100vw - 32px);
    max-width: 320px;
    min-width: 0;
    overflow: hidden;
  }

  .flow-rail,
  .flow-rail div,
  .use-list,
  .use-list div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .flow-rail,
  .use-list {
    margin-top: 26px;
  }

  .section-copy,
  .section-copy h2,
  .history-note h2,
  .faq h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-copy h2,
  .history-note h2,
  .faq h2 {
    font-size: 24px;
    line-height: 1.16;
    white-space: normal;
  }

  .privacy-panel,
  .use-cases {
    padding: 26px 22px;
  }

  .privacy-mark {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

  .privacy-mark svg {
    width: 48px;
    height: 48px;
    stroke-width: 3;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-inline: 12px;
  }

  .hero-stage {
    width: calc(100vw - 24px);
    max-width: 312px;
  }

  .app-window,
  .hotkey-flow,
  .privacy-panel,
  .use-cases,
  .history-note,
  .faq {
    max-width: 312px;
  }

  .hero h1 {
    max-width: 260px;
    font-size: 33px;
  }

  .glass-button {
    max-width: 104px;
    gap: 6px;
    padding-inline: 8px;
    font-size: 12px;
  }

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

@media (prefers-reduced-motion: no-preference) {
  .record.is-recording .record-dot {
    animation: listen-pulse 1.8s ease-in-out infinite;
  }
}

@keyframes listen-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.68;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Universal release redesign overrides */
.hero {
  padding-bottom: 72px;
}

.hero h1 {
  max-width: 1180px;
  font-weight: 650;
  white-space: normal;
}

.hero-copy p {
  max-width: 820px;
  font-weight: 400;
}

.device-showcase {
  max-width: 1120px;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 760px) 232px;
  justify-content: center;
  align-items: end;
  gap: 28px;
  margin-top: clamp(48px, 6.2vh, 74px);
}

.device-showcase .app-window {
  grid-column: 1;
  grid-row: 1;
  width: min(760px, calc(100vw - 48px));
}

.ios-preview {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: 232px;
  transform: none;
  pointer-events: none;
}

.phone-shell {
  display: flex;
  flex-direction: column;
  min-height: 452px;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: 34px;
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 26px 52px rgba(176, 177, 172, 0.26);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 60px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(226, 226, 222, 0.82);
}

.phone-top img {
  display: block;
  border-radius: 7px;
}

.phone-top strong,
.phone-editor h3,
.keyboard-bar strong {
  color: var(--text);
  font-weight: 650;
}

.phone-top strong {
  font-size: 15px;
}

.phone-editor {
  flex: 1;
  padding: 24px 18px 20px;
}

.phone-editor span {
  color: var(--subtext);
  font-size: 11px;
  font-weight: 500;
}

.phone-editor h3 {
  margin: 8px 0 14px;
  font-size: 20px;
  line-height: 1.12;
}

.phone-editor p {
  margin: 0;
  color: var(--subtext);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 400;
}

.phone-keyboard {
  padding: 12px 12px 14px;
  border-top: 1px solid rgba(226, 226, 222, 0.84);
  background: rgba(229, 228, 224, 0.54);
}

.keyboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid rgba(226, 226, 222, 0.88);
  border-radius: 10px;
  background: var(--background);
}

.keyboard-bar span {
  color: var(--subtext);
  font-size: 10.5px;
  font-weight: 500;
}

.keyboard-bar strong {
  color: var(--accent);
  font-size: 11px;
}

.key-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.key-grid span {
  height: 20px;
  border-radius: 6px;
  background: var(--background);
  box-shadow: inset 0 0 0 1px rgba(226, 226, 222, 0.88);
}

.hero-actions {
  margin-top: clamp(38px, 5.4vh, 64px);
}

.app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
}

.app-store-link img {
  display: block;
  width: auto;
  height: 48px;
}

.platform-native,
.fit-section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.platform-native {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 74px);
  padding: 72px 0 54px;
  border-top: 1px solid var(--outline);
}

.platform-panels {
  display: grid;
  gap: 14px;
}

.platform-panel {
  min-height: 170px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(192, 191, 184, 0.16);
}

.platform-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
}

.platform-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.12;
  font-weight: 580;
}

.platform-panel p {
  max-width: 620px;
  margin: 13px 0 0;
  color: var(--subtext);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4.5vw, 62px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(192, 191, 184, 0.16);
}

.fit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: var(--background);
  color: var(--subtext);
  font-size: 13px;
  line-height: 1;
  font-weight: 430;
}

@media (max-width: 980px) {
  .device-showcase {
    max-width: 760px;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .ios-preview {
    position: relative;
    right: auto;
    bottom: auto;
    order: -1;
    width: min(300px, calc(100vw - 48px));
    transform: none;
  }

  .phone-shell {
    min-height: 390px;
  }

  .platform-native,
  .fit-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero-copy p {
    max-width: 330px;
  }

  .device-showcase {
    width: calc(100vw - 32px);
    max-width: 360px;
    overflow: visible;
  }

  .ios-preview {
    width: min(292px, 100%);
  }

  .phone-shell {
    min-height: 374px;
    border-radius: 30px;
  }

  .device-showcase .app-window {
    width: 100%;
  }

  .app-store-link {
    min-height: 60px;
    padding: 10px;
  }

  .app-store-link img {
    height: 40px;
  }

  .platform-native,
  .fit-section,
  .faq,
  .privacy-panel {
    width: calc(100vw - 32px);
    max-width: 360px;
  }

  .platform-native {
    display: grid;
    padding-top: 56px;
    padding-bottom: 34px;
  }

  .platform-panels {
    margin-top: 0;
  }

  .platform-panel {
    min-height: 0;
    padding: 22px;
  }

  .platform-panel h3 {
    font-size: 22px;
  }

  .platform-panel p {
    font-size: 15px;
  }

  .fit-section {
    display: grid;
    padding: 26px 22px;
  }

  .fit-list {
    margin-top: 4px;
  }
}

/* Channel-aware landing page */
.site-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 36px) 8px;
}

.brand,
.site-header nav,
.nav-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-size: 18px;
  font-weight: 650;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-header nav {
  justify-self: center;
  gap: 24px;
  color: #8b8983;
  font-size: 13px;
  font-weight: 430;
}

.nav-cta {
  justify-self: end;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: rgba(242, 241, 238, 0.68);
  color: var(--text);
  font-size: 13px;
  font-weight: 560;
  box-shadow: 0 8px 20px rgba(176, 177, 172, 0.16);
}

.hero {
  padding: clamp(46px, 7vh, 76px) clamp(18px, 4vw, 56px) 80px;
}

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

.hero h1 {
  max-width: 1050px;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.96;
  font-weight: 650;
  white-space: normal;
}

.hero-copy p {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.42;
  font-weight: 400;
}

.primary-action:focus,
.primary-action:focus-visible,
.secondary-action:focus,
.secondary-action:focus-visible,
.card-button:focus,
.card-button:focus-visible,
.nav-cta:focus,
.nav-cta:focus-visible,
.final-cta a:focus,
.final-cta a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 59, 48, 0.14),
    0 8px 18px rgba(38, 37, 31, 0.14);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
  width: min(1120px, 100%);
  margin: clamp(34px, 5vh, 54px) auto 0;
}

.workflow-demo,
.version-card,
.download-card,
.workflow-list article,
.privacy-section,
.notes-section,
.faq,
.final-cta {
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(176, 177, 172, 0.16);
}

.workflow-demo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.demo-panel {
  display: none;
  height: 100%;
  min-height: 430px;
  padding: clamp(18px, 3vw, 30px);
}

.demo-panel.active {
  display: block;
}

.desktop-stage,
.mobile-stage {
  position: relative;
  height: 100%;
  min-height: 370px;
}

.target-app,
.spiel-note-window,
.phone-app,
.keyboard-preview {
  border: 1px solid rgba(226, 226, 222, 0.95);
  background: rgba(247, 247, 244, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 18px 36px rgba(176, 177, 172, 0.18);
}

.target-app {
  position: absolute;
  inset: 18px 18px 46px 18px;
  overflow: hidden;
  border-radius: 18px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--outline);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f0645c;
}

.window-bar span:nth-child(2) {
  background: #f4c54a;
}

.window-bar span:nth-child(3) {
  background: #62c96f;
}

.window-bar strong {
  margin-left: 8px;
  color: var(--subtext);
  font-size: 12px;
  font-weight: 560;
}

.message-field {
  min-height: calc(100% - 48px);
  padding: clamp(28px, 4vw, 48px);
  text-align: left;
}

.message-field p {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--subtext);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
  font-weight: 400;
}

.message-field .inserted-text {
  color: var(--text);
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent);
}

.floating-recorder {
  position: absolute;
  left: clamp(28px, 6vw, 72px);
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 226, 222, 0.92);
  border-radius: 16px;
  background: rgba(247, 247, 244, 0.86);
  box-shadow: 0 18px 38px rgba(176, 177, 172, 0.24);
  backdrop-filter: blur(20px) saturate(1.05);
  text-align: left;
}

.fn-key {
  display: grid;
  place-items: center;
  width: 44px;
  height: 38px;
  border-radius: 11px;
  background: var(--text);
  color: var(--background);
  font-size: 14px;
  font-weight: 650;
}

.floating-recorder strong,
.keyboard-row strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.floating-recorder p {
  margin: 3px 0 0;
  color: var(--subtext);
  font-size: 12px;
}

.record-light {
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255, 59, 48, 0.12);
}

.spiel-note-window {
  width: min(560px, 100%);
  height: 100%;
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
}

.note-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--outline);
}

.note-toolbar button,
.keyboard-row button {
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
}

.note-toolbar button {
  min-height: 34px;
  padding: 0 14px;
}

.note-toolbar button:nth-child(2) {
  background: var(--text);
}

.spiel-note-window article {
  padding: 34px 42px;
  text-align: left;
}

.spiel-note-window h3,
.phone-note h3,
.note-preview h3 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 650;
}

.spiel-note-window p,
.phone-note p,
.note-preview p {
  margin: 18px 0 0;
  color: var(--subtext);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.copy-state {
  width: fit-content;
  margin-top: 28px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
}

.mobile-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 1.1fr);
  gap: 18px;
  align-items: center;
}

.phone-app {
  min-height: 360px;
  overflow: hidden;
  border-radius: 32px;
}

.phone-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--outline);
}

.phone-topline img {
  border-radius: 7px;
}

.phone-topline strong {
  font-size: 14px;
  font-weight: 650;
}

.phone-note {
  padding: 34px 22px;
  text-align: left;
}

.phone-note span,
.note-preview span,
.download-card span,
.version-kicker,
.workflow-list strong {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
}

.keyboard-preview {
  border-radius: 20px;
  padding: 14px;
}

.text-field {
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: var(--background);
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
}

.keyboard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 13px;
  background: var(--background);
}

.keyboard-row button {
  min-height: 30px;
  padding: 0 12px;
}

.keys {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.keys span {
  height: 22px;
  border-radius: 7px;
  background: var(--background);
  box-shadow: inset 0 0 0 1px rgba(226, 226, 222, 0.9);
}

.version-card {
  padding: clamp(24px, 3vw, 34px);
  text-align: left;
}

.version-card h2 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  font-weight: 620;
}

.version-card p:not(.version-kicker) {
  margin: 16px 0 0;
  color: var(--subtext);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

.version-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.version-card li {
  color: var(--text);
  font-size: 14px;
  font-weight: 560;
}

.version-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.card-button,
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
}

.primary-action,
.card-button,
.final-cta a:first-child {
  padding: 0 18px;
  background: var(--text);
  color: var(--background);
}

.secondary-action,
.card-button.subtle,
.final-cta a:not(:first-child) {
  padding: 0 18px;
  border: 1px solid var(--outline);
  background: var(--background);
  color: var(--text);
}

.versions,
.workflow-section,
.privacy-section,
.notes-section,
.requirements,
.faq,
.final-cta {
  width: min(1040px, calc(100% - 40px));
  margin: 24px auto 0;
}

.versions,
.workflow-section {
  padding-top: 50px;
  border-top: 1px solid var(--outline);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2,
.privacy-copy h2,
.notes-section h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 620;
}

.section-heading p,
.privacy-copy p,
.notes-section p {
  margin: 0;
  color: var(--subtext);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

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

.download-card {
  min-height: 250px;
  padding: 24px;
}

.download-card.featured {
  background: var(--text);
  color: var(--background);
}

.download-card h3 {
  margin: 18px 0 0;
  color: inherit;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 620;
}

.download-card p {
  margin: 14px 0 24px;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.5;
}

.download-card .badge-note {
  margin-top: 22px;
  margin-bottom: 0;
  padding-top: 13px;
  border-top: 1px solid var(--outline);
  color: #96938d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.download-card.featured p {
  color: rgba(247, 247, 244, 0.76);
}

.download-card.featured span {
  color: #ffbab5;
}

.download-card.featured .card-button {
  background: var(--background);
  color: var(--text);
}

.store-badge {
  display: inline-flex;
  min-height: 60px;
  padding: 10px;
}

.store-badge img {
  width: auto;
  height: 40px;
}

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

.workflow-list article {
  padding: 24px;
}

.workflow-list h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.08;
  font-weight: 610;
}

.workflow-list p {
  max-width: 780px;
  margin: 12px 0 0;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.55;
}

.privacy-section,
.notes-section,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
}

.privacy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-chips span,
.requirements span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 0 13px;
  background: var(--background);
  color: var(--subtext);
  font-size: 13px;
  font-weight: 500;
}

.note-preview {
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: var(--background);
  padding: 24px;
  text-align: left;
}

.requirements {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 0;
  box-shadow: none;
}

.faq {
  padding: clamp(24px, 4vw, 36px);
}

.faq details {
  padding: 16px 0;
}

.faq summary {
  font-size: 15px;
}

.faq p {
  max-width: 820px;
}

.final-cta {
  margin-bottom: 20px;
}

.final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  font-weight: 400;
}

@media (prefers-reduced-motion: no-preference) {
  .cursor {
    animation: cursor-blink 1.2s step-end infinite;
  }
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-layout,
  .section-heading,
  .privacy-section,
  .notes-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 36px 16px 54px;
  }

  .hero h1 {
    max-width: 358px;
    font-size: clamp(44px, 16vw, 62px);
  }

  .hero-copy p {
    max-width: 334px;
    font-size: 16px;
  }

  .hero-layout,
  .versions,
  .workflow-section,
  .privacy-section,
  .notes-section,
  .requirements,
  .faq,
  .final-cta {
    width: min(100%, 360px);
  }

  .workflow-demo {
    min-height: 390px;
  }

  .demo-panel {
    min-height: 390px;
    padding: 14px;
  }

  .target-app {
    inset: 10px 10px 64px;
  }

  .message-field {
    padding: 24px 18px;
  }

  .message-field p {
    font-size: 18px;
  }

  .floating-recorder {
    left: 18px;
    right: 18px;
    bottom: 12px;
    min-width: 0;
  }

  .spiel-note-window {
    min-height: 340px;
  }

  .spiel-note-window article {
    padding: 28px 22px;
  }

  .phone-app {
    min-height: 300px;
  }

  .version-card,
  .download-card,
  .workflow-list article,
  .privacy-section,
  .notes-section,
  .faq,
  .final-cta {
    padding: 22px;
  }
}

/* Final visual pass */
.site-header {
  min-height: 68px;
}

.hero {
  padding-top: clamp(34px, 5.2vh, 54px);
  padding-bottom: clamp(54px, 7vh, 72px);
}

.hero h1 {
  max-width: 1100px;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.99;
  font-weight: 650;
}

.hero-copy p {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.46;
}

.hero-layout {
  max-width: 1080px;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  margin-top: clamp(28px, 4vh, 40px);
}

.workflow-demo,
.demo-panel {
  min-height: 430px;
}

.desktop-stage,
.mobile-stage {
  min-height: 370px;
}

.version-card h2 {
  font-size: clamp(25px, 2.45vw, 34px);
  line-height: 1.08;
  font-weight: 600;
}

.version-card li,
.download-card h3,
.workflow-list h3,
.spiel-note-window h3,
.phone-note h3,
.note-preview h3 {
  font-weight: 600;
}

.section-heading h2,
.privacy-copy h2,
.notes-section h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
}

.workflow-list h3 {
  font-size: clamp(21px, 2.2vw, 30px);
}

.download-card {
  min-height: 230px;
}

@media (max-width: 980px) {
  .hero-layout {
    max-width: 720px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero-copy p {
    max-width: 342px;
    font-size: 15.5px;
  }

  .hero-layout {
    width: min(100%, 360px);
    margin-top: 26px;
  }

  .workflow-demo,
  .demo-panel {
    min-height: 360px;
  }

  .desktop-stage,
  .mobile-stage {
    min-height: 320px;
  }

  .version-card h2 {
    font-size: 25px;
  }
}

/* Universal launch page reset */
body {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), rgba(247, 247, 244, 0) 34rem),
    var(--background);
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 22px clamp(20px, 4vw, 64px) 10px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 650;
  color: var(--text);
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.site-header nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: rgba(38, 37, 31, 0.55);
  font-size: 15px;
  font-weight: 520;
}

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

.nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 37, 31, 0.08);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(242, 241, 238, 0.72);
  box-shadow: 0 10px 26px rgba(176, 177, 172, 0.14);
  color: var(--text);
  font-size: 14px;
  font-weight: 610;
}

.hero {
  min-height: auto;
  padding: clamp(70px, 8vh, 108px) clamp(18px, 4vw, 56px) 54px;
}

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

.hero h1 {
  max-width: 1180px;
  white-space: normal;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(38, 37, 31, 0.58);
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.42;
  font-weight: 430;
}

.hero-layout {
  width: min(980px, calc(100% - 28px));
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  margin: clamp(52px, 7vh, 82px) auto 0;
}

.workflow-demo {
  position: relative;
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(38, 37, 31, 0.09);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(242, 241, 238, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 34px 86px rgba(176, 177, 172, 0.22);
}

.demo-panel,
.demo-panel.active {
  position: absolute;
  inset: 0;
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.desktop-stage {
  position: absolute;
  inset: 0;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--surface);
}

.target-app {
  position: absolute;
  inset: 72px 78px 72px;
  border: 1px solid rgba(38, 37, 31, 0.09);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 22px 58px rgba(176, 177, 172, 0.18);
}

.window-bar {
  display: grid;
  grid-template-columns: 12px 12px 12px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(38, 37, 31, 0.07);
  color: rgba(38, 37, 31, 0.45);
  font-size: 13px;
  font-weight: 560;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) {
  background: #ff5f57;
}

.window-bar span:nth-child(2) {
  background: #ffbd2e;
}

.window-bar span:nth-child(3) {
  background: #28c840;
}

.window-bar strong {
  justify-self: center;
  margin-left: -60px;
  color: rgba(38, 37, 31, 0.5);
  font-weight: 560;
}

.message-field {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 38px 46px;
  color: rgba(38, 37, 31, 0.56);
  font-size: clamp(20px, 2.15vw, 28px);
  line-height: 1.42;
  font-weight: 430;
}

.message-field p {
  margin: 0;
}

.message-field .inserted-text {
  color: var(--text);
  font-weight: 520;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--accent);
  animation: cursor-blink 1.2s steps(2, start) infinite;
}

.floating-recorder {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 13px;
  align-items: center;
  min-width: 260px;
  border: 1px solid rgba(38, 37, 31, 0.09);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(176, 177, 172, 0.24);
}

.fn-key {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 59, 48, 0.12);
  color: var(--accent);
  font-size: 16px;
  font-weight: 650;
}

.floating-recorder strong {
  display: block;
  color: var(--accent);
  font-size: 17px;
  font-weight: 650;
}

.floating-recorder p {
  margin: 2px 0 0;
  color: rgba(38, 37, 31, 0.48);
  font-size: 13px;
  font-weight: 430;
}

.record-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 59, 48, 0.12);
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.primary-action,
.purchase-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 30px;
  background: var(--text);
  box-shadow: 0 20px 46px rgba(38, 37, 31, 0.18);
  color: #fffdf8;
  font-size: 19px;
  font-weight: 650;
}

.hero-actions-row span {
  color: rgba(38, 37, 31, 0.45);
  font-size: 15px;
  font-weight: 430;
}

.moment-strip {
  width: min(980px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 26px auto 0;
  overflow: hidden;
  border: 1px solid rgba(38, 37, 31, 0.08);
  border-radius: 24px;
  background: rgba(38, 37, 31, 0.08);
  box-shadow: 0 18px 44px rgba(176, 177, 172, 0.14);
}

.moment-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  background: rgba(255, 255, 255, 0.46);
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 610;
}

.downloads-section,
.privacy-section,
.faq {
  width: min(980px, calc(100% - 40px));
  margin-inline: auto;
}

.downloads-section {
  margin-top: clamp(72px, 10vh, 118px);
}

.section-heading {
  width: 100%;
  max-width: none;
  display: block;
  text-align: center;
}

.section-heading h2,
.privacy-copy h2,
.faq h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.06;
  font-weight: 590;
  letter-spacing: 0;
}

.section-heading p,
.privacy-copy p {
  max-width: 620px;
  margin: 14px auto 0;
  color: rgba(38, 37, 31, 0.54);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  font-weight: 410;
}

.download-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
  border: 1px solid rgba(38, 37, 31, 0.08);
  border-radius: 30px;
  padding: 20px;
  background: rgba(242, 241, 238, 0.7);
  box-shadow: 0 28px 72px rgba(176, 177, 172, 0.16);
}

.download-option {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 134px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(38, 37, 31, 0.48);
  font-size: 14px;
  font-weight: 430;
  text-align: center;
}

.apple-badge {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.apple-badge img {
  display: block;
  width: auto;
  height: 40px;
}

.direct-purchase span {
  order: -1;
  color: rgba(38, 37, 31, 0.52);
}

.purchase-button {
  min-height: 50px;
  padding-inline: 24px;
  box-shadow: 0 16px 34px rgba(38, 37, 31, 0.14);
  font-size: 16px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  margin-top: clamp(68px, 9vh, 108px);
  border: 1px solid rgba(38, 37, 31, 0.08);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 66px rgba(176, 177, 172, 0.12);
}

.privacy-copy p {
  margin-inline: 0;
}

.privacy-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 380px;
}

.privacy-chips span {
  border: 1px solid rgba(38, 37, 31, 0.08);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(242, 241, 238, 0.62);
  color: rgba(38, 37, 31, 0.58);
  font-size: 13px;
  font-weight: 460;
}

.faq {
  margin-top: clamp(56px, 8vh, 96px);
}

.faq h2 {
  text-align: center;
}

.faq details {
  margin-top: 24px;
  border: 1px solid rgba(38, 37, 31, 0.08);
  border-radius: 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 20px 54px rgba(176, 177, 172, 0.1);
}

.faq summary {
  cursor: pointer;
  padding: 24px 28px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  font-weight: 590;
}

.faq details p {
  max-width: 820px;
  margin: 0;
  padding: 0 28px 28px;
  color: rgba(38, 37, 31, 0.58);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  font-weight: 410;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: clamp(70px, 10vh, 120px);
  padding: 0 20px 34px;
  color: rgba(38, 37, 31, 0.38);
  font-size: 14px;
  font-weight: 380;
}

.site-footer a:hover {
  color: rgba(38, 37, 31, 0.62);
}

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

  .site-header nav {
    display: none;
  }

  .brand span {
    display: inline;
  }

  .hero {
    padding-top: 58px;
  }

  .workflow-demo {
    min-height: 382px;
    border-radius: 28px;
  }

  .target-app {
    inset: 56px 28px 74px;
  }

  .message-field {
    padding: 30px 28px;
    font-size: 21px;
  }

  .download-panel,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .privacy-chips {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
    padding: 16px 16px 6px;
    gap: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .nav-cta {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero {
    padding: 44px 16px 40px;
  }

  .hero h1 {
    max-width: 390px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.99;
  }

  .hero-copy p {
    max-width: 350px;
    margin-top: 18px;
    font-size: 17px;
  }

  .hero-layout {
    width: min(100%, 380px);
    margin-top: 36px;
  }

  .workflow-demo {
    min-height: 332px;
    border-radius: 24px;
  }

  .target-app {
    inset: 42px 16px 80px;
    border-radius: 18px;
  }

  .window-bar {
    min-height: 40px;
    padding-inline: 13px;
  }

  .window-bar strong {
    display: none;
  }

  .message-field {
    gap: 14px;
    padding: 22px 18px;
    font-size: 18px;
  }

  .floating-recorder {
    min-width: min(292px, calc(100% - 32px));
    bottom: 18px;
    padding: 10px 13px;
  }

  .moment-strip,
  .downloads-section,
  .privacy-section,
  .faq {
    width: min(100% - 28px, 390px);
  }

  .moment-strip {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .moment-strip span {
    min-height: 58px;
    font-size: 19px;
  }

  .download-panel {
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .download-option {
    min-height: 116px;
  }

  .privacy-section {
    border-radius: 24px;
  }

  .privacy-chips {
    gap: 8px;
  }

  .faq summary {
    padding: 21px 22px;
  }

  .faq details p {
    padding: 0 22px 22px;
  }
}

/* Reference rebuild: simple launch page */
html {
  background: #fff3e3;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.56), rgba(255, 243, 227, 0) 34rem),
    #fff3e3;
  color: #28231f;
}

.reference-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 28px clamp(22px, 4.8vw, 68px);
}

.reference-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #28231f;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 720;
}

.reference-header .brand img {
  width: clamp(46px, 4vw, 64px);
  height: clamp(46px, 4vw, 64px);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(96, 73, 48, 0.12);
}

.reference-nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  color: rgba(40, 35, 31, 0.72);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 660;
}

.reference-nav a:hover {
  color: #28231f;
}

.reference-hero {
  width: min(1540px, calc(100% - 44px));
  min-height: auto;
  display: grid;
  align-content: center;
  justify-items: center;
  margin: 0 auto;
  padding: clamp(46px, 7vh, 78px) 0 clamp(48px, 7vh, 74px);
  text-align: center;
}

.reference-hero h1 {
  max-width: 1320px;
  margin: 0;
  color: #28231f;
  font-size: clamp(74px, 9.1vw, 148px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 760;
}

.reference-hero p {
  max-width: 820px;
  margin: clamp(28px, 3vh, 40px) auto 0;
  color: rgba(40, 35, 31, 0.62);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.25;
  font-weight: 470;
}

.hero-buy-button,
.direct-button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 0 34px;
  background: #28231f;
  box-shadow: 0 20px 44px rgba(40, 35, 31, 0.18);
  color: #fff8ec;
  font-size: 22px;
  font-weight: 720;
}

.hero-buy-button {
  margin-top: clamp(42px, 5vh, 64px);
  min-height: 72px;
  border-radius: 24px;
  padding-inline: clamp(34px, 5vw, 62px);
  font-size: clamp(23px, 2.2vw, 34px);
}

.app-showcase {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto clamp(60px, 9vh, 106px);
}

.spiel-window {
  overflow: hidden;
  border: 1px solid rgba(40, 35, 31, 0.1);
  border-radius: 28px;
  background: rgba(250, 247, 239, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 34px 88px rgba(96, 73, 48, 0.14);
}

.spiel-toolbar {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(40, 35, 31, 0.09);
  padding: 0 clamp(28px, 4vw, 52px);
}

.spiel-toolbar > strong {
  color: #28231f;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  font-weight: 720;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toolbar-actions span {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(40, 35, 31, 0.1);
  border-radius: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(96, 73, 48, 0.1);
  color: #28231f;
  font-size: 18px;
  font-weight: 690;
}

.toolbar-actions .record-control {
  color: #ff3b30;
}

.record-control i {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ff3b30;
  box-shadow: 0 0 0 10px rgba(255, 59, 48, 0.12);
}

.toolbar-actions .gear {
  width: 52px;
  padding: 0;
  color: rgba(40, 35, 31, 0.35);
}

.spiel-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  min-height: 460px;
}

.note-sidebar {
  border-right: 1px solid rgba(40, 35, 31, 0.09);
  padding: 30px 28px;
}

.notes-heading,
.note-row-preview div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.notes-heading strong {
  font-size: 24px;
  font-weight: 700;
}

.notes-heading span,
.note-row-preview span {
  color: rgba(40, 35, 31, 0.55);
  font-size: 16px;
  font-weight: 520;
}

.search-preview {
  margin-top: 24px;
  border: 1px solid rgba(40, 35, 31, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  color: rgba(40, 35, 31, 0.42);
  background: rgba(255, 255, 255, 0.54);
  font-size: 17px;
  font-weight: 430;
}

.note-row-preview {
  margin: 18px 0 0;
  border: 0;
  border-radius: 16px;
  padding: 16px 18px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.note-row-preview.selected {
  background: rgba(40, 35, 31, 0.08);
}

.note-row-preview strong {
  color: #28231f;
  font-size: 17px;
  font-weight: 700;
}

.note-row-preview p {
  margin: 8px 0 0;
  color: rgba(40, 35, 31, 0.56);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 430;
}

.note-detail {
  padding: clamp(46px, 6vw, 78px);
}

.note-detail h2 {
  margin: 0;
  color: #28231f;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 720;
}

.note-detail > span {
  display: block;
  margin-top: 12px;
  color: rgba(40, 35, 31, 0.54);
  font-size: 18px;
  font-weight: 540;
}

.note-detail p,
.note-detail [data-preview-body] p {
  max-width: 660px;
  margin: 44px 0 0;
  color: rgba(40, 35, 31, 0.63);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.42;
  font-weight: 430;
}

.note-detail p + p,
.note-detail [data-preview-body] p + p {
  margin-top: 30px;
}

.direct-download {
  width: min(960px, calc(100% - 44px));
  display: grid;
  justify-items: center;
  gap: 24px;
  margin: 0 auto clamp(64px, 9vh, 110px);
  text-align: center;
}

.direct-download h2 {
  margin: 0;
  color: #28231f;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 740;
}

.reference-faq {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  border: 1px solid rgba(40, 35, 31, 0.1);
  border-radius: 34px;
  padding: clamp(34px, 5vw, 72px);
  background: rgba(255, 248, 236, 0.58);
  box-shadow: 0 24px 72px rgba(96, 73, 48, 0.1);
}

.reference-faq h2 {
  margin: 0 0 28px;
  color: #28231f;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 0.96;
  font-weight: 740;
  letter-spacing: 0;
}

.reference-faq details {
  border-top: 1px solid rgba(40, 35, 31, 0.12);
  padding: 24px 0;
}

.reference-faq summary {
  cursor: pointer;
  color: #28231f;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.18;
  font-weight: 670;
}

.reference-faq p {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(40, 35, 31, 0.62);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.52;
  font-weight: 430;
}

.reference-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 9vh, 110px) 20px 38px;
  color: rgba(40, 35, 31, 0.38);
  font-size: 15px;
  font-weight: 360;
}

.reference-footer a:hover {
  color: rgba(40, 35, 31, 0.66);
}

@media (max-width: 760px) {
  .reference-header {
    min-height: 76px;
    padding: 16px 18px;
  }

  .reference-header .brand {
    gap: 10px;
    font-size: 20px;
  }

  .reference-header .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .reference-nav {
    gap: 16px;
    font-size: 14px;
  }

  .reference-hero {
    width: min(100% - 28px, 440px);
    min-height: auto;
    padding: 56px 0 56px;
  }

  .reference-hero h1 {
    font-size: clamp(52px, 15vw, 72px);
    line-height: 0.92;
  }

  .reference-hero p {
    max-width: 340px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.34;
  }

  .hero-buy-button {
    min-height: 62px;
    border-radius: 20px;
  }

  .app-showcase {
    width: min(100% - 28px, 440px);
    margin-bottom: 56px;
  }

  .spiel-window {
    border-radius: 24px;
  }

  .spiel-toolbar {
    min-height: 76px;
    padding-inline: 18px;
  }

  .spiel-toolbar > strong {
    font-size: 34px;
  }

  .toolbar-actions {
    gap: 10px;
  }

  .toolbar-actions span {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0;
    overflow: hidden;
  }

  .toolbar-actions .record-control i {
    width: 14px;
    height: 14px;
  }

  .toolbar-actions .record-control {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .toolbar-actions span:nth-child(2) {
    position: relative;
    color: transparent;
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .toolbar-actions span:nth-child(2)::before {
    content: "+";
    color: #28231f;
    font-size: 26px;
    line-height: 1;
    font-weight: 720;
  }

  .toolbar-actions .gear {
    display: none;
  }

  .spiel-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .note-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(40, 35, 31, 0.09);
    padding: 22px 18px;
  }

  .note-row-preview:nth-of-type(n + 4) {
    display: none;
  }

  .note-detail {
    padding: 28px 24px 36px;
  }

  .note-detail h2 {
    font-size: 34px;
  }

  .note-detail p {
    margin-top: 28px;
    font-size: 21px;
  }

  .reference-faq {
    width: min(100% - 28px, 440px);
    border-radius: 26px;
    padding: 28px 24px;
  }

  .reference-faq h2 {
    font-size: 40px;
  }

  .reference-footer {
    padding-top: 56px;
  }
}

/* Hero scale and recovered macOS preview pass */
.reference-header {
  min-height: 92px;
  padding: 22px clamp(22px, 4.8vw, 60px) 12px;
}

.reference-header .brand {
  gap: 14px;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 620;
}

.reference-header .brand img {
  width: clamp(42px, 3.5vw, 54px);
  height: clamp(42px, 3.5vw, 54px);
}

.reference-nav {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 520;
}

.reference-hero {
  padding: clamp(28px, 4.8vh, 58px) 0 clamp(36px, 5.2vh, 58px);
}

.reference-hero h1 {
  max-width: 1120px;
  font-size: clamp(52px, 6.5vw, 108px);
  line-height: 0.96;
  font-weight: 620;
}

.reference-hero p {
  max-width: 720px;
  margin-top: clamp(18px, 2.2vh, 28px);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.35;
  font-weight: 390;
}

.hero-buy-button,
.direct-button {
  font-weight: 590;
}

.hero-buy-button {
  min-height: 58px;
  margin-top: clamp(30px, 4vh, 48px);
  border-radius: 20px;
  padding-inline: clamp(28px, 4vw, 48px);
  font-size: clamp(18px, 1.55vw, 24px);
}

.app-showcase {
  width: min(940px, calc(100% - 44px));
  margin-bottom: clamp(48px, 7vh, 82px);
}

.app-showcase .app-window {
  width: 100%;
  border-radius: 20px;
}

.app-showcase .app-titlebar {
  min-height: 78px;
  padding: 16px 24px;
}

.app-showcase .app-actions {
  justify-content: flex-end;
}

.app-showcase .glass-button {
  min-height: 42px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 560;
}

.app-showcase .icon-button {
  width: 42px;
  min-height: 42px;
  border-radius: 13px;
}

.app-showcase .app-body {
  height: 360px;
  grid-template-columns: 310px minmax(0, 1fr);
}

.app-showcase .notes-sidebar {
  padding: 22px 14px 14px;
}

.app-showcase .sidebar-heading strong,
.app-showcase .editor-heading h3 {
  font-weight: 590;
}

.app-showcase .sidebar-heading strong {
  font-size: 19px;
}

.app-showcase .note-row strong {
  font-size: 14px;
  font-weight: 560;
}

.app-showcase .note-row {
  padding: 9px 11px;
}

.app-showcase .editor-pane {
  padding: 42px 48px;
}

.app-showcase .editor-heading h3 {
  font-size: 26px;
  line-height: 1.08;
}

.app-showcase .note-paper {
  margin-top: 34px;
  font-size: 20px;
  line-height: 1.52;
}

.direct-download h2,
.reference-faq h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 590;
}

.reference-faq summary {
  font-weight: 540;
}

.reference-footer {
  gap: clamp(18px, 3vw, 36px);
  color: rgba(40, 35, 31, 0.48);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 420;
}

@media (max-width: 760px) {
  .reference-header {
    min-height: 72px;
    padding: 16px 18px 8px;
  }

  .reference-header .brand {
    font-size: 19px;
  }

  .reference-header .brand img {
    width: 36px;
    height: 36px;
  }

  .reference-nav {
    gap: 14px;
    font-size: 13px;
  }

  .reference-hero {
    padding: 46px 0 42px;
  }

  .reference-hero h1 {
    max-width: 360px;
    font-size: clamp(39px, 11vw, 52px);
    line-height: 0.98;
  }

  .reference-hero p {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-buy-button {
    min-height: 52px;
    font-size: 17px;
  }

  .app-showcase {
    width: min(100% - 28px, 390px);
  }

  .app-showcase .app-titlebar {
    min-height: 64px;
    padding: 12px 14px;
  }

  .app-showcase .app-actions {
    gap: 8px;
  }

  .app-showcase .glass-button {
    min-height: 38px;
    max-width: none;
    flex: 0 1 auto;
    padding-inline: 11px;
    font-size: 0;
  }

  .app-showcase .glass-button.record {
    width: 38px;
    padding: 0;
  }

  .app-showcase .glass-button[data-new-note-button] {
    width: 38px;
    padding: 0;
  }

  .app-showcase .glass-button[data-new-note-button] svg {
    width: 18px;
    height: 18px;
  }

  .app-showcase .icon-button {
    width: 38px;
    min-height: 38px;
  }

  .app-showcase .app-body {
    display: block;
    height: 470px;
  }

  .app-showcase .notes-sidebar {
    max-height: 270px;
    padding: 20px 14px 12px;
  }

  .app-showcase .note-list {
    max-height: 150px;
  }

  .app-showcase .editor-pane {
    min-height: 200px;
    padding: 26px 24px 30px;
  }

  .app-showcase .editor-heading h3 {
    font-size: 24px;
  }

  .app-showcase .note-paper {
    margin-top: 24px;
    font-size: 17px;
  }

  .reference-footer {
    gap: 14px 20px;
    padding-top: 52px;
    font-size: 14px;
  }
}

/* Hero QA correction pass */
.reference-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 5.6vw, 86px);
  line-height: 0.98;
  font-weight: 560;
}

.reference-hero p {
  max-width: 680px;
  color: rgba(40, 35, 31, 0.6);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.4;
  font-weight: 470;
  letter-spacing: 0.008em;
}

.hero-buy-button,
.direct-button {
  font-weight: 520;
  letter-spacing: 0.005em;
}

.hero-buy-button {
  min-height: 54px;
  padding-inline: clamp(26px, 3.5vw, 42px);
  font-size: clamp(17px, 1.35vw, 21px);
}

.reference-footer {
  color: rgba(40, 35, 31, 0.54);
  font-weight: 480;
}

@media (max-width: 760px) {
  .reference-hero {
    padding: 44px 0 36px;
  }

  .reference-hero h1 {
    max-width: 342px;
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1;
    font-weight: 560;
  }

  .reference-hero p {
    max-width: 326px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.42;
    font-weight: 470;
    letter-spacing: 0.01em;
  }

  .hero-buy-button {
    min-height: 50px;
    margin-top: 28px;
    font-size: 16px;
  }

  .direct-download {
    margin-top: 0;
  }

  .direct-download h2,
  .reference-faq h2 {
    font-size: 32px;
    font-weight: 560;
  }

  .reference-footer {
    align-items: center;
    padding-top: 52px;
    font-weight: 480;
  }
}

/* Final mobile correction: keep the desktop mockup intact and scale it down. */
@media (max-width: 760px) {
  .app-showcase {
    display: block !important;
    width: min(526px, calc(100% - 28px));
    height: 246px;
    margin: 0 auto 54px;
    overflow: visible;
  }

  .app-showcase .app-window {
    width: 940px;
    max-width: none;
    border-radius: 20px;
    transform: scale(0.56);
    transform-origin: top left;
  }

  .app-showcase .app-titlebar {
    min-height: 78px;
    padding: 16px 24px;
  }

  .app-showcase .app-actions {
    justify-content: flex-end;
    gap: 12px;
  }

  .app-showcase .glass-button {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    min-height: 42px;
    border-radius: 13px;
    padding: 0 13px;
    font-size: 15px;
    font-weight: 560;
  }

  .app-showcase .glass-button.record,
  .app-showcase .glass-button[data-new-note-button] {
    width: auto;
    padding: 0 13px;
  }

  .app-showcase .glass-button[data-new-note-button] svg {
    width: 16px;
    height: 16px;
  }

  .app-showcase .icon-button {
    width: 42px;
    min-height: 42px;
    border-radius: 13px;
  }

  .app-showcase .app-body {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    height: 360px;
  }

  .app-showcase .notes-sidebar {
    max-height: none;
    padding: 22px 14px 14px;
  }

  .app-showcase .note-list {
    max-height: none;
  }

  .app-showcase .editor-pane {
    min-height: auto;
    padding: 42px 48px;
  }

  .app-showcase .editor-heading h3 {
    font-size: 26px;
  }

  .app-showcase .note-paper {
    margin-top: 34px;
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .app-showcase {
    width: min(348px, calc(100% - 28px));
    height: 168px;
  }

  .app-showcase .app-window {
    transform: scale(0.37);
  }
}

@media (max-width: 360px) {
  .app-showcase {
    width: min(292px, calc(100% - 24px));
    height: 142px;
  }

  .app-showcase .app-window {
    transform: scale(0.31);
  }
}

/* Current pass: restore Spiel palette, remove duplicate CTA weight, and quiet the FAQ. */
html {
  background: var(--background);
}

body {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.72), rgba(247, 247, 244, 0) 32rem),
    var(--background);
  color: var(--text);
}

.reference-header .brand,
.reference-nav,
.reference-hero h1,
.direct-download h2,
.reference-faq h2,
.reference-faq summary {
  color: var(--text);
}

.reference-nav {
  color: color-mix(in srgb, var(--subtext) 82%, var(--text));
  font-weight: 500;
}

.reference-hero {
  padding-bottom: clamp(44px, 6vh, 68px);
}

.reference-hero h1 {
  max-width: 920px;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.98;
  font-weight: 570;
}

.reference-hero p {
  max-width: 640px;
  color: var(--subtext);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.44;
  font-weight: 420;
  letter-spacing: 0;
}

.hero-buy-button,
.direct-button {
  min-height: 50px;
  border-radius: var(--radius);
  padding: 0 30px;
  background: var(--text);
  box-shadow: 0 14px 34px rgba(38, 37, 31, 0.16);
  color: var(--background);
  font-size: 18px;
  font-weight: 560;
  letter-spacing: 0;
}

.hero-buy-button {
  margin-top: clamp(28px, 4vh, 42px);
}

.direct-download {
  display: none;
}

.app-showcase {
  margin-bottom: clamp(54px, 8vh, 86px);
}

.reference-faq {
  width: min(920px, calc(100% - 44px));
  border-color: var(--outline);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
  background: color-mix(in srgb, var(--surface) 86%, white);
  box-shadow: 0 18px 52px rgba(176, 177, 172, 0.18);
}

.reference-faq h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.06;
  font-weight: 560;
}

.reference-faq details {
  border-top-color: var(--outline);
  padding: 18px 0;
}

.reference-faq summary {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.28;
  font-weight: 520;
}

.reference-faq p {
  max-width: 760px;
  margin-top: 11px;
  color: var(--subtext);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
  font-weight: 400;
}

.reference-faq a {
  color: var(--text);
  font-weight: 500;
}

.reference-footer {
  gap: clamp(16px, 2.8vw, 30px);
  color: color-mix(in srgb, var(--subtext) 78%, var(--background));
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 420;
}

@media (max-width: 760px) {
  .reference-hero h1 {
    max-width: 340px;
    font-size: clamp(39px, 10.2vw, 48px);
    font-weight: 560;
  }

  .reference-hero p {
    max-width: 320px;
    font-size: 15px;
    font-weight: 420;
    letter-spacing: 0;
  }

  .hero-buy-button {
    min-height: 48px;
    border-radius: 15px;
    font-size: 16px;
  }

  .reference-faq {
    width: min(100% - 28px, 390px);
    border-radius: 22px;
    padding: 26px 22px;
  }

  .reference-faq h2 {
    font-size: 30px;
    font-weight: 560;
  }

  .reference-faq summary {
    font-size: 16px;
  }
}

/* Current pass: smaller hero mockup and compact feature strip. */
.app-showcase {
  width: min(760px, calc(100% - 44px));
  margin-bottom: clamp(28px, 4vh, 46px);
}

.app-showcase .app-titlebar {
  min-height: 68px;
  padding: 14px 20px;
}

.app-showcase .glass-button {
  min-height: 38px;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 540;
}

.app-showcase .icon-button {
  width: 38px;
  min-height: 38px;
  border-radius: 12px;
}

.app-showcase .record-dot {
  width: 11px;
  height: 11px;
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 14%, transparent);
}

.app-showcase .app-body {
  height: 300px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.app-showcase .notes-sidebar {
  padding: 18px 12px 12px;
}

.app-showcase .sidebar-heading {
  margin-bottom: 14px;
}

.app-showcase .sidebar-heading strong {
  font-size: 16px;
  font-weight: 560;
}

.app-showcase .sidebar-heading span {
  font-size: 11px;
  font-weight: 430;
}

.app-showcase .search-field {
  min-height: 38px;
  border-radius: 10px;
  padding: 0 11px;
}

.app-showcase .search-field input {
  font-size: 12px;
  font-weight: 400;
}

.app-showcase .note-row {
  border-radius: 10px;
  padding: 7px 9px;
}

.app-showcase .note-row strong {
  font-size: 12px;
  font-weight: 540;
}

.app-showcase .note-row span {
  font-size: 11px;
  font-weight: 430;
}

.app-showcase .note-row p {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.32;
  font-weight: 400;
}

.app-showcase .editor-pane {
  padding: 34px 40px;
}

.app-showcase .editor-heading h3 {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 560;
}

.app-showcase .editor-heading p {
  margin-top: 7px;
  font-size: 11px;
  font-weight: 420;
}

.app-showcase .note-paper {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
}

.feature-strip {
  width: min(860px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 62px) clamp(34px, 6vw, 80px);
  margin: 0 auto clamp(66px, 9vh, 108px);
}

.feature-item {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.feature-item svg {
  width: clamp(34px, 4vw, 46px);
  height: clamp(34px, 4vw, 46px);
  overflow: visible;
  fill: none;
  stroke: var(--text);
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item p {
  max-width: 150px;
  margin: 0;
  color: var(--text);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.12;
  font-weight: 560;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .app-showcase {
    width: min(502px, calc(100% - 28px));
    height: 244px;
    margin-bottom: 42px;
  }

  .app-showcase .app-window {
    width: 760px;
    transform: scale(0.66);
  }

  .app-showcase .app-titlebar {
    min-height: 68px;
    padding: 14px 20px;
  }

  .app-showcase .app-body {
    grid-template-columns: 260px minmax(0, 1fr);
    height: 300px;
  }

  .app-showcase .editor-pane {
    padding: 34px 40px;
  }

  .app-showcase .editor-heading h3 {
    font-size: 22px;
  }

  .app-showcase .note-paper {
    margin-top: 28px;
    font-size: 15px;
  }

  .feature-strip {
    width: min(390px, calc(100% - 28px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
    margin-bottom: 60px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-item svg {
    width: 34px;
    height: 34px;
    stroke-width: 3;
  }

  .feature-item p {
    max-width: 126px;
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .app-showcase {
    width: min(342px, calc(100% - 28px));
    height: 166px;
  }

  .app-showcase .app-window {
    transform: scale(0.45);
  }
}

@media (max-width: 360px) {
  .app-showcase {
    width: min(296px, calc(100% - 24px));
    height: 144px;
  }

  .app-showcase .app-window {
    transform: scale(0.39);
  }
}

/* Current pass follow-up: make the hero app preview clearly secondary. */
.reference-hero {
  padding: clamp(16px, 2.6vh, 30px) 0 clamp(22px, 3.2vh, 34px);
}

.app-showcase {
  width: min(700px, calc(100% - 44px));
  margin-bottom: clamp(24px, 3.5vh, 40px);
}

.app-showcase .app-titlebar {
  min-height: 62px;
  padding: 12px 18px;
}

.app-showcase .glass-button {
  min-height: 34px;
  border-radius: 11px;
  padding: 0 11px;
  font-size: 12px;
}

.app-showcase .icon-button {
  width: 34px;
  min-height: 34px;
  border-radius: 11px;
}

.app-showcase .app-body {
  height: 260px;
  grid-template-columns: 235px minmax(0, 1fr);
}

.app-showcase .notes-sidebar {
  padding: 15px 10px 10px;
}

.app-showcase .sidebar-heading {
  margin-bottom: 9px;
}

.app-showcase .sidebar-heading strong {
  font-size: 15px;
}

.app-showcase .search-field {
  min-height: 34px;
  border-radius: 9px;
  margin-bottom: 8px;
  padding: 0 10px;
}

.app-showcase .search-field input {
  font-size: 11px;
}

.app-showcase .note-row {
  border-radius: 9px;
  margin-top: 3px;
  padding: 5px 7px;
}

.app-showcase .note-row strong {
  font-size: 11px;
}

.app-showcase .note-row span,
.app-showcase .note-row p,
.app-showcase .sidebar-heading span {
  font-size: 9.5px;
}

.app-showcase .note-row p {
  margin-top: 3px;
  line-height: 1.24;
}

.app-showcase .editor-pane {
  padding: 30px 34px;
}

.app-showcase .editor-heading h3 {
  font-size: 20px;
}

.app-showcase .editor-heading p {
  font-size: 10px;
}

.app-showcase .note-paper {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.48;
}

@media (max-width: 760px) {
  .app-showcase {
    width: min(455px, calc(100% - 28px));
    height: 210px;
    margin-bottom: 40px;
  }

  .app-showcase .app-window {
    width: 700px;
    transform: scale(0.65);
  }

  .app-showcase .app-titlebar {
    min-height: 62px;
    padding: 12px 18px;
  }

  .app-showcase .app-body {
    grid-template-columns: 235px minmax(0, 1fr);
    height: 260px;
  }

  .app-showcase .editor-pane {
    padding: 30px 34px;
  }

  .app-showcase .editor-heading h3 {
    font-size: 20px;
  }

  .app-showcase .note-paper {
    margin-top: 24px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .app-showcase {
    width: min(343px, calc(100% - 28px));
    height: 158px;
  }

  .app-showcase .app-window {
    transform: scale(0.49);
  }
}

@media (max-width: 360px) {
  .app-showcase {
    width: min(287px, calc(100% - 24px));
    height: 133px;
  }

  .app-showcase .app-window {
    transform: scale(0.41);
  }
}

/* Current goal: separate Mac feature section from the hero. */
.app-showcase {
  margin-bottom: 0;
}

.feature-section {
  width: min(1040px, calc(100% - 44px));
  margin: clamp(76px, 11vh, 128px) auto clamp(78px, 11vh, 124px);
  padding-top: clamp(36px, 5vh, 56px);
  border-top: 1px solid color-mix(in srgb, var(--outline) 84%, transparent);
}

.feature-heading {
  max-width: 560px;
  margin: 0 auto clamp(28px, 4vh, 42px);
  text-align: center;
}

.feature-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
  font-weight: 560;
  letter-spacing: 0;
}

.feature-heading p {
  max-width: 460px;
  margin: 12px auto 0;
  color: var(--subtext);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.45;
  font-weight: 400;
}

.feature-strip {
  width: min(780px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 38px) clamp(30px, 5vw, 66px);
  margin: 0 auto;
}

.feature-item {
  gap: 10px;
}

.feature-item svg {
  width: clamp(30px, 3vw, 38px);
  height: clamp(30px, 3vw, 38px);
  stroke-width: 2.8;
}

.feature-item p {
  max-width: 132px;
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.18;
  font-weight: 540;
}

@media (max-width: 760px) {
  .app-showcase {
    margin-bottom: 0;
  }

  .feature-section {
    width: min(390px, calc(100% - 28px));
    margin-top: 62px;
    margin-bottom: 66px;
    padding-top: 32px;
  }

  .feature-heading {
    margin-bottom: 26px;
  }

  .feature-heading h2 {
    font-size: 28px;
  }

  .feature-heading p {
    max-width: 320px;
    font-size: 14px;
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .feature-item svg {
    width: 31px;
    height: 31px;
  }

  .feature-item p {
    max-width: 122px;
    font-size: 15px;
  }
}

/* Current goal: Mac purchase page narrative. */
.reference-nav a[href="#pricing"] {
  color: var(--text);
}

.reference-hero h1 {
  max-width: 900px;
}

.reference-hero p {
  max-width: 760px;
}

.hero-buy-button,
.pricing-button {
  min-height: 54px;
  border-radius: 18px;
  padding: 0 30px;
  background: var(--text);
  box-shadow: 0 16px 34px rgba(38, 37, 31, 0.16);
  color: var(--background);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 570;
  text-align: center;
}

.hero-microcopy,
.pricing-microcopy {
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--subtext) 88%, var(--text));
  font-size: 14px;
  line-height: 1.35;
  font-weight: 420;
}

.feature-section,
.use-case-section,
.proof-strip,
.pricing-section,
.final-cta {
  width: min(1060px, calc(100% - 44px));
  margin-inline: auto;
}

.feature-section {
  margin-top: clamp(82px, 12vh, 138px);
  margin-bottom: clamp(72px, 10vh, 112px);
  padding-top: clamp(42px, 6vh, 66px);
  border-top: 1px solid color-mix(in srgb, var(--outline) 88%, transparent);
}

.feature-heading,
.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4.5vh, 46px);
  text-align: center;
}

.feature-heading h2,
.section-heading h2,
.proof-strip h2,
.pricing-card h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.06;
  font-weight: 560;
  letter-spacing: 0;
}

.feature-heading p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--subtext);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.48;
  font-weight: 400;
}

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

.feature-card-grid article,
.use-case-grid article {
  border: 1px solid var(--outline);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 82%, white);
  box-shadow: 0 16px 40px rgba(176, 177, 172, 0.12);
}

.feature-card-grid article {
  min-height: 180px;
  padding: 22px;
}

.feature-card-grid h3,
.use-case-grid h3,
.proof-strip h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.16;
  font-weight: 560;
  letter-spacing: 0;
}

.feature-card-grid p,
.use-case-grid p,
.proof-strip p,
.pricing-card p,
.pricing-card li {
  color: var(--subtext);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  font-weight: 400;
}

.feature-card-grid p,
.use-case-grid p,
.proof-strip p {
  margin: 10px 0 0;
}

.use-case-section {
  margin-bottom: clamp(62px, 9vh, 100px);
}

.use-case-grid article {
  padding: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(62px, 9vh, 104px);
  padding-top: clamp(34px, 5vh, 58px);
  border-top: 1px solid color-mix(in srgb, var(--outline) 84%, transparent);
}

.proof-strip h2 {
  font-size: clamp(30px, 3.1vw, 44px);
}

.proof-strip > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-section {
  margin-bottom: clamp(64px, 9vh, 108px);
}

.pricing-card {
  width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid var(--outline);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: 0 22px 70px rgba(176, 177, 172, 0.17);
  text-align: center;
}

.pricing-kicker {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 540;
}

.pricing-card > p:not(.pricing-kicker):not(.pricing-microcopy) {
  max-width: 480px;
  margin: 14px auto 0;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  max-width: 510px;
  margin: 28px auto 30px;
  padding: 0;
  list-style: none;
  text-align: left;
}

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

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reference-faq {
  margin-bottom: clamp(64px, 9vh, 104px);
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  margin-bottom: clamp(34px, 5vh, 54px);
  text-align: center;
}

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

/* Current polish pass: split CTAs, feature icons, separate FAQ page. */
.cta-pair {
  display: inline-grid;
  grid-template-columns: repeat(2, 148px);
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-buy-button,
.pricing-button {
  width: 148px;
  min-height: 50px;
  padding: 0 18px;
  font-size: clamp(15px, 1.1vw, 17px);
}

.license-button {
  background: var(--accent);
  color: #fff9f7;
  box-shadow: 0 16px 34px rgba(255, 59, 48, 0.2);
}

.license-button:hover {
  background: color-mix(in srgb, var(--accent) 92%, var(--text));
}

.feature-card-icon {
  width: 34px;
  height: 34px;
  margin: 0 0 20px;
  color: var(--text);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.9;
}

.pricing-card h2 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.98;
}

.pricing-card ul {
  width: min(100%, 470px);
  max-width: 470px;
  margin: 30px auto 30px;
}

.pricing-card li {
  padding-left: 26px;
}

.pricing-actions {
  margin-top: 6px;
}

.faq-page-hero {
  width: min(900px, calc(100% - 44px));
  margin: clamp(56px, 10vh, 104px) auto clamp(36px, 6vh, 60px);
  text-align: center;
}

.faq-page-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 0.98;
  font-weight: 620;
  letter-spacing: 0;
}

.faq-page-hero p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--subtext);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.45;
  font-weight: 400;
}

.faq-page-list {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto clamp(70px, 10vh, 120px);
  border-top: 1px solid var(--outline);
}

.faq-page-list details {
  border-bottom: 1px solid var(--outline);
  padding: 23px 0;
}

.faq-page-list summary {
  cursor: pointer;
  color: var(--text);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.18;
  font-weight: 560;
  letter-spacing: 0;
}

.faq-page-list p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--subtext);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  font-weight: 400;
}

.faq-page-list a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.reference-footer {
  gap: clamp(18px, 3vw, 34px);
}

@media (max-width: 860px) {
  .feature-card-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip,
  .proof-strip > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .reference-hero h1 {
    max-width: 350px;
  }

  .reference-hero p {
    max-width: 338px;
  }

  .hero-buy-button,
  .pricing-button {
    width: 138px;
    min-height: 50px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .cta-pair {
    grid-template-columns: repeat(2, 138px);
    gap: 10px;
  }

  .hero-microcopy {
    max-width: 280px;
    margin-inline: auto;
  }

  .feature-section,
  .use-case-section,
  .proof-strip,
  .pricing-section,
  .final-cta {
    width: min(390px, calc(100% - 28px));
  }

  .feature-section {
    margin-top: 70px;
    margin-bottom: 66px;
    padding-top: 34px;
  }

  .feature-heading,
  .section-heading {
    margin-bottom: 26px;
  }

  .feature-heading h2,
  .section-heading h2,
  .proof-strip h2,
  .pricing-card h2,
  .final-cta h2 {
    font-size: 29px;
  }

  .feature-heading p {
    font-size: 14px;
  }

  .feature-card-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card-grid article {
    min-height: auto;
    padding: 18px;
  }

  .use-case-grid article {
    padding: 17px;
  }

  .proof-strip {
    gap: 24px;
    margin-bottom: 62px;
    padding-top: 32px;
  }

  .proof-strip > div {
    gap: 18px;
  }

  .pricing-card {
    border-radius: 22px;
    padding: 26px 22px;
  }

  .pricing-card ul {
    margin: 24px auto 28px;
  }

  .feature-card-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
  }

  .faq-page-hero,
  .faq-page-list {
    width: min(390px, calc(100% - 28px));
  }

  .faq-page-hero {
    margin-top: 48px;
  }

  .faq-page-list details {
    padding: 20px 0;
  }
}

@media (max-width: 390px) {
  .cta-pair {
    width: min(100%, 290px);
    grid-template-columns: 1fr 1fr;
  }

  .hero-buy-button,
  .pricing-button {
    width: auto;
  }
}

/* Current FAQ/privacy/pricing corrections. */
.reference-nav .nav-buy-license {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 14px;
  padding: 0 18px;
  background: var(--accent);
  color: #fff9f7;
  box-shadow: 0 12px 28px rgba(255, 59, 48, 0.18);
}

.reference-nav .nav-buy-license:hover {
  color: #fff9f7;
  background: color-mix(in srgb, var(--accent) 92%, var(--text));
}

.pricing-card {
  width: min(620px, 100%);
  padding: clamp(30px, 4.2vw, 48px) clamp(34px, 5vw, 58px);
}

.pricing-card ul {
  width: min(100%, 440px);
  max-width: 440px;
  margin: 30px auto 30px;
}

.pricing-card li {
  padding-left: 30px;
}

.pricing-card li::before {
  left: 4px;
}

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

.privacy-page {
  width: min(1040px, calc(100% - 44px));
  margin: clamp(66px, 11vh, 118px) auto clamp(80px, 13vh, 150px);
}

.privacy-page h1 {
  max-width: 980px;
  margin: 0;
  color: var(--text);
  font-size: clamp(64px, 11vw, 150px);
  line-height: 0.95;
  font-weight: 650;
  letter-spacing: 0;
}

.privacy-lede {
  max-width: 780px;
  margin: clamp(42px, 7vh, 74px) 0 0;
  color: var(--text);
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.25;
  font-weight: 430;
}

.privacy-contact {
  margin-top: clamp(58px, 9vh, 94px);
}

.privacy-contact h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 610;
}

.privacy-contact p {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.35;
  font-weight: 400;
}

.privacy-contact a {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.legal-page {
  width: min(880px, calc(100% - 44px));
  margin: clamp(56px, 9vh, 96px) auto clamp(78px, 12vh, 132px);
}

.legal-hero {
  margin-bottom: clamp(42px, 7vh, 72px);
}

.legal-page h1 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(54px, 8.2vw, 104px);
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 400;
}

.legal-hero .legal-updated {
  margin-top: 14px;
  font-size: 15px;
  color: var(--soft-text);
}

.legal-section {
  border-top: 1px solid var(--outline);
  padding: 28px 0;
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.1;
  font-weight: 590;
  letter-spacing: 0;
}

.legal-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .reference-nav .nav-buy-license {
    min-height: 34px;
    border-radius: 12px;
    padding: 0 13px;
  }

  .pricing-card {
    width: min(350px, 100%);
    padding: 28px 24px;
  }

  .pricing-card ul {
    width: min(100%, 286px);
  }

  .privacy-page {
    width: min(390px, calc(100% - 28px));
    margin-top: 54px;
  }

  .privacy-page h1 {
    font-size: 58px;
  }

  .privacy-lede {
    font-size: 22px;
  }

  .privacy-contact p {
    font-size: 19px;
  }

  .legal-page {
    width: min(390px, calc(100% - 28px));
    margin-top: 52px;
  }

  .legal-page h1 {
    font-size: 52px;
  }

  .legal-section {
    padding: 24px 0;
  }
}

/* Pricing card correction: narrower card and a centered, indented list block. */
.pricing-card {
  width: min(460px, 100%);
  padding: clamp(28px, 3.6vw, 42px) clamp(24px, 3.8vw, 38px);
}

.pricing-card > p:not(.pricing-kicker):not(.pricing-microcopy) {
  max-width: 360px;
}

.pricing-card ul {
  width: fit-content;
  max-width: min(350px, 100%);
  margin: 30px auto 32px;
  padding: 0;
}

.pricing-card li {
  padding-left: 34px;
}

.pricing-card li::before {
  left: 8px;
}

@media (max-width: 760px) {
  .pricing-card {
    width: min(310px, 100%);
    padding: 28px 20px;
  }

  .pricing-card ul {
    width: min(100%, 270px);
    max-width: 270px;
  }
}

/* Global scale-down pass: narrower measure and quieter type across pages. */
.reference-header {
  min-height: 92px;
  padding: 22px clamp(18px, 4vw, 54px);
}

.reference-header .brand {
  gap: 13px;
  font-size: clamp(23px, 1.9vw, 30px);
  font-weight: 680;
}

.reference-header .brand img {
  width: clamp(42px, 3.2vw, 52px);
  height: clamp(42px, 3.2vw, 52px);
  border-radius: 13px;
}

.reference-nav {
  gap: clamp(16px, 1.8vw, 28px);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 560;
}

.reference-nav .nav-buy-license {
  min-height: 36px;
  border-radius: 12px;
  padding: 0 15px;
}

.reference-hero {
  width: min(880px, calc(100% - 44px));
  padding: clamp(28px, 5vh, 54px) 0 clamp(30px, 5vh, 52px);
}

.reference-hero h1 {
  max-width: none;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1;
  font-weight: 660;
  white-space: nowrap;
}

.reference-hero p {
  max-width: 520px;
  margin-top: clamp(18px, 2.4vh, 26px);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.36;
  font-weight: 400;
}

.hero-buy-button,
.pricing-button {
  width: 132px;
  min-height: 46px;
  border-radius: 16px;
  font-size: clamp(14px, 1vw, 16px);
}

.cta-pair {
  grid-template-columns: repeat(2, 132px);
  gap: 10px;
}

.hero-microcopy {
  margin-top: 12px;
  font-size: 13px;
}

.app-showcase {
  width: min(600px, calc(100% - 44px));
}

.app-showcase .app-titlebar {
  min-height: 56px;
  padding: 10px 16px;
}

.app-showcase .app-body {
  height: 218px;
  grid-template-columns: 198px minmax(0, 1fr);
}

.app-showcase .glass-button {
  min-height: 31px;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 11px;
}

.app-showcase .icon-button {
  width: 31px;
  min-height: 31px;
  border-radius: 10px;
}

.app-showcase .notes-sidebar {
  padding: 12px 8px 8px;
}

.app-showcase .sidebar-heading strong {
  font-size: 13px;
}

.app-showcase .search-field {
  min-height: 30px;
  margin-bottom: 7px;
}

.app-showcase .search-field input,
.app-showcase .note-row p {
  font-size: 10.5px;
}

.app-showcase .note-row {
  padding: 5px 7px;
}

.app-showcase .note-row strong {
  font-size: 10.5px;
}

.app-showcase .note-row span,
.app-showcase .sidebar-heading span {
  font-size: 9px;
}

.app-showcase .editor-pane {
  padding: 26px 30px;
}

.app-showcase .editor-heading h3 {
  font-size: 16px;
}

.app-showcase .note-paper {
  margin-top: 21px;
  font-size: 12px;
  line-height: 1.52;
}

.app-showcase .glass-button.record {
  width: 76px;
  justify-content: center;
}

.app-showcase .insights-button {
  gap: 7px;
}

.app-showcase .insights-button.is-active {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--outline));
  background: color-mix(in srgb, var(--accent) 10%, var(--background));
  color: var(--accent);
}

.app-showcase .insights-view {
  gap: 10px;
  padding: 18px 24px;
}

.insights-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.insights-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.05;
  font-weight: 650;
}

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

.insights-metrics div,
.insights-activity {
  border: 1px solid var(--outline);
  border-radius: 4px;
  background: color-mix(in srgb, var(--background) 72%, white);
}

.insights-metrics div {
  min-height: 44px;
  padding: 7px 8px;
}

.insights-metrics strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.insights-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--subtext);
  font-size: 7.5px;
  line-height: 1.15;
  font-weight: 650;
  text-transform: uppercase;
}

.insights-activity {
  display: grid;
  gap: 7px;
  padding: 9px 10px 13px;
}

.insights-activity > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.insights-activity strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
}

.insights-activity span {
  color: var(--subtext);
  font-size: 10px;
  font-weight: 500;
}

.insights-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 48px;
}

.insights-bars span {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  color: var(--subtext);
  font-size: 9px;
  font-weight: 650;
}

.insights-bars span::before {
  content: "";
  width: 100%;
  height: var(--bar-height);
  min-height: 7px;
  border-radius: 4px 4px 1px 1px;
  background: color-mix(in srgb, var(--accent) 82%, white);
}

.insights-bars span::after {
  content: attr(data-day);
  position: absolute;
  bottom: -11px;
}

.feature-section,
.use-case-section,
.proof-strip,
.pricing-section {
  width: min(800px, calc(100% - 44px));
}

.feature-section {
  margin-top: clamp(66px, 9vh, 98px);
  margin-bottom: clamp(60px, 8vh, 88px);
  padding-top: clamp(34px, 5vh, 48px);
}

.feature-heading,
.section-heading {
  max-width: 560px;
  margin-bottom: clamp(24px, 3.5vh, 36px);
}

.feature-heading h2,
.section-heading h2,
.proof-strip h2,
.pricing-card h2 {
  font-size: clamp(24px, 2.45vw, 32px);
  line-height: 1.08;
  font-weight: 550;
}

.feature-heading p {
  max-width: 500px;
  font-size: clamp(13.5px, 1vw, 15px);
}

.feature-card-grid,
.use-case-grid {
  gap: 13px;
}

.feature-card-grid article {
  min-height: 154px;
  padding: 18px;
}

.use-case-grid article {
  padding: 17px;
}

.feature-card-icon {
  width: 29px;
  height: 29px;
  margin-bottom: 15px;
}

.feature-card-grid h3,
.use-case-grid h3,
.proof-strip h3 {
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 550;
}

.feature-card-grid p,
.use-case-grid p,
.proof-strip p,
.pricing-card p,
.pricing-card li {
  font-size: clamp(13px, 1vw, 15px);
}

.proof-strip {
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: clamp(56px, 8vh, 86px);
  padding-top: clamp(28px, 4vh, 42px);
}

.proof-strip > div {
  gap: 14px;
}

.pricing-card {
  width: min(390px, 100%);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 36px) clamp(22px, 3vw, 32px);
}

.pricing-card h2 {
  font-size: clamp(36px, 4vw, 48px);
}

.pricing-card > p:not(.pricing-kicker):not(.pricing-microcopy) {
  max-width: 320px;
}

.pricing-card ul {
  width: min(100%, 258px);
  max-width: 258px;
  margin: 26px auto 30px;
  position: static;
  left: auto;
}

.pricing-card li {
  padding-left: 24px;
}

.pricing-card li::before {
  left: 0;
}

.faq-page-hero,
.faq-page-list {
  width: min(700px, calc(100% - 44px));
}

.faq-page-hero {
  margin-top: clamp(46px, 8vh, 78px);
  margin-bottom: clamp(28px, 4.5vh, 46px);
}

.faq-page-hero h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  font-weight: 600;
}

.faq-page-hero p {
  max-width: 520px;
  font-size: clamp(15px, 1.25vw, 17px);
}

.faq-page-list details {
  padding: 19px 0;
}

.faq-page-list summary {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 540;
}

.faq-page-list p {
  max-width: 640px;
  font-size: clamp(14px, 1.05vw, 16px);
}

.privacy-page,
.legal-page {
  width: min(700px, calc(100% - 44px));
  margin-top: clamp(52px, 8vh, 84px);
  margin-bottom: clamp(66px, 10vh, 112px);
}

.privacy-page h1,
.legal-page h1 {
  max-width: 640px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 620;
}

.privacy-lede {
  max-width: 560px;
  margin-top: clamp(30px, 5vh, 48px);
  font-size: clamp(20px, 2.4vw, 30px);
}

.privacy-contact {
  margin-top: clamp(46px, 7vh, 72px);
}

.privacy-contact h2,
.legal-section h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 570;
}

.privacy-contact p,
.legal-section p {
  max-width: 680px;
  font-size: clamp(15px, 1.25vw, 17px);
}

.legal-hero {
  margin-bottom: clamp(34px, 6vh, 54px);
}

.legal-hero p {
  max-width: 560px;
  font-size: clamp(16px, 1.45vw, 19px);
}

.legal-section {
  padding: 24px 0;
}

@media (max-width: 760px) {
  .reference-header {
    min-height: 76px;
    padding: 17px 16px;
  }

  .reference-header .brand {
    gap: 10px;
    font-size: 22px;
  }

  .reference-header .brand img {
    width: 40px;
    height: 40px;
  }

  .reference-nav {
    gap: 14px;
    font-size: 14px;
  }

  .reference-hero {
    width: min(350px, calc(100% - 28px));
    padding-top: 30px;
  }

  .reference-hero h1 {
    max-width: none;
    font-size: clamp(29px, 8.1vw, 32px);
    white-space: nowrap;
  }

  .reference-hero p {
    max-width: 315px;
    font-size: 16px;
  }

  .app-showcase {
    width: min(330px, calc(100% - 28px));
    height: 142px;
    margin-bottom: 0;
  }

  .app-showcase .app-window {
    width: 620px;
    transform: scale(0.53);
  }

  .feature-section,
  .use-case-section,
  .proof-strip,
  .pricing-section,
  .faq-page-hero,
  .faq-page-list,
  .privacy-page,
  .legal-page {
    width: min(342px, calc(100% - 28px));
  }

  .feature-section {
    margin-top: 58px;
    margin-bottom: 58px;
  }

  .feature-heading h2,
  .section-heading h2,
  .proof-strip h2,
  .pricing-card h2 {
    font-size: 26px;
  }

  .feature-card-grid article,
  .use-case-grid article {
    padding: 16px;
  }

  .pricing-card {
    width: min(300px, 100%);
    padding: 26px 19px;
  }

  .pricing-card ul {
    width: min(100%, 238px);
    max-width: 238px;
    left: auto;
  }

  .faq-page-hero h1,
  .privacy-page h1,
  .legal-page h1 {
    font-size: 44px;
  }
}

/* SEO support pages and privacy cleanup. */
.feature-card-grid a,
.seo-page a,
.privacy-detail a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.seo-page {
  width: min(800px, calc(100% - 44px));
  margin: 0 auto clamp(70px, 10vh, 120px);
  text-align: center;
}

.seo-hero {
  padding: clamp(42px, 8vh, 82px) 0 clamp(34px, 6vh, 58px);
  text-align: center;
}

.seo-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 0.99;
  font-weight: 630;
  letter-spacing: 0;
}

.seo-hero p {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--subtext);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.42;
  font-weight: 400;
}

.seo-section,
.source-note,
.seo-cta,
.privacy-detail {
  padding: clamp(28px, 5vh, 44px) 0;
}

.seo-section h2,
.source-note h2,
.seo-cta h2,
.seo-grid h2,
.privacy-detail h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  font-weight: 570;
  letter-spacing: 0;
}

.seo-section p,
.source-note p,
.seo-cta p,
.seo-grid p,
.privacy-detail p,
.privacy-detail li {
  max-width: 700px;
  margin: 14px auto 0;
  color: var(--subtext);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.58;
  font-weight: 400;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(8px, 2vh, 22px) 0 clamp(32px, 5vh, 52px);
}

.seo-grid article {
  min-height: 190px;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 22px;
  background: color-mix(in srgb, var(--surface) 84%, white);
  box-shadow: 0 16px 40px rgba(176, 177, 172, 0.12);
}

.comparison-table {
  width: 100%;
  margin: 0 0 clamp(34px, 6vh, 58px);
  overflow-x: auto;
  border: 1px solid var(--outline);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 84%, white);
  box-shadow: 0 16px 40px rgba(176, 177, 172, 0.12);
}

.comparison-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  width: 33.333%;
  border-bottom: 1px solid var(--outline);
  padding: 18px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--text);
  font-weight: 620;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--text);
  font-weight: 570;
}

.source-note {
  color: var(--subtext);
}

.source-note p {
  font-size: 14px;
}

.seo-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.seo-cta p {
  margin: 0;
}

.privacy-detail ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-detail li {
  position: relative;
  margin: 0;
  padding-left: 24px;
}

.privacy-detail li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.reference-nav .nav-buy-license,
.reference-nav .nav-buy-license:visited,
.reference-nav .nav-buy-license:hover {
  color: #fff9f7 !important;
}

.privacy-page {
  text-align: left;
}

.privacy-page h1,
.privacy-lede,
.privacy-copy,
.privacy-contact p {
  margin-left: 0;
  margin-right: 0;
}

.privacy-copy {
  max-width: 560px;
  margin-top: 18px;
  color: var(--subtext);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.45;
  font-weight: 400;
}

@media (max-width: 760px) {
  .seo-page {
    width: min(342px, calc(100% - 28px));
  }

  .seo-hero {
    padding-top: 36px;
  }

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

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

  .seo-grid article {
    min-height: 0;
    padding: 18px;
  }
}

/* Current cleanup pass: header, font licensing, and technical page consistency. */
.reference-header {
  justify-content: flex-start;
}

.faq-page-hero {
  text-align: left;
}

.faq-page-hero p {
  margin-left: 0;
  margin-right: 0;
}

.privacy-page {
  text-align: left;
}

.privacy-page h1,
.privacy-lede,
.privacy-copy,
.privacy-contact p {
  margin-left: 0;
  margin-right: 0;
}

.legal-section {
  border-top: 0;
  padding: 20px 0;
}

.legal-section + .legal-section {
  margin-top: 6px;
}

/* Shared page cleanup: consistent legal spacing, footer, and reused CTA button. */
.faq-page-list,
.privacy-page,
.legal-page {
  margin-bottom: 44px;
}

.seo-page {
  margin-bottom: 44px;
}

.privacy-page,
.legal-page {
  margin-top: clamp(108px, 14vh, 156px);
}

.privacy-lede,
.privacy-copy,
.privacy-contact p,
.legal-hero p,
.legal-section p {
  color: var(--subtext);
}

.privacy-lede {
  margin-top: 28px;
}

.privacy-copy {
  margin-top: 16px;
}

.privacy-contact {
  margin-top: 36px;
}

.privacy-contact h2,
.legal-section h2 {
  margin-bottom: 12px;
}

.legal-hero {
  margin-bottom: 38px;
}

.legal-hero p {
  margin-top: 16px;
}

.legal-hero .legal-updated {
  margin-top: 14px;
}

.legal-section {
  border-top: 0;
  padding: 18px 0;
}

.legal-section + .legal-section {
  margin-top: 4px;
}

.seo-cta .hero-buy-button,
.cta-pair .hero-buy-button {
  margin-top: 0;
}

.seo-page .seo-cta a.hero-buy-button,
.seo-page .seo-cta a.hero-buy-button:visited,
.seo-page .seo-cta a.hero-buy-button:hover {
  color: #fff9f7;
  text-decoration: none;
}

.reference-footer {
  width: min(800px, calc(100% - 44px));
  margin: 0 auto;
  border-top: 1px solid var(--outline);
  padding: 42px 0 38px;
  gap: clamp(16px, 2.4vw, 28px);
  color: var(--subtext);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 420;
}

.reference-footer a {
  color: inherit;
}

@media (max-width: 760px) {
  .privacy-page,
  .legal-page {
    margin-top: 72px;
  }

  .privacy-contact {
    margin-top: 30px;
  }

  .legal-hero {
    margin-bottom: 28px;
  }

  .legal-section {
    padding: 16px 0;
  }

  .reference-footer {
    width: min(342px, calc(100% - 28px));
    padding: 34px 0 32px;
  }

  .faq-page-list,
  .privacy-page,
  .legal-page,
  .seo-page {
    margin-bottom: 36px;
  }
}

.legal-page h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.04;
}

@media (max-width: 760px) {
  .legal-page h1 {
    font-size: clamp(34px, 11vw, 42px);
  }
}

/* Pricing list alignment: bullets are part of each row, not absolute decorations. */
.pricing-card ul {
  display: grid;
  width: min(100%, 286px);
  max-width: 286px;
  row-gap: 6px;
  margin-top: 14px;
  margin-bottom: 14px;
  padding-left: 30px;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  align-items: center;
  column-gap: 5px;
  padding-left: 0;
  line-height: 1.35;
}

.pricing-card li::before {
  position: static;
  align-self: center;
  justify-self: center;
  top: auto;
  left: auto;
  width: 7px;
  height: 7px;
}

.pricing-actions {
  margin-top: 0;
}

/* Keep the footer at the bottom of short pages and avoid a second divider after the final FAQ. */
html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.reference-footer {
  flex: 0 0 auto;
}

.faq-page-list details:last-child {
  border-bottom: 0;
}

/* Homepage closing CTA. */
.closing-cta {
  width: min(1080px, calc(100% - 44px));
  margin: clamp(44px, 7vh, 74px) auto 48px;
  border-radius: 22px;
  padding: clamp(48px, 7vw, 82px) clamp(22px, 5vw, 72px);
  background: var(--text);
  color: var(--background);
  text-align: center;
  box-shadow: 0 22px 60px rgba(38, 37, 31, 0.14);
}

.closing-cta-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.closing-cta h2 {
  max-width: 860px;
  margin: 0 auto;
  color: #fff9f7;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 520;
  letter-spacing: 0;
}

.closing-cta > p:not(.closing-cta-kicker) {
  max-width: 640px;
  margin: 24px auto 0;
  color: color-mix(in srgb, var(--background) 72%, var(--subtext));
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.42;
  font-weight: 440;
}

.closing-actions {
  margin-top: 34px;
}

.closing-actions .hero-buy-button {
  background: #fff9f7;
  color: var(--text);
  box-shadow: none;
}

.closing-actions .license-button {
  background: var(--accent);
  color: #fff9f7;
  box-shadow: 0 16px 34px rgba(255, 59, 48, 0.22);
}

@media (max-width: 760px) {
  .closing-cta {
    width: min(342px, calc(100% - 28px));
    margin: 38px auto 36px;
    border-radius: 18px;
    padding: 38px 22px;
  }

  .closing-cta h2 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .closing-cta > p:not(.closing-cta-kicker) {
    font-size: 15px;
  }

  .closing-actions {
    grid-template-columns: 1fr;
    width: min(190px, 100%);
    margin-top: 28px;
  }

  .closing-actions .hero-buy-button {
    width: 100%;
  }
}

/* Homepage pricing redesign and hero spacing cleanup. */
.reference-hero {
  padding-bottom: clamp(28px, 4vh, 44px);
}

.reference-hero h1 {
  max-width: 1180px;
}

.reference-hero p {
  max-width: 680px;
  margin-top: 22px;
}

.reference-hero .cta-pair {
  margin-top: 26px;
}

@media (max-width: 760px) {
  .reference-hero {
    padding-bottom: 26px;
  }

  .reference-hero p {
    max-width: 342px;
    margin-top: 18px;
  }

  .reference-hero .cta-pair {
    margin-top: 22px;
  }
}

/* Homepage pricing: single real offer card with dedicated pricing styles. */
.pricing-section {
  width: min(1040px, calc(100% - 44px));
  margin: clamp(78px, 10vh, 124px) auto clamp(74px, 10vh, 116px);
  scroll-margin-top: 34px;
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4.5vh, 44px);
  text-align: center;
}

.pricing-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-header h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.98;
  font-weight: 720;
  letter-spacing: 0;
}

.pricing-header > p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--subtext);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.42;
  font-weight: 430;
}

.pricing-card {
  width: min(780px, 100%);
  margin: 0 auto;
  border: 1px solid color-mix(in srgb, var(--text) 24%, var(--outline));
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: 0 26px 70px rgba(176, 177, 172, 0.2);
  text-align: left;
}

.pricing-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.pricing-overline {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-card-header p:not(.pricing-overline) {
  max-width: 390px;
  margin: 10px 0 0;
  color: var(--subtext);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
  font-weight: 420;
}

.pricing-price {
  text-align: right;
}

.pricing-price span {
  display: block;
  color: var(--text);
  font-size: clamp(60px, 7vw, 92px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
}

.pricing-price small {
  display: block;
  margin-top: 8px;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
}

.pricing-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 12px;
  margin-top: 30px;
}

.pricing-primary,
.pricing-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 14px;
  padding: 0 18px;
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 720;
  text-align: center;
  text-decoration: none;
}

.pricing-primary,
.pricing-primary:visited,
.pricing-primary:hover {
  background: var(--accent);
  color: #fff9f7;
  box-shadow: 0 18px 36px rgba(255, 59, 48, 0.22);
}

.pricing-secondary,
.pricing-secondary:visited,
.pricing-secondary:hover {
  border: 1px solid var(--outline);
  background: color-mix(in srgb, var(--background) 80%, white);
  color: var(--text);
  box-shadow: none;
}

.pricing-details {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  gap: clamp(24px, 4vw, 44px);
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--outline);
}

.pricing-details h4 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-card .pricing-check-list,
.pricing-card .pricing-requirement-list {
  display: grid;
  gap: 11px;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-card .pricing-check-list li,
.pricing-card .pricing-requirement-list li {
  display: block;
  grid-template-columns: none;
  column-gap: 0;
  position: relative;
  padding-left: 25px;
  color: var(--subtext);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  font-weight: 420;
}

.pricing-card .pricing-check-list li::before,
.pricing-card .pricing-requirement-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 1px;
  width: 11px;
  height: 6px;
  border-radius: 0;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  background: transparent;
  transform: rotate(-45deg);
}

.pricing-card .pricing-note {
  max-width: none;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--outline);
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 430;
}

@media (max-width: 760px) {
  .pricing-section {
    width: min(342px, calc(100% - 28px));
    margin-top: 56px;
    margin-bottom: 58px;
  }

  .pricing-header {
    margin-bottom: 24px;
    text-align: left;
  }

  .pricing-header h2 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .pricing-header > p {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .pricing-card {
    border-radius: 14px;
    padding: 24px 20px;
  }

  .pricing-card-header,
  .pricing-actions,
  .pricing-details {
    grid-template-columns: 1fr;
  }

  .pricing-card-header {
    gap: 18px;
  }

  .pricing-price {
    text-align: left;
  }

  .pricing-price span {
    font-size: clamp(58px, 18vw, 72px);
  }

  .pricing-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .pricing-primary,
  .pricing-secondary {
    width: 100%;
  }

  .pricing-details {
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
  }
}

/* Pricing reset: compact offer-card layout, closer to a real pricing section. */
.pricing-section {
  width: min(1120px, calc(100% - 44px));
  margin: 72px auto 74px;
  scroll-margin-top: 28px;
}

.pricing-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.pricing-label {
  margin: 0 0 10px;
  color: var(--subtext);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  line-height: 1.02;
  font-weight: 720;
  letter-spacing: 0;
}

.pricing-header > p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--subtext);
  font-size: 19px;
  line-height: 1.38;
  font-weight: 430;
}

.pricing-purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1.06fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-main-card,
.pricing-side-card {
  border: 1px solid var(--outline);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: 0 16px 40px rgba(176, 177, 172, 0.12);
  text-align: left;
}

.pricing-main-card {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 30px 28px;
}

.pricing-included-card {
  grid-column: 1;
  grid-row: 1;
}

.pricing-requirements-card {
  grid-column: 3;
  grid-row: 1;
}

.pricing-side-card {
  padding: 30px 26px;
}

.pricing-overline {
  max-width: none;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card.pricing-main-card > p.pricing-overline {
  max-width: none;
  margin: 0 0 12px;
  text-align: left;
}

.pricing-main-card h3,
.pricing-side-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing-card.pricing-main-card > p:not(.pricing-overline):not(.pricing-device-note):not(.pricing-note) {
  max-width: none;
  margin: 10px 0 0;
  color: var(--subtext);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 420;
}

.pricing-price {
  margin: 34px 0 0;
  text-align: left;
}

.pricing-price span {
  display: block;
  color: var(--text);
  font-size: 72px;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
}

.pricing-price small {
  display: block;
  margin-top: 8px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.pricing-actions .hero-buy-button {
  width: 148px;
  min-height: 50px;
  margin-top: 0;
}

.pricing-device-note {
  max-width: none;
  margin: 20px 0 0;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 430;
}

.pricing-card .pricing-note {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--outline);
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 430;
  text-align: left;
}

.pricing-side-card h3 {
  font-size: 22px;
}

.pricing-card .pricing-check-list,
.pricing-card .pricing-requirement-list,
.pricing-side-card .pricing-check-list,
.pricing-side-card .pricing-requirement-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: none;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-card .pricing-check-list li,
.pricing-card .pricing-requirement-list li,
.pricing-side-card .pricing-check-list li,
.pricing-side-card .pricing-requirement-list li {
  display: block;
  position: relative;
  min-height: 0;
  padding-left: 25px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 420;
}

.pricing-card .pricing-check-list li::before,
.pricing-card .pricing-requirement-list li::before,
.pricing-side-card .pricing-check-list li::before,
.pricing-side-card .pricing-requirement-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 1px;
  width: 11px;
  height: 6px;
  border-radius: 0;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  background: transparent;
  transform: rotate(-45deg);
}

@media (max-width: 920px) {
  .pricing-section {
    width: min(724px, calc(100% - 44px));
  }

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

  .pricing-main-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .pricing-included-card {
    grid-column: 1;
    grid-row: 2;
  }

  .pricing-requirements-card {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 760px) {
  .pricing-section {
    width: min(342px, calc(100% - 28px));
    margin-top: 56px;
    margin-bottom: 58px;
  }

  .pricing-header {
    margin-bottom: 24px;
    text-align: left;
  }

  .pricing-header h2 {
    font-size: 40px;
  }

  .pricing-header > p {
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
  }

  .pricing-purchase-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pricing-main-card,
  .pricing-included-card,
  .pricing-requirements-card {
    grid-column: 1;
    grid-row: auto;
  }

  .pricing-main-card,
  .pricing-side-card {
    border-radius: 10px;
    padding: 24px 20px;
  }

  .pricing-price {
    margin-top: 28px;
  }

  .pricing-price span {
    font-size: 64px;
  }
}

/* Homepage insights and final pricing layout. */
.insights-home-section {
  width: min(1040px, calc(100% - 44px));
  margin: clamp(72px, 10vh, 116px) auto clamp(72px, 10vh, 112px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.insights-home-copy {
  text-align: left;
}

.section-kicker {
  max-width: none;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-home-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  font-weight: 560;
  letter-spacing: 0;
}

.insights-home-copy p {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--subtext);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.45;
  font-weight: 400;
}

.insights-home-copy .insights-home-note {
  max-width: 460px;
  color: color-mix(in srgb, var(--subtext) 86%, var(--text));
  font-size: clamp(14px, 1.05vw, 16px);
}

.insights-home-panel {
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 22px;
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow:
    0 16px 40px rgba(176, 177, 172, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.insights-home-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.insights-home-metrics div,
.insights-home-activity {
  border: 1px solid var(--outline);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.52);
}

.insights-home-metrics div {
  padding: 16px 16px 14px;
}

.insights-home-metrics strong {
  display: block;
  color: var(--text);
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0;
}

.insights-home-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--subtext);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 720;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.insights-home-activity {
  margin-top: 12px;
  padding: 18px 18px 14px;
}

.insights-home-activity > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 650;
}

.insights-home-activity strong {
  color: var(--text);
  font-weight: 650;
}

.insights-home-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  height: 92px;
  margin-top: 16px;
}

.insights-home-bars span {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
  height: 100%;
  padding-top: 8px;
  color: var(--subtext);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.insights-home-bars span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: var(--height);
  border-radius: 8px 8px 2px 2px;
  background: color-mix(in srgb, var(--accent) 84%, white);
}

.pricing-section {
  width: min(900px, calc(100% - 44px));
  margin: 76px auto 78px;
}

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

.pricing-label {
  margin-bottom: 12px;
}

.pricing-header h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.06;
  font-weight: 520;
  white-space: nowrap;
}

.pricing-header > p {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.42;
}

.pricing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(300px, 100%);
  margin: 0 auto 18px;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 5px;
  background: color-mix(in srgb, var(--surface) 86%, white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.pricing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: var(--subtext);
  font: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 680;
  letter-spacing: 0;
  cursor: pointer;
}

.pricing-toggle button.is-active {
  background: var(--text);
  color: var(--surface);
}

.pricing-purchase-grid {
  display: block;
  max-width: 430px;
  margin: 0 auto;
}

.pricing-license-card {
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow:
    0 16px 40px rgba(176, 177, 172, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 28px;
  text-align: left;
}

.pricing-license-card-popular {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--outline));
}

.pricing-license-card.is-plus {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--outline));
}

.pricing-plan-heading {
  min-height: 72px;
}

.pricing-plan-heading p {
  max-width: none;
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

.pricing-plan-heading h3 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 620;
  letter-spacing: 0;
}

.pricing-plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--text);
  color: var(--surface);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-price {
  margin: 22px 0 0;
  text-align: left;
}

.pricing-price span {
  display: block;
  color: var(--text);
  font-size: clamp(52px, 5.4vw, 64px);
  line-height: 0.95;
  font-weight: 560;
  letter-spacing: 0;
}

.pricing-price small {
  display: block;
  margin-top: 8px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 520;
}

.pricing-trial {
  max-width: none;
  margin: 14px 0 0;
  color: var(--subtext);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 430;
  text-align: left;
}

.pricing-license-card > p.pricing-trial {
  max-width: none;
  margin: 14px 0 0;
  text-align: left;
}

.pricing-license-card .pricing-check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--outline);
  list-style: none;
}

.pricing-license-card .pricing-check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 430;
  text-align: left;
}

.pricing-license-card .pricing-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.pricing-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 26px;
}

.pricing-actions .hero-buy-button {
  width: 148px;
  min-height: 50px;
  margin-top: 0;
}

.pricing-license-card p,
.pricing-license-card li,
.pricing-license-card h3,
.pricing-license-card small {
  text-align: left;
}

@media (max-width: 860px) {
  .insights-home-section {
    grid-template-columns: 1fr;
    width: min(540px, calc(100% - 28px));
    margin-top: 62px;
    margin-bottom: 68px;
  }

  .pricing-section {
    width: min(540px, calc(100% - 28px));
    margin-top: 58px;
  }

  .pricing-header {
    text-align: left;
  }

  .pricing-header h2 {
    font-size: 36px;
    white-space: normal;
  }

  .pricing-header > p {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-toggle,
  .pricing-purchase-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-license-card {
    min-height: 0;
    padding: 24px 22px;
  }
}

@media (max-width: 440px) {
  .insights-home-panel {
    padding: 16px;
  }

  .insights-home-metrics {
    gap: 10px;
  }

  .insights-home-metrics div {
    padding: 14px 12px 12px;
  }

  .insights-home-metrics strong {
    font-size: 24px;
  }

  .insights-home-bars {
    gap: 7px;
  }

  .pricing-price span {
    font-size: 52px;
  }

  .pricing-plan-badge {
    top: 20px;
    right: 18px;
  }
}

/* Landing page rebuild: release-ready IA and product story. */
.reference-header {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 20px 0 10px;
}

.reference-header .brand {
  flex: 0 0 auto;
  gap: 12px;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 720;
}

.reference-header .brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.reference-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 24px);
  color: var(--subtext);
  font-size: 15px;
  line-height: 1;
  font-weight: 620;
}

.reference-nav a {
  white-space: nowrap;
}

.reference-nav .nav-download {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 12px;
  padding: 0 16px;
  background: var(--text);
  color: var(--background);
}

.landing-hero {
  width: min(1050px, calc(100% - 44px));
  min-height: min(560px, 64vh);
  padding: clamp(64px, 11vh, 128px) 0 clamp(52px, 9vh, 96px);
}

.landing-hero h1 {
  max-width: 1040px;
  color: var(--text);
  font-size: clamp(58px, 8vw, 124px);
  line-height: 0.92;
  font-weight: 620;
  letter-spacing: 0;
  white-space: normal;
}

.landing-hero p {
  max-width: 720px;
  margin-top: clamp(22px, 3.2vh, 32px);
  color: var(--subtext);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.34;
  font-weight: 430;
}

.landing-hero .cta-pair {
  margin-top: clamp(28px, 4.4vh, 44px);
}

.landing-hero .hero-buy-button {
  margin-top: 0;
}

.workflow-section,
.why-section,
.use-case-section,
.insights-home-section,
.privacy-section,
.compat-section,
.pricing-section,
.home-faq-preview {
  width: min(1120px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
}

.workflow-section {
  margin-top: clamp(20px, 4vh, 42px);
  margin-bottom: clamp(76px, 12vh, 128px);
}

.workflow-heading,
.feature-heading,
.section-heading,
.pricing-header {
  max-width: 720px;
}

.workflow-heading,
.pricing-header {
  margin: 0 auto clamp(28px, 5vw, 52px);
  text-align: center;
}

.workflow-heading h2,
.feature-heading h2,
.section-heading h2,
.privacy-copy h2,
.compat-section h2,
.pricing-header h2,
.home-faq-preview h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.02;
  font-weight: 540;
  letter-spacing: 0;
}

.workflow-heading p,
.feature-heading p,
.privacy-copy p,
.compat-section p,
.pricing-header > p {
  margin: 18px 0 0;
  color: var(--subtext);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.42;
  font-weight: 410;
}

.workflow-heading p,
.pricing-header > p {
  margin-left: auto;
  margin-right: auto;
}

.workflow-demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255, 59, 48, 0.045), transparent 42%),
    color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: 0 24px 70px rgba(176, 177, 172, 0.16);
}

.workflow-callout {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.shortcut-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  color: var(--subtext);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 500;
}

.shortcut-line span:last-child {
  color: var(--accent);
}

.shortcut-line kbd {
  display: inline-flex;
  min-width: 76px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--outline) 70%, var(--text));
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 7px 0 rgba(38, 37, 31, 0.08);
  color: var(--text);
  font-family: inherit;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 760;
}

.dictation-status {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 0 20px;
  background: color-mix(in srgb, var(--background) 84%, white);
  color: var(--text);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(176, 177, 172, 0.14);
}

.dictation-status.pasted {
  color: var(--subtext);
}

.dictation-status.pasted span:first-child {
  color: var(--accent);
  font-size: 23px;
  line-height: 1;
  font-weight: 760;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.waveform {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.waveform i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.waveform i:nth-child(1),
.waveform i:nth-child(8) { height: 12px; opacity: 0.55; }
.waveform i:nth-child(2),
.waveform i:nth-child(7) { height: 20px; opacity: 0.72; }
.waveform i:nth-child(3),
.waveform i:nth-child(6) { height: 28px; opacity: 0.9; }
.waveform i:nth-child(4),
.waveform i:nth-child(5) { height: 34px; }

.notes-window {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--outline) 72%, var(--text));
  border-radius: 18px;
  background: color-mix(in srgb, var(--background) 86%, white);
  box-shadow: 0 26px 70px rgba(38, 37, 31, 0.14);
}

.notes-titlebar {
  min-height: 56px;
  display: grid;
  grid-template-columns: 96px 1fr 96px;
  align-items: center;
  border-bottom: 1px solid var(--outline);
  padding: 0 18px;
  background: color-mix(in srgb, var(--surface) 84%, white);
}

.notes-titlebar strong {
  justify-self: center;
  color: var(--subtext);
  font-size: clamp(15px, 1.5vw, 21px);
  line-height: 1;
  font-weight: 620;
  letter-spacing: 0.06em;
}

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

.window-dots span {
  width: 13px;
  height: 13px;
  border-radius: 999px;
}

.window-dots span:nth-child(1) { background: #ec9a92; }
.window-dots span:nth-child(2) { background: #efd06f; }
.window-dots span:nth-child(3) { background: #9ec86f; }

.notes-canvas {
  min-height: 300px;
  padding: clamp(34px, 5vw, 58px) clamp(30px, 5vw, 64px);
}

.notes-date {
  margin: 0;
  color: var(--subtext);
  font-size: clamp(13px, 1.2vw, 17px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notes-placeholder {
  margin: 30px 0 0;
  color: color-mix(in srgb, var(--subtext) 58%, transparent);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 440;
  font-style: italic;
}

.notes-output {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--text);
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.35;
  font-weight: 430;
}

.notes-output span {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 5px;
  transform: translateY(0.14em);
  background: var(--accent);
}

.spiel-flow-demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: clamp(18px, 3.8vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 59, 48, 0.055), transparent 42%),
    color-mix(in srgb, var(--surface) 90%, white);
  box-shadow: 0 24px 70px rgba(176, 177, 172, 0.14);
}

.flow-command-card,
.flow-writing-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.flow-command-card {
  min-height: 360px;
  border: 1px solid color-mix(in srgb, var(--text) 78%, white);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 59, 48, 0.28), transparent 36%),
    linear-gradient(155deg, #2b2a24 0%, #1f1e1a 100%);
  color: var(--background);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flow-writing-card {
  min-height: 360px;
  border: 1px solid var(--outline);
  background: color-mix(in srgb, var(--background) 88%, white);
  box-shadow: 0 18px 48px rgba(38, 37, 31, 0.11);
}

.flow-state,
.writing-state {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  animation: flow-state-cycle 16s infinite steps(1, end);
}

.flow-state {
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.flow-recording,
.writing-recording {
  animation-delay: 4s;
}

.flow-transcribing,
.writing-transcribing {
  animation-delay: 8s;
}

.flow-inserted,
.writing-inserted {
  animation-delay: 12s;
}

.flow-eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-state h3 {
  max-width: 420px;
  margin: 0;
  color: color-mix(in srgb, var(--background) 96%, white);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 560;
  letter-spacing: 0;
}

.flow-state h3 kbd {
  display: inline-flex;
  min-width: 58px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  transform: translateY(-0.04em);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: inherit;
  font-size: 25px;
  font-weight: 760;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.2);
}

.flow-state p:last-child {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(249, 248, 244, 0.72);
  font-size: 18px;
  line-height: 1.42;
  font-weight: 430;
}

.flow-wave {
  display: flex;
  width: min(100%, 330px);
  height: 70px;
  align-items: center;
  gap: 7px;
  margin: 26px 0 4px;
}

.flow-wave i {
  display: block;
  width: 8px;
  border-radius: 6px;
  background: var(--accent);
  animation: flow-wave 0.82s infinite ease-in-out alternate;
}

.flow-wave i:nth-child(1),
.flow-wave i:nth-child(9) { height: 18px; opacity: 0.5; }
.flow-wave i:nth-child(2),
.flow-wave i:nth-child(8) { height: 30px; opacity: 0.66; animation-delay: 0.08s; }
.flow-wave i:nth-child(3),
.flow-wave i:nth-child(7) { height: 46px; opacity: 0.82; animation-delay: 0.16s; }
.flow-wave i:nth-child(4),
.flow-wave i:nth-child(6) { height: 58px; animation-delay: 0.24s; }
.flow-wave i:nth-child(5) { height: 68px; animation-delay: 0.32s; }

.flow-progress {
  width: min(100%, 350px);
  height: 9px;
  overflow: hidden;
  margin: 28px 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.flow-progress span {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  animation: flow-progress 1.1s ease-in-out infinite alternate;
}

.flow-writing-header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--outline);
  padding: 0 26px;
  color: var(--subtext);
  font-size: 14px;
  line-height: 1;
  font-weight: 690;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-writing-header span:last-child {
  border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--outline));
  border-radius: 9px;
  padding: 8px 10px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.flow-writing-body {
  position: relative;
  min-height: 296px;
  padding: 42px clamp(28px, 4vw, 56px);
}

.writing-state {
  inset: 42px clamp(28px, 4vw, 56px);
}

.writing-placeholder,
.speech-line,
.draft-line,
.final-copy {
  margin: 0;
}

.writing-placeholder {
  color: color-mix(in srgb, var(--subtext) 52%, white);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 430;
}

.speech-line {
  max-width: 520px;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--subtext);
  font-size: 25px;
  line-height: 1.36;
  font-weight: 460;
}

.draft-line,
.final-copy {
  max-width: 600px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.24;
  font-weight: 430;
}

.draft-line {
  color: color-mix(in srgb, var(--text) 72%, var(--subtext));
}

.draft-skeleton {
  display: grid;
  gap: 13px;
  width: min(100%, 470px);
  margin-top: 24px;
}

.draft-skeleton span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--outline) 68%, transparent),
    color-mix(in srgb, var(--accent) 22%, transparent),
    color-mix(in srgb, var(--outline) 68%, transparent)
  );
  background-size: 220% 100%;
  animation: skeleton-sweep 1.1s linear infinite;
}

.draft-skeleton span:last-child {
  width: 62%;
}

.final-copy span {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 5px;
  transform: translateY(0.12em);
  background: var(--accent);
  animation: cursor-blink 0.9s steps(2, start) infinite;
}

.flow-cycle-bar {
  grid-column: 1 / -1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--outline) 78%, transparent);
}

.flow-cycle-bar span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left;
  background: var(--accent);
  animation: flow-cycle-progress 16s linear infinite;
}

@keyframes flow-state-cycle {
  0%,
  24.99% {
    opacity: 1;
    visibility: visible;
  }

  25%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes flow-wave {
  from { transform: scaleY(0.58); }
  to { transform: scaleY(1); }
}

@keyframes flow-progress {
  from { transform: translateX(0); }
  to { transform: translateX(108%); }
}

@keyframes skeleton-sweep {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

@keyframes flow-cycle-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .flow-state,
  .writing-state,
  .flow-wave i,
  .flow-progress span,
  .draft-skeleton span,
  .final-copy span,
  .flow-cycle-bar span {
    animation: none;
  }

  .flow-state,
  .writing-state {
    display: none;
  }

  .flow-inserted,
  .writing-inserted {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .writing-inserted {
    display: block;
  }

  .flow-cycle-bar span {
    transform: scaleX(1);
  }
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.workflow-steps article,
.why-grid article,
.use-case-grid article,
.privacy-points article,
.insights-blocks article,
.faq-preview-grid article {
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: 0 12px 34px rgba(176, 177, 172, 0.1);
}

.workflow-steps article {
  padding: 20px 20px 18px;
}

.workflow-steps span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.workflow-steps h3,
.why-grid h3,
.use-case-grid h3,
.privacy-points h3,
.insights-blocks h3,
.faq-preview-grid h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.12;
  font-weight: 650;
}

.workflow-steps p,
.why-grid p,
.use-case-grid p,
.privacy-points p,
.insights-blocks p,
.faq-preview-grid p,
.license-card p,
.pricing-faq p {
  margin: 10px 0 0;
  color: var(--subtext);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.42;
  font-weight: 410;
}

.why-section,
.use-case-section,
.insights-home-section,
.privacy-section,
.compat-section,
.pricing-section,
.home-faq-preview {
  margin-top: clamp(74px, 11vh, 124px);
  margin-bottom: clamp(74px, 11vh, 124px);
}

.feature-heading,
.section-heading {
  text-align: left;
}

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

.why-grid article,
.use-case-grid article,
.privacy-points article,
.insights-blocks article,
.faq-preview-grid article {
  padding: 24px;
}

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

.use-case-grid article {
  min-height: 150px;
}

.insights-home-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
}

.insights-home-copy h2 {
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 1.02;
  font-weight: 540;
}

.insights-home-copy p {
  max-width: 560px;
}

.insights-blocks {
  display: grid;
  gap: 16px;
}

.insights-blocks article {
  min-height: 176px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-radius: 18px;
  padding: clamp(34px, 5vw, 64px);
  background: var(--text);
  color: var(--background);
}

.privacy-copy h2 {
  color: var(--background);
}

.privacy-copy p {
  color: color-mix(in srgb, var(--background) 76%, var(--subtext));
}

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

.privacy-points article {
  border-color: rgba(247, 247, 244, 0.12);
  background: rgba(247, 247, 244, 0.055);
  box-shadow: none;
}

.privacy-points h3 {
  color: var(--background);
}

.privacy-points p {
  color: color-mix(in srgb, var(--background) 70%, var(--subtext));
}

.compat-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.compat-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compat-section li {
  border: 1px solid var(--outline);
  border-radius: 14px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface) 88%, white);
}

.compat-section strong,
.compat-section span {
  display: block;
}

.compat-section strong {
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 650;
}

.compat-section span {
  margin-top: 6px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.42;
}

.pricing-section {
  width: min(1080px, calc(100% - 44px));
}

.pricing-label {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-header h2 {
  white-space: normal;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 850px;
  margin: 0 auto;
}

.license-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 28px;
  background: color-mix(in srgb, var(--surface) 88%, white);
  box-shadow: 0 18px 48px rgba(176, 177, 172, 0.14);
}

.license-card.highlighted {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--outline));
  box-shadow:
    0 22px 56px rgba(176, 177, 172, 0.16),
    0 0 0 4px rgba(255, 59, 48, 0.045);
}

.license-card .pricing-plan-heading {
  min-height: auto;
}

.license-card .pricing-plan-heading p {
  margin-bottom: 10px;
  color: var(--accent);
}

.license-card .pricing-price {
  margin-top: 28px;
}

.license-card .pricing-price span {
  font-size: clamp(46px, 5vw, 62px);
  font-weight: 560;
}

.license-card .hero-buy-button {
  align-self: flex-start;
  width: auto;
  min-width: 142px;
  min-height: 48px;
  margin-top: 24px;
  border-radius: 14px;
  padding-inline: 22px;
  font-size: 16px;
}

.license-fit {
  margin-top: auto;
  padding-top: 22px;
}

.included-panel {
  max-width: 850px;
  margin: 18px auto 0;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 26px 28px;
  background: color-mix(in srgb, var(--surface) 88%, white);
}

.included-panel h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 650;
}

.included-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--subtext);
  font-size: 15px;
  line-height: 1.35;
}

.included-panel li::before,
.pricing-faq summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.pricing-faq {
  max-width: 850px;
  margin: 18px auto 0;
  border-top: 1px solid var(--outline);
}

.pricing-faq details {
  border-bottom: 1px solid var(--outline);
  padding: 18px 0;
}

.pricing-faq summary {
  position: relative;
  list-style: none;
  padding-left: 24px;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 650;
}

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

.pricing-faq p {
  max-width: 720px;
  margin-left: 24px;
}

.home-faq-preview {
  margin-top: clamp(54px, 8vh, 88px);
}

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

.read-faq-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-size: 16px;
  line-height: 1;
  font-weight: 720;
}

.closing-cta {
  width: min(1120px, calc(100% - 44px));
  margin-top: clamp(60px, 9vh, 96px);
  margin-bottom: 54px;
  border-radius: 18px;
  padding: clamp(44px, 6vw, 70px) clamp(24px, 5vw, 72px);
}

.closing-cta h2 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 540;
}

.closing-actions .hero-buy-button {
  margin-top: 0;
}

@media (max-width: 920px) {
  .reference-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .reference-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .workflow-demo,
  .spiel-flow-demo,
  .insights-home-section,
  .privacy-section,
  .compat-section {
    grid-template-columns: 1fr;
  }

  .workflow-steps,
  .why-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-points,
  .license-grid,
  .faq-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reference-header,
  .workflow-section,
  .why-section,
  .use-case-section,
  .insights-home-section,
  .privacy-section,
  .compat-section,
  .pricing-section,
  .home-faq-preview,
  .closing-cta {
    width: min(100% - 28px, 540px);
  }

  .landing-hero {
    width: min(100% - 28px, 540px);
    min-height: auto;
    padding-top: 54px;
  }

  .landing-hero h1 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .landing-hero p {
    font-size: 19px;
  }

  .reference-nav .nav-download {
    display: none;
  }

  .landing-hero .cta-pair {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 280px;
  }

  .landing-hero .hero-buy-button {
    width: 100%;
  }

  .workflow-demo,
  .spiel-flow-demo,
  .privacy-section {
    padding: 22px;
  }

  .spiel-flow-demo {
    gap: 14px;
  }

  .flow-command-card,
  .flow-writing-card {
    min-height: 320px;
  }

  .flow-state {
    padding: 28px;
  }

  .flow-state h3 {
    font-size: 28px;
  }

  .flow-state p:last-child {
    font-size: 16px;
  }

  .flow-writing-header {
    min-height: 54px;
    padding: 0 18px;
    font-size: 12px;
  }

  .flow-writing-body {
    min-height: 266px;
    padding: 30px 22px;
  }

  .writing-state {
    inset: 30px 22px;
  }

  .writing-placeholder {
    font-size: 24px;
  }

  .speech-line {
    font-size: 20px;
  }

  .draft-line,
  .final-copy {
    font-size: 26px;
  }

  .shortcut-line {
    font-size: 32px;
  }

  .shortcut-line kbd {
    min-width: 64px;
    min-height: 56px;
  }

  .notes-titlebar {
    grid-template-columns: 70px 1fr 70px;
    padding-inline: 14px;
  }

  .notes-titlebar strong {
    font-size: 14px;
  }

  .notes-canvas {
    min-height: 260px;
    padding: 28px 22px;
  }

  .notes-placeholder {
    font-size: 24px;
  }

  .notes-output {
    font-size: 26px;
  }

  .workflow-steps,
  .why-grid,
  .use-case-grid,
  .included-panel ul {
    grid-template-columns: 1fr;
  }

  .license-card,
  .included-panel,
  .why-grid article,
  .use-case-grid article,
  .privacy-points article,
  .insights-blocks article,
  .faq-preview-grid article {
    padding: 22px;
  }

  .license-card .hero-buy-button {
    align-self: stretch;
  }

  .closing-actions {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Revised workflow demo: stable frame, only the relevant state content changes. */
.spiel-flow-demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(440px, 1.26fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: clamp(18px, 3.8vw, 42px);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 59, 48, 0.07), transparent 34%),
    color-mix(in srgb, var(--surface) 90%, white);
  box-shadow: 0 24px 70px rgba(176, 177, 172, 0.14);
}

.flow-command-card,
.flow-writing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: 16px;
  background: color-mix(in srgb, var(--background) 88%, white);
  box-shadow: 0 18px 48px rgba(38, 37, 31, 0.08);
}

.flow-command-card {
  display: grid;
  min-height: 330px;
  align-content: center;
  padding: clamp(28px, 4vw, 46px);
}

.flow-prompt-line {
  display: grid;
  grid-template-columns: auto auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--subtext);
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.04;
  font-weight: 430;
  letter-spacing: 0;
}

.flow-prompt-line kbd {
  display: inline-flex;
  min-width: 72px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--outline) 74%, var(--text));
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 7px 0 rgba(38, 37, 31, 0.08);
  color: var(--text);
  font-family: inherit;
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 760;
}

.flow-cycle-phrase {
  display: inline-grid;
  grid-column: 1 / -1;
  min-width: 0;
  min-height: 2.12em;
  max-width: 100%;
  color: var(--accent);
}

.phrase-state,
.status-state,
.writing-state {
  opacity: 0;
  visibility: hidden;
  animation: flow-state-cycle 16s infinite steps(1, end);
}

.phrase-state {
  grid-area: 1 / 1;
}

.flow-status-stage {
  position: relative;
  min-height: 62px;
}

.status-state {
  position: absolute;
  inset: 0 auto auto 0;
  display: inline-flex;
  min-width: 290px;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--outline);
  border-radius: 15px;
  padding: 0 18px;
  background: color-mix(in srgb, var(--background) 92%, white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 650;
  box-shadow: 0 12px 28px rgba(176, 177, 172, 0.12);
}

.status-ready-icon,
.recording-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
}

.status-ready-icon {
  opacity: 0.36;
}

.inline-wave {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.inline-wave i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: var(--accent);
  animation: flow-wave 0.82s infinite ease-in-out alternate;
}

.inline-wave i:nth-child(1),
.inline-wave i:nth-child(7) { height: 12px; opacity: 0.55; }
.inline-wave i:nth-child(2),
.inline-wave i:nth-child(6) { height: 20px; opacity: 0.72; animation-delay: 0.08s; }
.inline-wave i:nth-child(3),
.inline-wave i:nth-child(5) { height: 30px; opacity: 0.9; animation-delay: 0.16s; }
.inline-wave i:nth-child(4) { height: 38px; animation-delay: 0.24s; }

.transcribing-dots {
  display: inline-flex;
  gap: 5px;
}

.transcribing-dots i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  animation: dot-pulse 0.82s infinite ease-in-out alternate;
}

.transcribing-dots i:nth-child(2) {
  animation-delay: 0.14s;
}

.transcribing-dots i:nth-child(3) {
  animation-delay: 0.28s;
}

.status-check {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 780;
}

.phrase-recording,
.status-recording,
.writing-recording {
  animation-delay: 4s;
}

.phrase-transcribing,
.status-transcribing,
.writing-transcribing {
  animation-delay: 8s;
}

.phrase-inserted,
.status-inserted,
.writing-inserted {
  animation-delay: 12s;
}

.flow-writing-card {
  min-height: 330px;
}

.flow-writing-header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--outline);
  padding: 0 26px;
  color: var(--subtext);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-writing-header span {
  white-space: nowrap;
}

.flow-writing-header span:last-child {
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--outline));
  border-radius: 9px;
  padding: 8px 10px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.flow-writing-body {
  position: relative;
  min-height: 268px;
  padding: 42px clamp(28px, 4vw, 56px);
}

.writing-state {
  position: absolute;
  inset: 42px clamp(28px, 4vw, 56px);
}

.writing-placeholder,
.speech-line,
.draft-line,
.final-copy {
  margin: 0;
}

.writing-placeholder {
  color: color-mix(in srgb, var(--subtext) 52%, white);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 430;
}

.speech-line {
  max-width: 520px;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--subtext);
  font-size: 25px;
  line-height: 1.36;
  font-weight: 460;
}

.draft-line,
.final-copy {
  max-width: 600px;
  color: var(--text);
  font-size: 33px;
  line-height: 1.24;
  font-weight: 430;
}

.draft-line {
  color: color-mix(in srgb, var(--text) 72%, var(--subtext));
}

.draft-skeleton {
  display: grid;
  gap: 13px;
  width: min(100%, 470px);
  margin-top: 24px;
}

.draft-skeleton span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, var(--outline));
  animation: dot-pulse 0.9s infinite ease-in-out alternate;
}

.draft-skeleton span:last-child {
  width: 62%;
  animation-delay: 0.18s;
}

.flow-progress,
.flow-cycle-bar {
  display: none;
}

@keyframes dot-pulse {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .phrase-state,
  .status-state,
  .writing-state,
  .inline-wave i,
  .transcribing-dots i,
  .draft-skeleton span,
  .final-copy span {
    animation: none;
  }

  .phrase-state,
  .status-state,
  .writing-state {
    opacity: 0;
    visibility: hidden;
  }

  .phrase-inserted,
  .status-inserted,
  .writing-inserted {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 920px) {
  .spiel-flow-demo {
    grid-template-columns: 1fr;
  }

  .flow-command-card,
  .flow-writing-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .spiel-flow-demo {
    gap: 14px;
    padding: 14px;
  }

  .flow-command-card {
    min-height: 270px;
    padding: 28px;
  }

  .flow-prompt-line {
    gap: 10px;
    margin-bottom: 22px;
    font-size: 32px;
  }

  .flow-prompt-line kbd {
    min-width: 56px;
    min-height: 50px;
    border-radius: 12px;
    font-size: 26px;
  }

  .flow-cycle-phrase {
    min-height: 2.12em;
  }

  .flow-status-stage {
    min-height: 58px;
  }

  .status-state {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    font-size: 15px;
  }

  .flow-writing-card {
    min-height: 302px;
  }

  .flow-writing-header {
    min-height: 54px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .flow-writing-body {
    min-height: 248px;
    padding: 30px 22px;
  }

  .writing-state {
    inset: 30px 22px;
  }

  .writing-placeholder {
    font-size: 24px;
  }

  .speech-line {
    font-size: 21px;
  }

  .draft-line,
  .final-copy {
    font-size: 25px;
  }
}

@media (max-width: 360px) {
  .flow-command-card {
    padding: 24px;
  }

  .flow-prompt-line {
    font-size: 29px;
  }

  .draft-line,
  .final-copy {
    font-size: 23px;
  }
}

/* Premium direct-purchase homepage prototype */

body.spiel-luxury {
  --lux-black: #090908;
  --lux-ink: #11110f;
  --lux-ink-soft: #3b3934;
  --lux-white: #fbfaf6;
  --lux-porcelain: #f5f2ea;
  --lux-paper: #ebe6dc;
  --lux-line: rgba(255, 255, 255, 0.16);
  --lux-line-dark: rgba(17, 17, 15, 0.12);
  --lux-muted: #aaa49a;
  --lux-red: #ff3b30;
  --lux-green: #245c4e;
  --lux-shadow: rgba(0, 0, 0, 0.42);
  background: var(--lux-black);
  color: var(--lux-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body.spiel-luxury main {
  background: var(--lux-white);
}

.lux-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(22px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 8, 7, 0.62);
  color: var(--lux-white);
  backdrop-filter: blur(26px) saturate(1.22);
}

.lux-brand,
.lux-nav {
  display: inline-flex;
  align-items: center;
}

.lux-brand {
  gap: 12px;
  font-size: 20px;
  font-weight: 680;
}

.lux-mark {
  display: inline-grid;
  grid-template-columns: repeat(5, 2px);
  place-items: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lux-red);
  box-shadow: 0 16px 34px rgba(255, 59, 48, 0.28);
}

.lux-mark span {
  display: block;
  width: 2px;
  border-radius: 999px;
  background: #fff;
}

.lux-mark span:nth-child(1),
.lux-mark span:nth-child(5) {
  height: 9px;
}

.lux-mark span:nth-child(2),
.lux-mark span:nth-child(4) {
  height: 18px;
}

.lux-mark span:nth-child(3) {
  height: 24px;
}

.lux-nav {
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(251, 250, 246, 0.72);
  font-size: 14px;
  font-weight: 560;
}

.lux-nav a {
  transition: color 160ms ease;
}

.lux-nav a:hover {
  color: #fff;
}

.lux-nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lux-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(620px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  padding: 132px clamp(24px, 5vw, 78px) 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.24), transparent 26%),
    radial-gradient(circle at 82% 82%, rgba(255, 59, 48, 0.11), transparent 24%),
    linear-gradient(122deg, #070706 0%, #11100e 49%, #ebe7dc 49.2%, #fbfaf6 100%);
}

.lux-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 74%);
}

.lux-hero::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 78px);
  right: clamp(22px, 5vw, 78px);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(17, 17, 15, 0.16), transparent);
}

.lux-hero-copy {
  width: min(710px, 100%);
  max-width: 710px;
  color: var(--lux-white);
  min-width: 0;
}

.lux-hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(58px, 7.2vw, 112px);
  line-height: 0.91;
  font-weight: 720;
  letter-spacing: 0;
}

.lux-hero-copy h1 span {
  display: block;
}

.lux-hero-copy p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(251, 250, 246, 0.72);
  font-size: clamp(19px, 1.65vw, 23px);
  line-height: 1.42;
  font-weight: 420;
}

.lux-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.lux-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 680;
}

.lux-button-primary {
  background: var(--lux-red);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(255, 59, 48, 0.28);
}

.lux-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(20px);
}

.lux-button-dark {
  border: 1px solid rgba(17, 17, 15, 0.18);
  background: var(--lux-ink);
  color: #fff;
}

.lux-trial-line {
  margin-top: 18px !important;
  color: rgba(251, 250, 246, 0.5) !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 560 !important;
}

.lux-stage {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.lux-stage-glow {
  position: absolute;
  width: 610px;
  height: 610px;
  right: 4%;
  top: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.34) 38%, transparent 68%);
  filter: blur(20px);
}

.lux-ghost,
.lux-plane,
.lux-local-note {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 80px rgba(45, 39, 28, 0.22);
  backdrop-filter: blur(26px) saturate(1.18);
}

.lux-ghost {
  right: -4%;
  width: 520px;
  height: 300px;
  border-radius: 32px;
  opacity: 0.72;
}

.lux-ghost-one {
  top: 66px;
  transform: rotate(-8deg) translateZ(-120px);
}

.lux-ghost-two {
  top: 150px;
  right: 7%;
  transform: rotate(7deg) translateZ(-80px);
  opacity: 0.42;
}

.lux-plane {
  right: -2%;
  top: 190px;
  width: min(780px, 70vw);
  height: 430px;
  border-radius: 38px;
  overflow: hidden;
  transform: rotate(-7deg);
}

.lux-plane-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 58px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
  background: rgba(255, 255, 255, 0.46);
}

.lux-plane-bar > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.lux-plane-bar > span:nth-child(1) {
  background: #ff6159;
}

.lux-plane-bar > span:nth-child(2) {
  background: #ffbd2e;
}

.lux-plane-bar > span:nth-child(3) {
  background: #28c840;
}

.lux-plane-bar div {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.lux-plane-bar i {
  display: block;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(17, 17, 15, 0.2);
  border-radius: 6px;
}

.lux-document {
  position: relative;
  padding: 76px 78px;
  color: var(--lux-ink);
}

.lux-document-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.1);
  margin-bottom: 16px;
}

.lux-line-long {
  width: 62%;
}

.lux-line-mid {
  width: 48%;
}

.lux-line-short {
  width: 34%;
  margin-bottom: 44px;
}

.lux-document p {
  margin: 0 0 26px;
  color: rgba(17, 17, 15, 0.84);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.16;
  font-weight: 520;
}

.lux-insertion-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lux-text-stroke {
  display: block;
  width: 58%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 59, 48, 0.76), rgba(17, 17, 15, 0.14));
}

.lux-caret,
.lux-compose-cursor {
  display: block;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: var(--lux-red);
  box-shadow: 0 0 0 5px rgba(255, 59, 48, 0.08);
}

.lux-recorder {
  position: absolute;
  left: 120px;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 0 18px;
  border: 1px solid rgba(17, 17, 15, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 22px 48px rgba(17, 17, 15, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.lux-record-light {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lux-red);
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.18),
    0 0 0 10px rgba(255, 59, 48, 0.12),
    0 16px 30px rgba(255, 59, 48, 0.26);
}

.lux-wave,
.lux-node-wave,
.lux-mini-recorder {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lux-wave i,
.lux-node-wave i,
.lux-mini-recorder i {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: var(--lux-red);
}

.lux-wave i:nth-child(1),
.lux-wave i:nth-child(9),
.lux-node-wave i:nth-child(1),
.lux-node-wave i:nth-child(5),
.lux-mini-recorder i:nth-of-type(1),
.lux-mini-recorder i:nth-of-type(5) {
  height: 18px;
}

.lux-wave i:nth-child(2),
.lux-wave i:nth-child(8),
.lux-mini-recorder i:nth-of-type(2),
.lux-mini-recorder i:nth-of-type(4) {
  height: 29px;
}

.lux-wave i:nth-child(3),
.lux-wave i:nth-child(7),
.lux-node-wave i:nth-child(2),
.lux-node-wave i:nth-child(4) {
  height: 42px;
}

.lux-wave i:nth-child(4),
.lux-wave i:nth-child(6) {
  height: 54px;
}

.lux-wave i:nth-child(5),
.lux-node-wave i:nth-child(3),
.lux-mini-recorder i:nth-of-type(3) {
  height: 64px;
}

.lux-listening {
  color: var(--lux-ink-soft);
  font-size: 15px;
  font-weight: 650;
}

.lux-recorder kbd {
  min-width: 34px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 9px;
  background: rgba(17, 17, 15, 0.05);
  color: rgba(17, 17, 15, 0.62);
  font-size: 13px;
  font-weight: 680;
}

.lux-local-note {
  right: 14%;
  top: 96px;
  width: 220px;
  min-height: 128px;
  display: grid;
  gap: 7px;
  padding: 20px;
  border-radius: 24px;
  color: var(--lux-ink);
  transform: rotate(4deg);
}

.lux-local-note span {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid rgba(36, 92, 78, 0.24);
  background: rgba(36, 92, 78, 0.1);
}

.lux-local-note strong {
  font-size: 15px;
  font-weight: 720;
}

.lux-local-note em {
  color: rgba(17, 17, 15, 0.56);
  font-size: 13px;
  font-style: normal;
}

.lux-flow,
.lux-work,
.lux-pricing {
  background: var(--lux-white);
  color: var(--lux-ink);
}

.lux-flow {
  padding: 88px clamp(24px, 5vw, 78px) 96px;
}

.lux-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.lux-section-heading h2,
.lux-privacy h2,
.lux-close h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 720;
  letter-spacing: 0;
}

.lux-section-heading p,
.lux-privacy-copy p,
.lux-close p {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(17, 17, 15, 0.58);
  font-size: 19px;
  line-height: 1.5;
}

.lux-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.lux-rail::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  top: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 15, 0.18), transparent);
}

.lux-rail article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding-top: 2px;
}

.lux-node {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #ece7dc);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 42px rgba(17, 17, 15, 0.08);
  overflow: hidden;
}

.lux-node-key {
  color: var(--lux-ink);
  font-size: 30px;
  font-weight: 680;
}

.lux-node-cursor::before {
  content: "";
  width: 3px;
  height: 42px;
  border-radius: 999px;
  background: var(--lux-red);
}

.lux-node.lux-node-wave {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-node.lux-node-wave i {
  max-height: 36px;
}

.lux-node-check::before {
  content: "";
  width: 32px;
  height: 17px;
  border-left: 3px solid var(--lux-green);
  border-bottom: 3px solid var(--lux-green);
  transform: rotate(-45deg) translate(2px, -4px);
}

.lux-rail h3 {
  margin: 0;
  color: rgba(17, 17, 15, 0.76);
  font-size: 15px;
  font-weight: 680;
}

.lux-work {
  padding: 36px clamp(24px, 5vw, 78px) 110px;
}

.lux-section-heading-wide {
  max-width: 900px;
}

.lux-work-surface {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(239, 234, 224, 0.72)),
    var(--lux-porcelain);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 34px 90px rgba(17, 17, 15, 0.12);
  overflow: hidden;
}

.lux-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px;
  border-bottom: 1px solid rgba(17, 17, 15, 0.08);
}

.lux-tabs span {
  min-width: 118px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(17, 17, 15, 0.48);
  font-size: 14px;
  font-weight: 640;
}

.lux-tabs .active {
  background: #fff;
  color: var(--lux-ink);
  box-shadow: 0 10px 24px rgba(17, 17, 15, 0.08);
}

.lux-compose {
  position: relative;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 440px;
}

.lux-compose-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 40px 28px;
  border-right: 1px solid rgba(17, 17, 15, 0.08);
}

.lux-compose-sidebar span {
  height: 58px;
  border-radius: 15px;
  background: rgba(17, 17, 15, 0.06);
}

.lux-compose-sidebar span:first-child {
  background: rgba(255, 59, 48, 0.1);
}

.lux-compose-editor {
  position: relative;
  padding: 58px 68px;
}

.lux-compose-editor div:not(.lux-compose-cursor) {
  height: 14px;
  max-width: 520px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.1);
}

.lux-compose-editor div:nth-child(2) {
  width: 42%;
  margin-bottom: 58px;
}

.lux-compose-editor p {
  margin: 0;
  color: rgba(17, 17, 15, 0.78);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 640;
}

.lux-compose-cursor {
  margin-top: 22px;
}

.lux-mini-recorder {
  position: absolute;
  right: 54px;
  bottom: 54px;
  min-height: 58px;
  gap: 5px;
  padding: 0 22px;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 42px rgba(17, 17, 15, 0.12);
}

.lux-mini-recorder span {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--lux-red);
}

.lux-privacy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  padding: 112px clamp(24px, 5vw, 78px);
  background: #10100e;
  color: var(--lux-white);
}

.lux-privacy-copy p {
  margin-left: 0;
  color: rgba(251, 250, 246, 0.62);
}

.lux-privacy-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lux-privacy-copy li {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(251, 250, 246, 0.76);
  font-size: 15px;
  font-weight: 590;
}

.lux-privacy-copy li::before {
  content: "";
  width: 16px;
  height: 9px;
  border-left: 2px solid #8ad0ba;
  border-bottom: 2px solid #8ad0ba;
  transform: rotate(-45deg) translate(2px, -2px);
}

.lux-mac-diagram {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.lux-mac-screen {
  position: relative;
  width: min(620px, 100%);
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 30px 90px rgba(0, 0, 0, 0.3);
}

.lux-mac-base {
  width: min(560px, 86%);
  height: 14px;
  margin-top: -6px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.diagram-item {
  position: absolute;
  width: 102px;
  height: 102px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.diagram-audio {
  left: 9%;
  top: 108px;
}

.diagram-text {
  left: 32%;
  top: 88px;
}

.diagram-note {
  right: 30%;
  top: 122px;
}

.diagram-insight {
  right: 8%;
  top: 78px;
}

.diagram-audio::before,
.diagram-text::before,
.diagram-note::before,
.diagram-insight::before {
  content: "";
  position: absolute;
  inset: 31px;
  border-radius: 10px;
}

.diagram-audio::before {
  background: repeating-linear-gradient(90deg, var(--lux-red) 0 3px, transparent 3px 8px);
}

.diagram-text::before {
  background: linear-gradient(rgba(255,255,255,.62) 0 0) top / 100% 5px no-repeat,
    linear-gradient(rgba(255,255,255,.42) 0 0) center / 82% 5px no-repeat,
    linear-gradient(rgba(255,255,255,.28) 0 0) bottom / 62% 5px no-repeat;
}

.diagram-note::before {
  border: 2px solid rgba(255,255,255,.62);
  border-top-width: 12px;
}

.diagram-insight::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.26), rgba(255,255,255,.26)) 0 100% / 18% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,.42), rgba(255,255,255,.42)) 50% 100% / 18% 58% no-repeat,
    linear-gradient(90deg, rgba(138,208,186,.86), rgba(138,208,186,.86)) 100% 100% / 18% 82% no-repeat;
}

.lux-cloud-line {
  display: none;
}

.lux-pricing {
  padding: 104px clamp(24px, 5vw, 78px) 88px;
}

.lux-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.lux-price-row article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 68px rgba(17, 17, 15, 0.08);
}

.lux-price-row h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1;
}

.lux-price-row p {
  margin: 0;
  color: rgba(17, 17, 15, 0.52);
  font-size: 14px;
  font-weight: 580;
}

.lux-price-row strong {
  justify-self: end;
  color: var(--lux-ink);
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.lux-price-row a {
  grid-column: 1 / -1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lux-ink);
  color: #fff;
  font-size: 15px;
  font-weight: 680;
}

.lux-price-row article + article a {
  background: var(--lux-red);
}

.lux-includes {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(17, 17, 15, 0.52);
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.lux-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 0 clamp(24px, 5vw, 78px) 34px;
  padding: 46px 52px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 59, 48, 0.16), transparent 30%),
    #10100e;
  color: var(--lux-white);
}

.lux-close h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.lux-close p {
  margin-left: 0;
  color: rgba(251, 250, 246, 0.62);
}

.lux-footer {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  flex-wrap: wrap;
  padding: 28px 24px 42px;
  background: var(--lux-white);
  color: rgba(17, 17, 15, 0.5);
  font-size: 13px;
  font-weight: 560;
}

@media (prefers-reduced-motion: no-preference) {
  .lux-record-light {
    animation: lux-record-pulse 1.8s ease-in-out infinite;
  }

  .lux-caret,
  .lux-compose-cursor {
    animation: lux-caret 1.1s step-end infinite;
  }
}

@keyframes lux-record-pulse {
  0%, 100% {
    box-shadow:
      inset 0 0 0 12px rgba(255, 255, 255, 0.18),
      0 0 0 10px rgba(255, 59, 48, 0.12),
      0 16px 30px rgba(255, 59, 48, 0.26);
  }
  50% {
    box-shadow:
      inset 0 0 0 12px rgba(255, 255, 255, 0.18),
      0 0 0 18px rgba(255, 59, 48, 0.05),
      0 20px 38px rgba(255, 59, 48, 0.34);
  }
}

@keyframes lux-caret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.2;
  }
}

@media (max-width: 980px) {
  .lux-header {
    min-height: 66px;
  }

  .lux-nav a:not(.lux-nav-cta) {
    display: none;
  }

  .lux-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
    padding-bottom: 70px;
    background:
      radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.16), transparent 34%),
      linear-gradient(180deg, #070706 0%, #11100e 68%, #f7f4ee 68.2%, #fbfaf6 100%);
  }

  .lux-stage {
    min-height: 520px;
  }

  .lux-plane {
    right: 50%;
    width: min(720px, 96vw);
    transform: translateX(50%) rotate(-5deg);
  }

  .lux-ghost {
    right: 50%;
    transform: translateX(50%) rotate(-7deg);
  }

  .lux-local-note {
    right: 8%;
  }

  .lux-rail,
  .lux-price-row,
  .lux-privacy {
    grid-template-columns: 1fr;
  }

  .lux-rail::before {
    display: none;
  }

  .lux-compose {
    grid-template-columns: 1fr;
  }

  .lux-compose-sidebar {
    display: none;
  }

  .lux-privacy {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .lux-close {
    align-items: flex-start;
    flex-direction: column;
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  .lux-header {
    padding: 0 16px;
  }

  .lux-brand {
    font-size: 18px;
  }

  .lux-nav {
    gap: 10px;
  }

  .lux-nav-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .lux-hero {
    display: block;
    width: 100vw;
    max-width: 100vw;
    padding-left: 18px;
    padding-right: 18px;
  }

  .lux-hero-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .lux-hero-copy h1 {
    max-width: 7.4em;
    font-size: clamp(43px, 11.6vw, 54px);
    line-height: 0.96;
  }

  .lux-hero-copy p {
    width: calc(100vw - 36px);
    max-width: 100%;
    font-size: 18px;
  }

  .lux-actions {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .lux-button {
    max-width: calc(100vw - 36px);
  }

  .lux-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lux-button {
    width: 100%;
  }

  .lux-stage {
    min-height: 430px;
  }

  .lux-plane {
    top: 120px;
    height: 336px;
    border-radius: 28px;
  }

  .lux-document {
    padding: 46px 34px;
  }

  .lux-recorder {
    left: 30px;
    right: 30px;
    bottom: 34px;
    gap: 10px;
  }

  .lux-wave i:nth-child(n+7),
  .lux-listening {
    display: none;
  }

  .lux-local-note {
    display: none;
  }

  .lux-flow,
  .lux-work,
  .lux-pricing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lux-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .lux-tabs span {
    min-width: 96px;
  }

  .lux-compose-editor {
    padding: 44px 28px;
  }

  .lux-mini-recorder {
    right: 22px;
    bottom: 24px;
  }

  .lux-privacy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .lux-privacy-copy ul {
    grid-template-columns: 1fr;
  }

  .lux-mac-screen {
    height: 270px;
  }

  .diagram-item {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .lux-price-row article {
    min-height: 190px;
    padding: 24px;
  }

  .lux-close {
    margin-left: 18px;
    margin-right: 18px;
  }
}

/* Direct-purchase technical landing page. */
.spiel-grid-page {
  --grid-paper: #f6f1e8;
  --grid-paper-2: #fffaf1;
  --grid-ink: #ff4a1f;
  --grid-ink-strong: #f24419;
  --grid-line: rgba(255, 74, 31, 0.54);
  --grid-line-soft: rgba(255, 74, 31, 0.24);
  --grid-line-faint: rgba(255, 74, 31, 0.14);
  --grid-dark: #311207;
  --grid-green: #15b866;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 74, 31, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 74, 31, 0.06) 0 1px, transparent 1px 100%),
    var(--grid-paper);
  background-size: 16px 100%, 100% 16px, auto;
  color: var(--grid-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  line-height: 1.35;
}

.spiel-grid-page *,
.spiel-grid-page *::before,
.spiel-grid-page *::after {
  box-sizing: border-box;
}

.spiel-grid-page::before {
  content: "";
  position: fixed;
  z-index: 40;
  top: 0;
  bottom: 0;
  left: 0;
  width: 24px;
  border-right: 1px solid var(--grid-line);
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, var(--grid-line) 7px 8px),
    repeating-linear-gradient(90deg, transparent 0 5px, var(--grid-line-soft) 5px 6px),
    var(--grid-paper);
}

.spiel-grid-page::after {
  content: "";
  position: fixed;
  z-index: 41;
  top: 0;
  left: 24px;
  right: 0;
  height: 12px;
  border-bottom: 1px solid var(--grid-line);
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, var(--grid-line-soft) 0 1px, transparent 1px 10px),
    var(--grid-paper);
}

.spiel-grid-page a {
  color: inherit;
}

.spiel-grid-page .skip-link {
  z-index: 90;
}

.grid-nav,
.grid-hero,
.grid-strip,
.grid-section,
.grid-final,
.grid-footer {
  margin-left: 24px;
}

.grid-nav {
  position: relative;
  z-index: 30;
  top: auto;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 58px;
  border-bottom: 1px solid var(--grid-line);
  background: rgba(246, 241, 232, 0.97);
}

.grid-brand,
.grid-nav-links a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-left: 1px solid var(--grid-line);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.grid-brand {
  gap: 12px;
  padding: 0 24px;
  border-left: 0;
  border-right: 1px solid var(--grid-line);
}

.grid-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
}

.grid-mark span {
  position: absolute;
  left: 7px;
  right: 7px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.grid-mark span:first-child {
  top: 10px;
  transform: rotate(35deg);
}

.grid-mark span:last-child {
  top: 18px;
  transform: rotate(-35deg);
}

.grid-nav-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(108px, 1fr));
}

.grid-nav-links a {
  justify-content: center;
  padding: 0 16px;
}

.grid-nav-links a:hover,
.grid-nav-links a:focus-visible {
  background: var(--grid-ink);
  color: var(--grid-paper-2);
  outline: 0;
}

.grid-nav-cta {
  background: var(--grid-ink);
  color: var(--grid-paper-2) !important;
}

.grid-hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-bottom: 1px solid var(--grid-line);
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, var(--grid-line-faint) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, var(--grid-line-faint) 31px 32px),
    var(--grid-paper);
}

.grid-contour {
  position: absolute;
  inset: 42px -12% auto auto;
  width: 96%;
  height: 82%;
  opacity: 0.62;
  fill: none;
  pointer-events: none;
}

.grid-contour path {
  stroke: var(--grid-ink);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.grid-hero-topline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 58px;
  border-bottom: 1px solid var(--grid-line);
  background: rgba(246, 241, 232, 0.86);
}

.grid-hero-topline span {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid var(--grid-line);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.grid-hero-topline span:last-child {
  border-right: 0;
}

.grid-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 0.88fr) minmax(500px, 1.12fr);
  min-height: min(720px, calc(100svh - 190px));
}

.grid-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(38px, 4vw, 58px) clamp(32px, 4.4vw, 72px);
  border-right: 1px solid var(--grid-line);
}

.grid-alert {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin: 0 0 20px;
  padding: 13px 18px;
  border: 1px solid var(--grid-line);
  background: rgba(255, 250, 241, 0.76);
  color: var(--grid-dark);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.grid-alert span {
  width: 7px;
  height: 7px;
  background: var(--grid-green);
}

.grid-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--grid-ink-strong);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(62px, 7.2vw, 116px);
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: 0;
}

.grid-hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--grid-dark);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.22;
}

.grid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
}

.grid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 168px;
  padding: 0 22px;
  border: 1px solid var(--grid-ink);
  background: var(--grid-paper);
  color: var(--grid-ink);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.grid-button + .grid-button {
  margin-left: -1px;
}

.grid-button-primary {
  background: var(--grid-ink);
  color: var(--grid-paper-2) !important;
}

.grid-button:hover,
.grid-button:focus-visible {
  background: var(--grid-dark);
  color: var(--grid-paper-2) !important;
  outline: 0;
}

.grid-product-schematic {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: clamp(32px, 5vw, 72px);
  background:
    repeating-linear-gradient(-15deg, transparent 0 13px, rgba(255, 74, 31, 0.22) 13px 14px),
    rgba(246, 241, 232, 0.34);
}

.grid-product-schematic::before {
  content: "";
  position: absolute;
  inset: clamp(30px, 5vw, 72px);
  border: 1px solid var(--grid-line);
  background:
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(255, 74, 31, 0.16) 27px 28px),
    repeating-linear-gradient(90deg, transparent 0 27px, rgba(255, 74, 31, 0.16) 27px 28px),
    rgba(255, 250, 241, 0.4);
}

.schematic-window {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--grid-ink);
  background: rgba(255, 250, 241, 0.9);
  color: var(--grid-ink);
}

.schematic-title {
  min-height: 36px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--grid-line);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.schematic-source {
  top: 17%;
  left: 10%;
  width: 235px;
  min-height: 190px;
}

.schematic-wave {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 82px;
  padding: 0 24px;
}

.schematic-wave i {
  display: block;
  width: 9px;
  min-height: 16px;
  border: 1px solid var(--grid-ink);
  background: var(--grid-ink);
}

.schematic-wave i:nth-child(2) {
  height: 34px;
}

.schematic-wave i:nth-child(3) {
  height: 54px;
}

.schematic-wave i:nth-child(4) {
  height: 27px;
}

.schematic-wave i:nth-child(5) {
  height: 64px;
}

.schematic-wave i:nth-child(6) {
  height: 40px;
}

.schematic-wave i:nth-child(7) {
  height: 22px;
}

.schematic-source kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  margin-left: 24px;
  border: 1px solid var(--grid-ink);
  background: transparent;
  color: var(--grid-ink);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
}

.schematic-route {
  position: absolute;
  z-index: 2;
  left: 31%;
  top: 43%;
  width: 34%;
  height: 1px;
  background: var(--grid-ink);
  transform: rotate(-8deg);
  transform-origin: left center;
}

.schematic-route::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--grid-ink);
  border-right: 1px solid var(--grid-ink);
  transform: rotate(45deg);
}

.schematic-destination {
  top: 29%;
  right: 8%;
  width: min(450px, 45%);
  min-height: 300px;
  padding-bottom: 28px;
}

.schematic-destination span,
.schematic-local span {
  display: block;
  height: 12px;
  margin: 24px 28px 0;
  border: 1px solid var(--grid-line);
  background: rgba(255, 74, 31, 0.12);
}

.schematic-destination span:nth-of-type(1) {
  width: 68%;
}

.schematic-destination span:nth-of-type(2) {
  width: 88%;
}

.schematic-destination span:nth-of-type(3) {
  width: 52%;
}

.schematic-destination p {
  margin: 34px 28px 0;
  color: var(--grid-dark);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 820;
  line-height: 1.05;
}

.schematic-local {
  bottom: 14%;
  left: 18%;
  width: 280px;
  min-height: 150px;
}

.schematic-local span:nth-of-type(1) {
  width: 72%;
}

.schematic-local span:nth-of-type(2) {
  width: 48%;
}

.grid-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--grid-line);
  background:
    repeating-linear-gradient(-45deg, rgba(255, 74, 31, 0.14) 0 1px, transparent 1px 8px),
    var(--grid-paper);
}

.grid-strip span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 24px;
  border-right: 1px solid var(--grid-line);
  background: rgba(246, 241, 232, 0.82);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.grid-strip span:last-child {
  border-right: 0;
}

.grid-section {
  border-bottom: 1px solid var(--grid-line);
  background: var(--grid-paper);
}

.grid-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 30%) minmax(0, 1fr);
  border-bottom: 1px solid var(--grid-line);
}

.grid-section-head p,
.grid-section-head h2 {
  margin: 0;
}

.grid-section-head p {
  padding: 34px 28px;
  border-right: 1px solid var(--grid-line);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.grid-section-head h2 {
  max-width: 980px;
  padding: 30px 34px 44px;
  color: var(--grid-ink-strong);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 830;
  line-height: 0.98;
  letter-spacing: 0;
}

.grid-cell-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-cell-matrix article {
  position: relative;
  min-height: 292px;
  padding: 26px 28px 30px;
  border-right: 1px solid var(--grid-line);
  border-bottom: 1px solid var(--grid-line);
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), transparent),
    var(--grid-paper);
}

.grid-cell-matrix article:nth-child(3n) {
  border-right: 0;
}

.grid-cell-matrix article:nth-last-child(-n+3) {
  border-bottom: 0;
}

.grid-cell-matrix article::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--grid-line);
  background:
    linear-gradient(45deg, transparent 47%, var(--grid-ink) 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, var(--grid-line) 48% 52%, transparent 53%);
}

.grid-cell-matrix span,
.grid-price-cells article > div > p,
.grid-included > p,
.grid-proof-table span,
.grid-final p {
  display: block;
  margin: 0;
  color: var(--grid-ink);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}

.grid-cell-matrix h3 {
  max-width: 250px;
  margin: 92px 0 0;
  color: var(--grid-ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 830;
  line-height: 1;
}

.grid-cell-matrix p {
  max-width: 340px;
  margin: 96px 0 0;
  color: var(--grid-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.grid-privacy-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
}

.grid-privacy-map {
  position: relative;
  min-height: 520px;
  border-right: 1px solid var(--grid-line);
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, var(--grid-line-faint) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, var(--grid-line-faint) 23px 24px),
    var(--grid-paper);
}

.grid-privacy-map::before,
.grid-privacy-map::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  background: var(--grid-line);
}

.grid-privacy-map::after {
  transform: rotate(90deg);
}

.map-core,
.map-chip {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grid-ink);
  background: var(--grid-paper-2);
  text-transform: uppercase;
  font-weight: 850;
}

.map-core {
  left: 50%;
  top: 50%;
  width: 172px;
  height: 172px;
  transform: translate(-50%, -50%);
  color: var(--grid-paper-2);
  background: var(--grid-ink);
  font-size: 13px;
}

.map-chip {
  width: 92px;
  height: 62px;
  font-size: 11px;
}

.map-mic {
  left: 18%;
  top: 20%;
}

.map-text {
  right: 16%;
  top: 28%;
}

.map-note {
  left: 24%;
  bottom: 18%;
}

.grid-proof-table {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.grid-proof-table article {
  display: grid;
  grid-template-columns: minmax(140px, 28%) 1fr;
  min-height: 172px;
  border-bottom: 1px solid var(--grid-line);
}

.grid-proof-table article:last-child {
  border-bottom: 0;
}

.grid-proof-table span {
  padding: 26px;
  border-right: 1px solid var(--grid-line);
}

.grid-proof-table p {
  max-width: 620px;
  margin: 0;
  padding: 25px 30px;
  color: var(--grid-dark);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 780;
  line-height: 1.06;
}

.grid-price-cells {
  display: grid;
  grid-template-columns: 1fr 1fr 1.12fr;
}

.grid-price-cells article {
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid var(--grid-line);
}

.grid-price-cells article:last-child {
  border-right: 0;
}

.grid-price-cells h3 {
  margin: 48px 0 6px;
  color: var(--grid-ink-strong);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(72px, 8vw, 126px);
  font-weight: 830;
  line-height: 0.85;
  letter-spacing: 0;
}

.grid-price-cells article > div > span {
  color: var(--grid-dark);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.grid-price-cells a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 72px;
  padding: 0 18px;
  border: 1px solid var(--grid-ink);
  background: var(--grid-ink);
  color: var(--grid-paper-2);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
}

.grid-price-cells a:hover,
.grid-price-cells a:focus-visible {
  background: var(--grid-dark);
  outline: 0;
}

.grid-included {
  background:
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(255, 74, 31, 0.18) 12px 13px),
    var(--grid-paper);
}

.grid-included ul {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(246, 241, 232, 0.88);
  border-top: 1px solid var(--grid-line);
}

.grid-included li {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--grid-line);
  color: var(--grid-dark);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.grid-included li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border: 1px solid var(--grid-ink);
  background: var(--grid-ink);
}

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

.grid-faq-list details:last-child {
  border-bottom: 0;
}

.grid-faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 76px 0 28px;
  color: var(--grid-dark);
  cursor: pointer;
  list-style: none;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 760;
}

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

.grid-faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--grid-ink);
  border-right: 1px solid var(--grid-ink);
  transform: translateY(-50%) rotate(135deg);
}

.grid-faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(-45deg);
}

.grid-faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 28px 28px;
  color: var(--grid-dark);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.grid-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 34px 28px;
  border-bottom: 1px solid var(--grid-line);
  background:
    repeating-linear-gradient(-45deg, rgba(255, 74, 31, 0.16) 0 1px, transparent 1px 9px),
    var(--grid-paper);
}

.grid-final > div:first-child {
  padding: 34px;
  border: 1px solid var(--grid-line);
  background: rgba(246, 241, 232, 0.9);
}

.grid-final h2 {
  max-width: 840px;
  margin: 16px 0 0;
  color: var(--grid-ink-strong);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(46px, 6.4vw, 102px);
  font-weight: 830;
  line-height: 0.92;
  letter-spacing: 0;
}

.grid-footer {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--grid-line);
}

.grid-footer a {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border-right: 1px solid var(--grid-line);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.grid-footer a:last-child {
  border-right: 0;
}

.grid-footer a:hover,
.grid-footer a:focus-visible {
  background: var(--grid-ink);
  color: var(--grid-paper-2);
  outline: 0;
}

@media (max-width: 1100px) {
  .grid-nav {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .grid-nav-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-nav-links a:nth-child(2),
  .grid-nav-links a:nth-child(4),
  .grid-nav-links a:nth-child(5) {
    display: none;
  }

  .grid-hero-layout,
  .grid-privacy-layout,
  .grid-price-cells {
    grid-template-columns: 1fr;
  }

  .grid-hero-layout {
    min-height: auto;
  }

  .grid-hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--grid-line);
  }

  .grid-product-schematic {
    min-height: 600px;
  }

  .grid-privacy-map {
    border-right: 0;
    border-bottom: 1px solid var(--grid-line);
  }

  .grid-price-cells article,
  .grid-price-cells article:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--grid-line);
  }

  .grid-price-cells article:last-child {
    border-bottom: 0;
  }

  .grid-cell-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-cell-matrix article:nth-child(3n) {
    border-right: 1px solid var(--grid-line);
  }

  .grid-cell-matrix article:nth-child(2n) {
    border-right: 0;
  }

  .grid-cell-matrix article:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--grid-line);
  }

  .grid-cell-matrix article:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .spiel-grid-page::before {
    width: 14px;
  }

  .spiel-grid-page::after {
    left: 14px;
  }

  .grid-nav,
  .grid-hero,
  .grid-strip,
  .grid-section,
  .grid-final,
  .grid-footer {
    margin-left: 14px;
  }

  .grid-nav {
    grid-template-columns: 1fr auto;
  }

  .grid-brand {
    padding: 0 16px;
  }

  .grid-nav-links {
    grid-template-columns: 1fr;
  }

  .grid-nav-links a {
    display: none;
    min-width: 118px;
  }

  .grid-nav-links .grid-nav-cta {
    display: flex;
  }

  .grid-hero-topline,
  .grid-strip,
  .grid-section-head,
  .grid-cell-matrix,
  .grid-proof-table,
  .grid-final,
  .grid-footer {
    grid-template-columns: 1fr;
  }

  .grid-hero-topline span,
  .grid-strip span,
  .grid-section-head p,
  .grid-proof-table span,
  .grid-footer a {
    border-right: 0;
    border-bottom: 1px solid var(--grid-line);
  }

  .grid-hero-copy {
    padding: 42px 20px 48px;
  }

  .grid-alert {
    max-width: 100%;
    padding: 11px 12px;
    font-size: 10px;
  }

  .grid-hero h1 {
    max-width: 355px;
    font-size: clamp(48px, 16vw, 72px);
    line-height: 0.94;
  }

  .grid-hero-lede {
    font-size: 18px;
  }

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

  .grid-button + .grid-button {
    margin-top: -1px;
    margin-left: 0;
  }

  .grid-product-schematic {
    display: grid;
    gap: 0;
    min-height: auto;
    padding: 20px;
  }

  .grid-product-schematic::before,
  .schematic-route {
    display: none;
  }

  .schematic-window {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 150px;
    margin-top: -1px;
  }

  .schematic-destination p {
    font-size: 24px;
  }

  .grid-section-head h2 {
    padding: 26px 20px 34px;
    font-size: clamp(34px, 11vw, 48px);
  }

  .grid-section-head p {
    padding: 18px 20px;
  }

  .grid-cell-matrix article {
    min-height: 250px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--grid-line) !important;
    padding: 22px 20px;
  }

  .grid-cell-matrix article:last-child {
    border-bottom: 0 !important;
  }

  .grid-cell-matrix h3 {
    margin-top: 74px;
  }

  .grid-cell-matrix p {
    margin-top: 54px;
  }

  .grid-privacy-map {
    min-height: 390px;
  }

  .map-core {
    width: 132px;
    height: 132px;
  }

  .map-chip {
    width: 78px;
    height: 50px;
  }

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

  .grid-proof-table span {
    padding: 18px 20px;
  }

  .grid-proof-table p {
    padding: 22px 20px;
    font-size: 24px;
  }

  .grid-price-cells article {
    min-height: auto;
    padding: 22px 20px 30px;
  }

  .grid-price-cells h3 {
    font-size: 78px;
  }

  .grid-price-cells a {
    width: 100%;
    margin-top: 42px;
  }

  .grid-faq-list summary {
    min-height: 68px;
    padding-left: 20px;
    font-size: 19px;
  }

  .grid-faq-list p {
    padding-left: 20px;
  }

  .grid-final {
    padding: 20px;
  }

  .grid-final > div:first-child {
    padding: 22px 20px;
  }

  .grid-final h2 {
    font-size: clamp(40px, 14vw, 58px);
  }
}
