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

:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-2: #eef4f1;
  --ink: #17201c;
  --muted: #64716b;
  --line: rgba(23, 32, 28, 0.12);
  --brand: #176d55;
  --brand-dark: #0d4d3b;
  --brand-soft: #ddf5ec;
  --amber: #b86f18;
  --mynah-blue: #1379d5;
  --mynah-blue-dark: #07172e;
  --mynah-blue-soft: #dceeff;
  --mynah-gold: #f2b705;
  --mynah-gold-soft: #fff2bc;
  --mynah-feather: #f6fbff;
  --shadow: 0 24px 70px rgba(20, 42, 34, 0.12);
  --radius: 22px;
}

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 6%, rgba(19, 121, 213, 0.16), transparent 28rem),
    radial-gradient(circle at 14% 38%, rgba(242, 183, 5, 0.13), transparent 30rem),
    radial-gradient(circle at top left, rgba(37, 148, 112, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 44%, #f2f6f4 100%);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  pointer-events: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-shell {
  pointer-events: auto;
  margin: 1.25rem auto;
  width: max-content;
  min-width: 600px;
  max-width: min(90%, calc(100% - 32px));
  min-height: 60px;
  height: 60px;
  padding: 0 1.25rem 0 1rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%) contrast(100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) contrast(100%);
  border: 1px solid rgba(19, 121, 213, 0.12);
  border-radius: 999px;
  box-shadow: 
    0 16px 36px rgba(7, 23, 46, 0.08),
    0 4px 12px rgba(7, 23, 46, 0.02),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: 0 4px 10px rgba(7, 23, 46, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, color 0.25s ease;
  font-weight: 600;
}

.nav-links a:hover {
  transform: scale(1.08) translateY(-1px);
  background: rgba(19, 121, 213, 0.06);
  color: var(--mynah-blue);
}

.nav-links a:active {
  transform: scale(0.96) translateY(0);
}

.nav-icon {
  width: 15px;
  height: 15px;
  opacity: 0.7;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover .nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

.nav-links a.active-nav-link {
  color: var(--mynah-blue);
  background: rgba(19, 121, 213, 0.08);
  font-weight: 700;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
  gap: 0.35rem;
  color: white;
  background: linear-gradient(135deg, var(--mynah-blue-dark), #102849);
  box-shadow: 0 8px 20px rgba(7, 23, 46, 0.15);
}

.nav-icon-download {
  width: 14px;
  height: 14px;
}

.button {
  padding: 0.95rem 1.25rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 183, 5, 0.32), transparent 32%),
    linear-gradient(135deg, var(--mynah-blue), var(--mynah-blue-dark));
  box-shadow: 0 16px 34px rgba(19, 121, 213, 0.25);
}

.button-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--mynah-blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1 {
  font-size: clamp(3.5rem, 8vw, 7.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.section-heading p,
.split-section p,
.pricing-card p,
.feature-grid p,
.step-card p,
.faq-grid p,
.site-footer p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 720px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions,
.trust-row,
.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.trust-row li {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(19, 121, 213, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 251, 255, 0.7)),
    rgba(255, 255, 255, 0.68);
  border-radius: 999px;
}

.hero-card,
.dictation-demo,
.workflow-card,
.mac-preview-card,
.privacy-map,
.proof-grid article,
.pricing-card,
.step-card,
.feature-grid article,
.comparison-table,
.faq-grid details,
.facts-list {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 98% 0%, rgba(19, 121, 213, 0.11), transparent 12rem),
    radial-gradient(circle at 0% 100%, rgba(242, 183, 5, 0.10), transparent 14rem),
    rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.dictation-demo::before,
.workflow-card::before,
.privacy-map::before,
.pricing-card::before,
.step-card::before,
.feature-grid article::before,
.proof-grid article::before,
.faq-grid details::before,
.facts-list::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(19, 121, 213, 0), rgba(19, 121, 213, 0.48), rgba(242, 183, 5, 0.42), rgba(19, 121, 213, 0));
  opacity: 0.42;
}

.hero-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.3rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(19, 121, 213, 0.18), transparent 22rem),
    radial-gradient(circle at 70% 78%, rgba(242, 183, 5, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.72);
}

.hero-icon {
  width: min(250px, 56vw);
  border-radius: 30%;
  box-shadow:
    0 30px 80px rgba(7, 23, 46, 0.18),
    0 0 0 1px rgba(242, 183, 5, 0.2);
}

.signal-card,
.mini-flow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(247, 250, 248, 0.86);
  border-radius: 999px;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c993;
  box-shadow: 0 0 0 8px rgba(34, 201, 147, 0.14);
}

.mini-flow {
  flex-wrap: wrap;
  justify-content: center;
}

