/* Silentworks land-v1 — Wispr-adjacent productivity landing + ui-ux-pro-max tokens */

:root {
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --violet-500: #8b5cf6;
  --violet-100: #ede9fe;
  --ink: #134e4a;
  --ink-strong: #042f2e;
  --muted: #2d6a66;
  --subtle: #5b7c79;
  --border: rgba(20, 78, 74, 0.12);
  --card: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(4, 47, 46, 0.08);
  --shadow-lg: 0 24px 80px rgba(4, 47, 46, 0.12);
  --max: 1120px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --header-h: 4.25rem;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--teal-50);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--ink-strong);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

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

/* Floating nav (ui-ux-pro-max) */

.site-header {
  position: fixed;
  top: 1rem;
  left: var(--pad-x);
  right: var(--pad-x);
  z-index: 50;
  max-width: calc(var(--max) + 2 * var(--pad-x));
  margin-left: auto;
  margin-right: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.logo:hover {
  color: var(--teal-600);
}

.logo:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 3px;
  border-radius: 6px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 720px) {
  .site-nav {
    display: flex;
  }
}

.site-nav__link {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__link:hover {
  color: var(--ink-strong);
  background: rgba(13, 148, 136, 0.08);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 2px;
}

.btn--nav {
  margin-left: auto;
  padding: 0.55rem 1.1rem;
  font-size: 0.8125rem;
}

@media (min-width: 720px) {
  .btn--nav {
    margin-left: 0;
  }
}

/* Main offset for fixed header */

main {
  padding-top: var(--header-h);
}

/* Hero + mesh */

.hero {
  position: relative;
  padding: 2.5rem var(--pad-x) 3.5rem;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 20%, rgba(20, 184, 166, 0.35), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(249, 115, 22, 0.12), transparent 45%),
    linear-gradient(180deg, #f0fdfa 0%, #ecfeff 45%, #f0fdfa 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__mesh {
    animation: mesh-drift 18s ease-in-out infinite alternate;
  }
}

@keyframes mesh-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(2%, 1%) scale(1.02);
  }
}

.hero__content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.hero__title {
  margin: 1rem 0 0;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.125rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink-strong);
}

.hero__lead {
  margin: 1.25rem auto 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  color: var(--muted);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.hero__kbd-row {
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--subtle);
}

.hero__kbd-label {
  font-weight: 600;
  margin-right: 0.25rem;
}

.hero__kbd-sep {
  opacity: 0.5;
}

.kbd-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-600);
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(4, 47, 46, 0.06);
}

.kbd-chip--alt {
  color: var(--violet-500);
  border-color: rgba(139, 92, 246, 0.25);
}

/* Hero mockup */

.hero__visual {
  position: relative;
  max-width: min(640px, 100%);
  margin: 3rem auto 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
  border-bottom: 1px solid #e4e4e7;
}

.mock-chrome__dots {
  display: flex;
  gap: 6px;
}

.mock-chrome__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4d4d8;
}

.mock-chrome__dots span:first-child {
  background: #fca5a5;
}

.mock-chrome__dots span:nth-child(2) {
  background: #fcd34d;
}

.mock-chrome__dots span:nth-child(3) {
  background: #86efac;
}

.mock-chrome__url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: #71717a;
  background: #fff;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
}

.mock-body {
  padding: 0;
  background: #fafafa;
}

.mock-menu-bar {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  background: linear-gradient(180deg, #f4f4f5 0%, #e4e4e7 100%);
  border-bottom: 1px solid #d4d4d8;
}

.mock-menu-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #52525b;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d4d4d8;
}

.mock-menu-bar__item--active {
  color: var(--teal-600);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.12);
}

.mock-icon {
  width: 14px;
  height: 14px;
}

.mock-editor {
  padding: 1.25rem 1.25rem 1.5rem;
}

.mock-editor__rough {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #a1a1aa;
  font-style: italic;
}

.mock-editor__arrow {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0;
}