.mini-flow span {
  padding: 0.42rem 0.7rem;
  background: var(--mynah-blue-soft);
  border-radius: 999px;
  color: var(--mynah-blue-dark);
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-showcase h1 {
  font-size: clamp(3rem, 6.4vw, 6.6rem);
}

.hero-product-shot {
  position: relative;
  z-index: 0;
  justify-self: center;
  width: min(100%, 520px);
  transform: translateY(0);
  animation: hero-window-float 7s ease-in-out infinite;
}

.hero-product-shot::before {
  content: "";
  position: absolute;
  inset: -1.2rem;
  z-index: -1;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(19, 121, 213, 0.20), transparent 48%),
    radial-gradient(circle at 70% 78%, rgba(242, 183, 5, 0.18), transparent 42%);
  filter: blur(6px);
}

.hero-product-shot img {
  max-height: min(78vh, 820px);
}

.hero-product-shot figcaption {
  color: var(--mynah-blue-dark);
}

.dictation-demo {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 10%, rgba(19, 121, 213, 0.16), transparent 18rem),
    radial-gradient(circle at 12% 88%, rgba(242, 183, 5, 0.11), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.82));
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.demo-titlebar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #ef6351;
}

.demo-titlebar span:nth-child(2) {
  background: #f7b955;
}

.demo-titlebar span:nth-child(3) {
  background: #45c47b;
  margin-right: 0.55rem;
}

.demo-stage {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.demo-input,
.demo-output,
.workflow-card > div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  padding: 1.2rem;
}

.demo-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--mynah-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-input p,
.demo-output p,
.workflow-card p {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: -0.025em;
}

.demo-input p {
  color: var(--muted);
}

.demo-output {
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(19, 121, 213, 0.09);
}

.typing-cursor {
  display: inline-block;
  width: 0.55rem;
  height: 1.25rem;
  margin-left: 0.2rem;
  border-radius: 999px;
  background: var(--mynah-blue);
  animation: cursor-blink 1s steps(2, start) infinite;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  height: 2.4rem;
  margin-top: 1rem;
}

.waveform span {
  width: 0.48rem;
  height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mynah-gold), var(--mynah-blue));
  animation: wave-pulse 1.15s ease-in-out infinite;
}

.waveform span:nth-child(2) { animation-delay: 80ms; }
.waveform span:nth-child(3) { animation-delay: 160ms; }
.waveform span:nth-child(4) { animation-delay: 240ms; }
.waveform span:nth-child(5) { animation-delay: 320ms; }
.waveform span:nth-child(6) { animation-delay: 400ms; }
.waveform span:nth-child(7) { animation-delay: 480ms; }

.demo-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1.6rem 1.5rem;
}

.demo-flow span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(19, 121, 213, 0.16);
  background:
    linear-gradient(135deg, rgba(220, 238, 255, 0.76), rgba(255, 242, 188, 0.42));
  border-radius: 999px;
  color: var(--mynah-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.workflow-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.72rem 1rem;
}

.workflow-tab.active,
.workflow-tab:hover {
  background:
    radial-gradient(circle at 85% 18%, rgba(242, 183, 5, 0.28), transparent 40%),
    linear-gradient(135deg, var(--mynah-blue-dark), #102a4f);
  color: #fff;
  border-color: rgba(19, 121, 213, 0.24);
  box-shadow: 0 10px 24px rgba(19, 121, 213, 0.16);
}

.workflow-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1rem;
}

.privacy-map {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.privacy-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.privacy-path i {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: rgba(100, 113, 107, 0.2);
}

.privacy-path strong {
  width: 100%;
  letter-spacing: -0.03em;
}

.privacy-path span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.84rem;
}

.privacy-path-cloud span {
  background: rgba(100, 113, 107, 0.11);
  color: var(--muted);
}

.privacy-path-local {
  border-color: rgba(23, 109, 85, 0.28);
  box-shadow: inset 0 0 0 1px rgba(23, 109, 85, 0.08);
}

.privacy-path-local span {
  background: var(--brand-soft);
  color: var(--brand-dark);
  animation: route-pulse 3.6s ease-in-out infinite;
}

.privacy-path-local span:nth-of-type(2) { animation-delay: 260ms; }
.privacy-path-local span:nth-of-type(3) { animation-delay: 520ms; }
.privacy-path-local span:nth-of-type(4) { animation-delay: 780ms; }

.privacy-path-local i {
  position: relative;
  overflow: hidden;
  background: rgba(23, 109, 85, 0.14);
}

.privacy-path-local i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: translateX(-110%);
  animation: route-line 3.6s ease-in-out infinite;
}

.privacy-path-local i:nth-of-type(2)::after { animation-delay: 260ms; }
.privacy-path-local i:nth-of-type(3)::after { animation-delay: 520ms; }

.mac-product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.mac-preview-card {
  overflow: hidden;
}

.settings-preview {
  display: grid;
  grid-template-columns: 13rem 1fr;
  min-height: 330px;
}

.settings-preview aside {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: rgba(238, 244, 241, 0.66);
}

.settings-preview aside span,
.settings-preview main div {
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.settings-preview aside span.active {
  background: var(--surface);
  color: var(--brand-dark);
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(20, 42, 34, 0.08);
}

.settings-preview main {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
}

.settings-preview main div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.settings-preview main span {
  color: var(--muted);
  font-weight: 800;
}

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

.screenshot-section {
  padding-top: 72px;
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
  align-items: center;
}

.screenshot-showcase-offset .app-shot-secondary {
  transform: translateY(3rem);
}

.app-shot {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid rgba(19, 121, 213, 0.14);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 50% 8%, rgba(19, 121, 213, 0.16), transparent 22rem),
    radial-gradient(circle at 20% 88%, rgba(242, 183, 5, 0.11), transparent 18rem),
    rgba(255, 255, 255, 0.76);
  box-shadow:
    0 28px 80px rgba(7, 23, 46, 0.13),
    0 8px 34px rgba(19, 121, 213, 0.08);
}

.app-shot img {
  width: 100%;
  border-radius: 22px;
  object-fit: contain;
  background: #050505;
}

.app-shot figcaption {
  padding: 0.8rem 0.25rem 0.15rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.app-shot-primary img {
  max-height: 720px;
}

.app-shot-secondary img,
.settings-shot img,
.model-proof .app-shot img {
  max-height: 860px;
}

.settings-shot {
  align-self: start;
}

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

.model-proof {
  align-items: center;
}

.themes-section {
  overflow: hidden;
}

.theme-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.theme-shot:nth-child(2) {
  transform: translateY(2rem);
}

.theme-shot:nth-child(3) {
  transform: translateY(4rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.proof-grid article {
  padding: 1.25rem;
}

.proof-grid span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
}

@keyframes wave-pulse {
  0%, 100% { height: 0.75rem; opacity: 0.58; }
  50% { height: 2.15rem; opacity: 1; }
}

@keyframes cursor-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

@keyframes hero-window-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes action-sweep {
  0%, 30% { transform: translateX(-45%); opacity: 0; }
  50% { opacity: 1; }
  80%, 100% { transform: translateX(45%); opacity: 0; }
}

@keyframes key-press {
  0%, 55%, 100% { transform: translateY(0); box-shadow: 0 16px 34px rgba(20, 42, 34, 0.09); }
  65%, 78% { transform: translateY(5px); box-shadow: 0 7px 16px rgba(20, 42, 34, 0.14); }
}

@keyframes mini-wave {
  0%, 100% { height: 0.75rem; opacity: 0.55; }
  50% { height: 2.3rem; opacity: 1; }
}

@keyframes paste-cursor {
  0%, 45% { opacity: 0.25; transform: translateX(-0.8rem); }
  55% { opacity: 1; transform: translateX(0); box-shadow: 0 0 0 10px rgba(19, 121, 213, 0.12); }
  100% { opacity: 0.8; transform: translateX(0); box-shadow: 0 0 0 0 rgba(19, 121, 213, 0); }
}

@keyframes route-pulse {
  0%, 24%, 100% { transform: translateY(0); box-shadow: none; }
  12% { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(23, 109, 85, 0.13); }
}

@keyframes route-line {
  0%, 12% { transform: translateX(-110%); }
  24%, 60% { transform: translateX(0); }
  78%, 100% { transform: translateX(110%); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.step-grid,
.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card,
.feature-grid article,
.faq-grid details {
  padding: 1.5rem;
}

.action-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.action-card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(23, 109, 85, 0.28), transparent);
  transform: translateX(-45%);
  animation: action-sweep 3.2s ease-in-out infinite;
}

.step-action-visual {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(19, 121, 213, 0.18);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 72% 24%, rgba(242, 183, 5, 0.18), transparent 38%),
    linear-gradient(180deg, #fff, rgba(220, 238, 255, 0.78));
  box-shadow: 0 16px 34px rgba(7, 23, 46, 0.10);
}

.step-action-visual > span {
  color: var(--mynah-blue-dark);
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 1.35rem;
}

.action-card-fn .step-action-visual {
  animation: key-press 2.5s ease-in-out infinite;
}

.step-wave {
  display: flex;
  gap: 0.28rem;
}

.step-wave span {
  display: block;
  width: 0.42rem;
  min-height: 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mynah-gold), var(--mynah-blue));
  animation: mini-wave 1.1s ease-in-out infinite;
}

.step-wave span:nth-child(2) { animation-delay: 100ms; }
.step-wave span:nth-child(3) { animation-delay: 200ms; }
.step-wave span:nth-child(4) { animation-delay: 300ms; }

.step-cursor span {
  width: 0.62rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--mynah-blue);
  box-shadow: 0 0 0 0 rgba(19, 121, 213, 0.18);
  animation: paste-cursor 1.8s ease-in-out infinite;
}

.step-number {
  display: inline-flex;
  color: var(--amber);
  font-weight: 900;
  margin-bottom: 1rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.facts-list {
  padding: 1rem;
}

.facts-list div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.facts-list div:last-child {
  border-bottom: 0;
}

.facts-list span {
  color: var(--muted);
  text-align: right;
}

.pricing-card {
  padding: clamp(1.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at top right, rgba(19, 121, 213, 0.20), transparent 28rem),
    radial-gradient(circle at 15% 88%, rgba(242, 183, 5, 0.13), transparent 22rem),
    rgba(255, 255, 255, 0.82);
}

.price-primary {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.8rem 0 0.6rem;
}

.price-amount {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 850;
}

.price-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lifetime-price-note {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(242, 183, 5, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 242, 188, 0.72), rgba(255, 255, 255, 0.68));
  color: var(--mynah-blue-dark);
  box-shadow: 0 10px 22px rgba(242, 183, 5, 0.11);
}