.kbd--mock {
  font-size: 0.75rem;
  padding: 0.35rem 0.55rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e4e4e7;
}

.mock-editor__fixed {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #166534;
  background: #f0fdf4;
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  border: 1px solid #bbf7d0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--orange-500);
  color: #fff;
  border-color: transparent;
}

.btn--primary:hover {
  background: var(--orange-600);
}

.btn--secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.btn--large {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* Sections */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--pad-x);
}

.section__head {
  margin-bottom: 1.5rem;
}

.section__h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}

.section__h2--center {
  text-align: center;
}

.section__sub {
  margin: 0;
  max-width: 52ch;
  color: var(--subtle);
  font-size: 1rem;
}

.section__sub--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Strip */

.strip {
  padding-top: 0;
  padding-bottom: 0;
}

.strip__list {
  list-style: none;
  margin: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.strip__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-600);
}

/* Demo */

.demo__panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.demo__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (max-width: 800px) {
  .demo__grid {
    grid-template-columns: 1fr;
  }

  .demo__col--shortcut {
    padding: 1rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
}

.demo__col {
  padding: 1.25rem 1.35rem;
  position: relative;
}

.demo__tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin-bottom: 0.65rem;
}

.demo__tag--after {
  color: var(--teal-600);
}

.demo__col--before {
  background: #fafafa;
}

.demo__col--after {
  background: #f0fdf4;
}

.demo__col--shortcut {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  background: #fff;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

@media (max-width: 800px) {
  .demo__col--shortcut {
    width: 100%;
  }
}

.kbd-ring {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--teal-600);
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  border: 2px solid rgba(13, 148, 136, 0.35);
  background: rgba(240, 253, 250, 0.8);
}

.demo__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.demo__text--rough {
  color: #a1a1aa;
  font-style: italic;
}

.demo__text--fixed {
  color: #166534;
  font-style: normal;
}

.demo__hint {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--subtle);
}

.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  font-size: 0.8125rem;
}

.kbd--inline {
  display: inline;
}

/* How it works */

.how__steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .how__steps {
    grid-template-columns: 1fr;
  }
}

.how__step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--teal-600);
  margin-bottom: 1rem;
}

.how__h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.how__p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--subtle);
  line-height: 1.5;
}

/* Bento shortcuts */

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.bento__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.65rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bento__card:hover {
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 8px 32px rgba(4, 47, 46, 0.1);
}

.bento__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.bento__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.bento__icon-wrap--teal {
  background: var(--teal-100);
  color: var(--teal-600);
}

.bento__icon-wrap--violet {
  background: var(--violet-100);
  color: var(--violet-500);
}

.bento__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.bento__body {
  margin: 0;
  font-size: 0.875rem;
  color: var(--subtle);
  line-height: 1.5;
  flex: 1;
}

.code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.1rem 0.35rem;
  background: #f4f4f5;
  border-radius: 4px;
  color: var(--ink-strong);
}

.bento__kbd {
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.kbd-lg {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal-600);
}

.kbd-lg--violet {
  color: var(--violet-500);
}

.bento__kbd-hint {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--subtle);
}

/* Pricing cards */

.card-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card--highlight {
  background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
  border-color: rgba(139, 92, 246, 0.35);
}

.card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bullet-list li {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--subtle);
  padding-left: 0.5rem;
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #94a3a8;
  font-weight: 700;
}

.bullet-list__price {
  color: var(--teal-600);
  font-size: 0.9375rem;
  font-weight: 500;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.bullet-list__price::before {
  color: var(--teal-600);
}

.bullet-list__price strong {
  font-weight: 700;
}

/* Download */

.download {
  padding-bottom: 4rem;
}

.download__panel {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.download__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.download__lead {
  margin: 0.5rem 0 1.25rem;
  font-size: 1.125rem;
  color: var(--muted);
}

.download__meta {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--subtle);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x) 2.5rem;
  border-top: 1px solid var(--border);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--subtle);
}