.lifetime-price-note strong {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.lifetime-price-note span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-india {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.45rem 0.85rem;
  background: rgba(37, 99, 235, 0.07);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  width: fit-content;
}

.offer-mini-strip,
.trial-countdown-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.1rem 0 1.2rem;
}

.offer-mini-strip span,
.trial-countdown-line span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 121, 213, 0.14);
  background:
    linear-gradient(135deg, rgba(220, 238, 255, 0.78), rgba(255, 242, 188, 0.42));
  color: var(--mynah-blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.offer-mini-strip span::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.48rem;
  border-radius: 999px;
  background: var(--mynah-gold);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.13);
}

.day-60-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  max-width: 760px;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(19, 121, 213, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(19, 121, 213, 0.10), transparent 12rem),
    rgba(255, 255, 255, 0.58);
}

.day-60-reasons strong {
  letter-spacing: -0.03em;
  color: var(--mynah-blue-dark);
}

.day-60-reasons span {
  color: var(--muted);
}

.trial-countdown-line {
  position: relative;
  margin-top: 1.25rem;
  padding: 0.65rem;
  border: 1px solid rgba(19, 121, 213, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
}

.trial-countdown-line span {
  position: relative;
  flex: 1 1 12rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.70);
}

.price-india-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1d4ed8;
}

.price-india-amount {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.fine-print {
  max-width: 720px;
  font-size: 0.95rem;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3.5rem 0;
}

/* ── Decision table ───────────────────────────── */
.decision-table-wrap {
  overflow-x: auto;
  margin: 2rem 0 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.decision-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 820px;
}

.decision-table th,
.decision-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.decision-table th:last-child,
.decision-table td:last-child {
  border-right: none;
}

.decision-table tr:last-child td {
  border-bottom: none;
}

.decision-table thead tr {
  background: var(--surface-2);
}

.decision-table thead th {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.decision-table tbody tr {
  transition: background 120ms ease;
}

.decision-table tbody tr:hover {
  background: rgba(23, 109, 85, 0.04);
}

.mynah-column {
  background: linear-gradient(180deg, rgba(23, 109, 85, 0.07) 0%, rgba(23, 109, 85, 0.04) 100%);
  color: var(--brand-dark);
  font-weight: 700;
  border-left: 2px solid rgba(23, 109, 85, 0.35) !important;
  border-right: 2px solid rgba(23, 109, 85, 0.35) !important;
}

.decision-table thead .mynah-column {
  background: linear-gradient(180deg, rgba(23, 109, 85, 0.15) 0%, rgba(23, 109, 85, 0.08) 100%);
  color: var(--brand);
}

/* ── Comparison legend ────────────────────────── */
.comparison-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 0.75rem 0 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.comparison-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Competitor cards ─────────────────────────── */
.competitor-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.competitor-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 8px 28px rgba(20, 42, 34, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.competitor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 42, 34, 0.12);
}

.competitor-card--mynah {
  border-color: rgba(23, 109, 85, 0.4);
  background: linear-gradient(135deg, rgba(23, 109, 85, 0.06) 0%, rgba(255,255,255,0.9) 100%);
  box-shadow: 0 8px 28px rgba(23, 109, 85, 0.12);
}

.competitor-card-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin: 0 0 0.4rem;
}

.competitor-card--mynah .competitor-card-label {
  color: var(--brand);
}

.competitor-card:not(.competitor-card--mynah) .competitor-card-label {
  color: var(--muted);
}

.competitor-card-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.competitor-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.competitor-card li {
  margin-bottom: 0.3rem;
}

/* ── Legacy comparison-table (keep for any remaining use) ── */
.comparison-table {
  overflow: hidden;
  margin: 2rem 0 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
}

.comparison-table span {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.comparison-table span:last-child { border-right: 0; }
.comparison-table [role="row"]:last-child span { border-bottom: 0; }

.table-head {
  background: var(--surface-2);
  font-weight: 850;
}

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

summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-grid p {
  margin: 1rem 0 0;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 38px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer h2 {
  font-size: 0.9rem;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
}

.site-footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 0.45rem 0;
}

.copyright {
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* ── Active Press Micro-Interactions ── */
.button:active,
.nav-cta:active,
.hamburger-btn:active,
.nav-links a:active {
  transform: scale(0.96);
  opacity: 0.9;
}

body.menu-open {
  overflow: hidden;
}

/* ── Hamburger button style ── */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  border-radius: 99px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.25s ease;
}

.nav-mobile-cta {
  display: none;
}

/* ── Capabilities & Roadmap Section ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.capability-col {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 98% 0%, rgba(19, 121, 213, 0.08), transparent 16rem),
    radial-gradient(circle at 0% 100%, rgba(242, 183, 5, 0.07), transparent 16rem),
    rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.roadmap-col {
  background:
    radial-gradient(circle at 98% 0%, rgba(23, 109, 85, 0.08), transparent 16rem),
    radial-gradient(circle at 0% 100%, rgba(19, 121, 213, 0.07), transparent 16rem),
    rgba(255, 255, 255, 0.78);
}

.capability-col::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(19, 121, 213, 0), rgba(19, 121, 213, 0.48), rgba(242, 183, 5, 0.42), rgba(19, 121, 213, 0));
  opacity: 0.42;
}

.roadmap-col::before {
  background: linear-gradient(90deg, rgba(23, 109, 85, 0), rgba(23, 109, 85, 0.48), rgba(19, 121, 213, 0.42), rgba(23, 109, 85, 0));
}

.capability-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--muted);
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.capability-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.capability-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--brand);
  font-weight: bold;
}

.roadmap-col .capability-list li::before {
  content: "✦";
  color: var(--mynah-gold);
}

.capability-list li strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 860px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .capability-col {
    padding: 1.8rem;
  }
  .hamburger-btn {
    display: flex;
  }

  .nav-shell {
    width: calc(100% - 24px);
    min-width: auto;
    margin: 0.75rem auto;
    height: 54px;
    min-height: 54px;
    padding: 0 1rem;
    gap: 1rem;
  }

  .nav-shell.mobile-menu-active {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .nav-shell.mobile-menu-active .brand,
  .nav-shell.mobile-menu-active .hamburger-btn {
    pointer-events: auto;
    position: fixed;
    z-index: 101;
  }
  
  .nav-shell.mobile-menu-active .brand {
    top: 1.25rem;
    left: 1.25rem;
  }
  
  .nav-shell.mobile-menu-active .hamburger-btn {
    top: 1.5rem;
    right: 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-shell.mobile-menu-active .nav-links {
    display: flex;
    pointer-events: auto;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(247, 250, 248, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.50rem;
    z-index: 99;
    margin: 0;
    padding: 0;
  }

  .nav-shell.mobile-menu-active .nav-links a {
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
  }

  .nav-shell.mobile-menu-active .nav-links a .nav-icon {
    width: 22px;
    height: 22px;
  }

  .nav-mobile-cta {
    display: inline-flex;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: white !important;
    padding: 0.8rem 2.5rem;
    border-radius: 999px;
    font-weight: 800;
    margin-top: 1rem;
    box-shadow: 0 12px 28px rgba(23, 109, 85, 0.2);
  }

  /* Hamburger transform when menu is active */
  .nav-shell.mobile-menu-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-shell.mobile-menu-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav-shell.mobile-menu-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero,
  .split-section,
  .workflow-card,
  .mac-product-grid,
  .screenshot-showcase,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding-top: 110px;
  }

  .hero-card {
    min-height: 420px;
  }

  .step-grid,
  .feature-grid,
  .feature-grid-compact,
  .proof-grid,
  .theme-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-showcase-offset .app-shot-secondary,
  .theme-shot:nth-child(2),
  .theme-shot:nth-child(3) {
    transform: none;
  }

  .app-shot img,
  .app-shot-primary img,
  .app-shot-secondary img,
  .settings-shot img,
  .model-proof .app-shot img {
    max-height: none;
  }

  .settings-preview {
    grid-template-columns: 1fr;
  }

  .settings-preview aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .comparison-table [role="row"] {
    min-width: 760px;
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .section,
  .site-footer {
    width: min(100% - 22px, 1160px);
  }

  .nav-shell:not(.mobile-menu-active) .nav-cta {
    display: none;
  }

  .button {
    width: 100%;
  }

  .facts-list div {
    display: block;
  }

  .facts-list span {
    display: block;
    text-align: left;
    margin-top: 0.25rem;
  }

  .offer-mini-strip span,
  .trial-countdown-line span {
    width: 100%;
    justify-content: flex-start;
  }

  .trial-countdown-line {
    border-radius: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Interactive Visual Privacy Timeline */
.privacy-timeline-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.privacy-toggle-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.privacy-toggle-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-toggle-btn:hover {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-1px);
}

.privacy-toggle-btn.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-color: rgba(23, 109, 85, 0.25);
  box-shadow: 0 4px 12px rgba(23, 109, 85, 0.1);
}

.privacy-path.hidden {
  display: none !important;
}

.path-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0.5rem;
  position: relative;
}

.path-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.step-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.path-step span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.path-connector {
  flex-grow: 1;
  height: 3px;
  background: var(--line);
  margin: 0 -0.25rem;
  position: relative;
  top: -14px;
  z-index: 1;
}

.secure-step .step-dot {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.alert-step .step-dot {
  border-color: var(--amber);
  background: #fff8eb;
}

.active-connector {
  background: linear-gradient(90deg, var(--brand-soft), var(--brand), var(--brand-soft));
  position: relative;
  overflow: hidden;
}

.active-connector::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: pulse-flow 1.8s infinite linear;
}

@keyframes pulse-flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@media (max-width: 680px) {
  .path-steps {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 0;
  }
  .path-connector {
    width: 3px;
    height: 35px;
    margin: -0.5rem 0;
    top: 0;
  }
  .active-connector::after {
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: pulse-flow-vertical 1.8s infinite linear;
  }
}

@keyframes pulse-flow-vertical {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* Specs Console - Terminal Window */
.terminal-window {
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid #2d2d2d;
  overflow: hidden;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.85rem;
  color: #e5e7eb;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.terminal-header {
  background: #2e2e2e;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}

.terminal-dots {
  display: flex;
  gap: 0.4rem;
  position: absolute;
  left: 1rem;
}

.terminal-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-title {
  margin: 0 auto;
  font-size: 0.72rem;
  color: #9ca3af;
  font-weight: 500;
}

.terminal-body {
  padding: 1.2rem;
  min-height: 250px;
  max-height: 380px;
  overflow-y: auto;
  line-height: 1.55;
  background: #181818;
}

.terminal-line {
  margin-bottom: 0.35rem;
  white-space: pre-wrap;
}

.terminal-prompt {
  color: #10b981;
  font-weight: bold;
}

.terminal-output-success {
  color: #34d399;
  font-weight: 600;
}

.terminal-output-warning {
  color: #f59e0b;
}

.terminal-output-info {
  color: #3b82f6;
  font-weight: 600;
}

.typing-cursor {
  display: inline-block;
  width: 0.45rem;
  height: 1rem;
  margin-left: 0.15rem;
  background: #e5e7eb;
  animation: cursor-blink 1s steps(2, start) infinite;
}

#btn-verify-compat {
  min-width: 240px;
  box-shadow: 0 10px 24px rgba(19, 121, 213, 0.2);
}

#btn-verify-compat:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── macOS Menu Bar ── */
@media (min-width: 861px) {
  body {
    padding-top: 28px !important;
  }
  .site-header {
    top: 28px !important;
  }
  .macos-menubar {
    display: flex !important;
  }
}

.macos-menubar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  color: #1c1c1e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  z-index: 10000;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  user-select: none;
  box-sizing: border-box;
}

.menubar-left, .menubar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menubar-item {
  cursor: default;
  padding: 2px 6px;
  border-radius: 4px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.15s ease;
}

.menubar-item:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.menubar-item.apple-logo {
  font-size: 15px;
  padding-left: 2px;
  padding-right: 2px;
}

.menubar-item.app-name {
  font-weight: 700;
}

.menubar-mynah-icon {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.status-indicator-dot.online {
  background-color: #22c993;
  box-shadow: 0 0 6px rgba(34, 201, 147, 0.4);
}
.status-indicator-dot.recording {
  background-color: #ef6351;
  box-shadow: 0 0 6px #ef6351;
  animation: menubar-dot-pulse 1s infinite alternate;
}

@keyframes menubar-dot-pulse {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}

/* Dropdown menu */
.menubar-dropdown {
  display: none;
  position: absolute;
  top: 26px;
  right: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 250px;
  padding: 4px;
  flex-direction: column;
  z-index: 10001;
  color: #1d1d1f;
}

.menubar-dropdown.active {
  display: flex;
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}

.dropdown-header img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.dropdown-header div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.dropdown-header strong {
  font-size: 13px;
  color: #111;
}

.dropdown-header span {
  font-size: 11px;
  color: #86868b;
}

.dropdown-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 4px 6px;
}

.dropdown-item {
  padding: 6px 12px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  cursor: default;
  transition: background-color 0.15s ease, color 0.15s ease;
  position: relative;
}

.dropdown-item:hover {
  background-color: var(--mynah-blue);
  color: white;
}

.dropdown-item:hover kbd {
  color: rgba(255, 255, 255, 0.8);
}

.dropdown-item kbd {
  font-size: 10px;
  font-family: inherit;
  color: #86868b;
  background: rgba(0, 0, 0, 0.05);
  padding: 1px 4px;
  border-radius: 3px;
}

.dropdown-item.has-submenu::after {
  content: "▶";
  font-size: 8px;
  margin-left: 6px;
  opacity: 0.6;
}

.dropdown-item.has-submenu:hover::after {
  opacity: 1;
}

.dropdown-submenu {
  display: none;
  position: absolute;
  top: -4px;
  left: -230px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 226px;
  padding: 4px;
  z-index: 10002;
}

.dropdown-item.has-submenu:hover .dropdown-submenu {
  display: block;
}

.dropdown-submenu .dropdown-item {
  color: #1d1d1f;
}
.dropdown-submenu .dropdown-item:hover {
  background-color: var(--mynah-blue);
  color: white;
}

.dropdown-submenu .dropdown-item.model-selected::before {
  content: "✓";
  position: absolute;
  left: 6px;
  font-weight: bold;
}

.dropdown-submenu .dropdown-item {
  padding-left: 20px;
}

/* ── macOS Windows Framework ── */
.macos-window {
  border-radius: 12px;
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
}

.window-titlebar {
  background: #f1f2f4;
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  user-select: none;
}

.window-dots {
  display: flex;
  gap: 8px;
  z-index: 2;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.window-dots span::after {
  font-size: 8px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.window-titlebar:hover .window-dots span::after {
  opacity: 0.6;
}

.window-dots .dot-red {
  background-color: #ef6351;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.window-dots .dot-red::after {
  content: "×";
  color: #4c0000;
}

.window-dots .dot-yellow {
  background-color: #f7b955;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.window-dots .dot-yellow::after {
  content: "−";
  color: #5c3e00;
  font-size: 9px;
  top: 48%;
}

.window-dots .dot-green {
  background-color: #45c47b;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.window-dots .dot-green::after {
  content: "+";
  color: #004c1c;
  font-size: 7px;
}

.window-title {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  font-size: 13px;
  font-weight: 600;
  color: #4a4a4a;
  pointer-events: none;
}

.window-content {
  flex-grow: 1;
  background: var(--surface);
  position: relative;
}

/* Window states */
.window-closed {
  opacity: 0 !important;
  transform: scale(0.85) translateY(30px) !important;
  pointer-events: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.window-minimized {
  transform: scale(0.2) translateY(800px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.window-maximized {
  transform: scale(1.05) !important;
  z-index: 100;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

/* Restore notification */
.restore-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(30, 30, 30, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  animation: slide-in-bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.restore-notification button {
  background: var(--mynah-blue);
  border: none;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: background-color 0.15s ease;
}

.restore-notification button:hover {
  background: var(--mynah-blue-dark);
}

@keyframes slide-in-bottom {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ── Keyboard dictation simulator card ── */
.dictation-simulator-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background:
    radial-gradient(circle at top right, rgba(19, 121, 213, 0.08), transparent 28rem),
    radial-gradient(circle at 10% 90%, rgba(242, 183, 5, 0.05), transparent 22rem),
    rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}

.mock-editor-window {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mock-editor-body {
  padding: 1rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.editor-textarea {
  width: 100%;
  height: 120px;
  border: none;
  resize: none;
  font-family: inherit;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  outline: none;
}

.editor-textarea::placeholder {
  color: #b0b8b5;
}

.editor-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
}

.status-text-muted {
  font-weight: 500;
}

.editor-glow-active {
  animation: textarea-glow-pulse 0.8s ease-in-out;
}

@keyframes textarea-glow-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 15px rgba(19, 121, 213, 0.35); border-color: rgba(19, 121, 213, 0.5); }
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.sim-visualizer-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  min-width: 320px;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.sim-mic-icon {
  font-size: 1.2rem;
  color: var(--muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.sim-mic-icon.recording {
  color: #ef6351;
  transform: scale(1.15);
}

.sim-waveforms {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 24px;
  width: 100px;
}

.sim-waveforms span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #b0b8b5;
  transition: background-color 0.3s ease, height 0.3s ease;
}

.sim-waveforms.pulsing span {
  background: linear-gradient(180deg, var(--mynah-blue), var(--mynah-gold));
  animation: keypress-wave-bar 1s infinite alternate ease-in-out;
}

.sim-waveforms.pulsing span:nth-child(1)  { animation-delay: 0.1s; }
.sim-waveforms.pulsing span:nth-child(2)  { animation-delay: 0.2s; }
.sim-waveforms.pulsing span:nth-child(3)  { animation-delay: 0.3s; }
.sim-waveforms.pulsing span:nth-child(4)  { animation-delay: 0.4s; }
.sim-waveforms.pulsing span:nth-child(5)  { animation-delay: 0.5s; }
.sim-waveforms.pulsing span:nth-child(6)  { animation-delay: 0.4s; }
.sim-waveforms.pulsing span:nth-child(7)  { animation-delay: 0.3s; }
.sim-waveforms.pulsing span:nth-child(8)  { animation-delay: 0.2s; }
.sim-waveforms.pulsing span:nth-child(9)  { animation-delay: 0.1s; }
.sim-waveforms.pulsing span:nth-child(10) { animation-delay: 0.0s; }

@keyframes keypress-wave-bar {
  0% { height: 4px; }
  100% { height: 22px; }
}

.sim-status {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 100px;
}

.sim-status.recording {
  color: #ef6351;
}

.sim-status.transcribing {
  color: var(--mynah-blue);
}

.sim-status.success {
  color: #22c993;
}

/* Virtual Keyboard */
.sim-keyboard {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #e1e2e5;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #c7c8cb;
  box-shadow: 
    inset 0 1px 1px white,
    0 10px 24px rgba(0,0,0,0.08);
  max-width: 100%;
  overflow-x: auto;
  user-select: none;
}

.kbd-row {
  display: flex;
  gap: 4px;
}

.key-btn {
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
  border: 1px solid #b7b8bb;
  border-radius: 4px;
  box-shadow: 
    0 1px 1px rgba(0,0,0,0.1),
    inset 0 1px 0 white;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 500;
  height: 32px;
  min-width: 32px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s ease;
  outline: none;
}

.key-btn:active, .key-btn.active {
  background: #dcdde1;
  box-shadow: 
    inset 0 2px 4px rgba(0,0,0,0.15),
    0 1px 0 rgba(255,255,255,0.8);
  transform: translateY(1px);
}

.key-btn.highlighted {
  border-color: var(--mynah-blue);
  background: var(--mynah-blue-soft);
  color: var(--mynah-blue);
  font-weight: bold;
  box-shadow: 0 0 8px rgba(19, 121, 213, 0.25);
}

.key-btn.highlighted:active, .key-btn.highlighted.active {
  background: var(--mynah-blue);
  color: white;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.key-btn.key-fn.highlighted {
  border-color: var(--mynah-gold);
  background: var(--mynah-gold-soft);
  color: var(--brand-dark);
  font-weight: bold;
  box-shadow: 0 0 10px rgba(242, 183, 5, 0.4);
  animation: keypress-fn-glow 2s infinite ease-in-out;
}

.key-btn.key-fn.highlighted:active, .key-btn.key-fn.highlighted.active {
  background: var(--mynah-gold);
  color: white;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 0 12px rgba(242, 183, 5, 0.7);
  animation: none;
}

@keyframes keypress-fn-glow {
  0%, 100% { box-shadow: 0 0 4px rgba(242, 183, 5, 0.25); }
  50% { box-shadow: 0 0 12px rgba(242, 183, 5, 0.65); border-color: #d99c00; }
}

.key-esc { width: 44px; }
.key-delete { width: 52px; }
.key-tab { width: 44px; }
.key-slash { width: 40px; }
.key-caps { width: 56px; }
.key-return { width: 60px; }
.key-lshift { width: 72px; }
.key-rshift { width: 76px; }
.key-ctrl { width: 46px; }
.key-option { width: 40px; }
.key-cmd { width: 48px; }
.key-space { width: 190px; }
.key-fn { width: 44px; }

.key-arrow-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 7px;
  color: #666;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 32px;
  border: 1px solid #b7b8bb;
  background: #f4f5f7;
  border-radius: 4px;
}

.arrow-up, .arrow-down-left {
  display: inline-block;
}

.simulator-help-text {
  font-size: 12px;
  color: var(--muted);
}

/* ── macOS Finder Quick Look overlay ── */
.quicklook-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  user-select: none;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
}

.quicklook-overlay.active {
  display: flex;
  opacity: 1;
}

.quicklook-window {
  width: min(90vw, 550px);
  background: rgba(30, 30, 30, 0.76);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.quicklook-overlay.active .quicklook-window {
  transform: scale(1);
}

.quicklook-header {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quicklook-title {
  font-size: 13px;
  font-weight: 600;
  color: #e5e5ea;
  text-align: center;
  flex-grow: 1;
}

.quicklook-close {
  background: transparent;
  border: none;
  color: #8e8e93;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.quicklook-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.quicklook-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.quicklook-dmg-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.quicklook-dmg-icon {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.quicklook-dmg-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.quicklook-image-preview {
  max-width: 100%;
  max-height: 320px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  object-fit: contain;
}

.quicklook-checksum-preview {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  padding: 12px;
  font-family: monospace;
  font-size: 11px;
  word-break: break-all;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
}

.quicklook-footer {
  height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0,0,0,0.12);
}

.quicklook-metadata {
  font-size: 11px;
  color: #8e8e93;
}

.quicklook-action-btn {
  background: var(--mynah-blue);
  border: none;
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  transition: background-color 0.15s ease;
}

.quicklook-action-btn:hover {
  background: #258ae5;
}

/* Quicklook Tooltip/Hint Badge */
.quicklook-hint-badge {
  position: absolute;
  background: rgba(30, 30, 30, 0.95);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quicklook-hint-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Inline Brand Icon replacement */
.inline-brand-icon {
  display: inline-block;
  height: 1.15em;
  width: auto;
  vertical-align: middle;
  margin: 0 0.18em;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  position: relative;
  top: -1px;
}

/* Golden Accents */
.badge-roadmap-gold {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--mynah-gold-soft);
  border: 1px solid rgba(242, 183, 5, 0.3);
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.price-amount-gold {
  color: var(--mynah-gold) !important;
  text-shadow: 0 2px 10px rgba(242, 183, 5, 0.15);
}

.editor-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--mynah-gold);
  box-shadow: 0 0 8px rgba(242, 183, 5, 0.6);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  animation: editor-dot-pulse 1.8s infinite ease-in-out;
}

.editor-status-dot.recording {
  background-color: #ef6351;
  box-shadow: 0 0 8px rgba(239, 99, 81, 0.6);
  animation: editor-dot-pulse-recording 1s infinite ease-in-out;
}

@keyframes editor-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px rgba(242, 183, 5, 0.9); }
}

@keyframes editor-dot-pulse-recording {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px rgba(239, 99, 81, 0.9); }
}

