:root {
  --bg: #ffffff;
  --ink: #111827;
  --text: #4b5563;
  --muted: #8b95a5;
  --line: #e7ebf1;
  --soft: #f5f7fb;
  --soft-2: #eef2f7;
  --green: #22c55e;
  --green-dark: #16a34a;
  --amber: #ffc107;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --purple: #8b5cf6;
  --orange: #fb923c;
  --radius-xl: 36px;
  --container: 1180px;
  --font-body: "Geist", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-hero: "EB Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

.page-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(59, 130, 246, 0.14), transparent 30rem),
    #ffffff;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1120px);
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.1);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.nav-button,
.primary-download,
.footer-brand,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--amber);
}

.brand-icon,
.tiny-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}

.brand-icon {
  width: 36px;
  height: 36px;
}

.brand-icon img,
.tiny-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.site-nav .nav-button {
  margin-left: 6px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.26);
}

.site-nav .nav-button:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #34d873, #16a34a);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #0f172a;
}

.hero-section {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 100svh;
  padding: 152px 20px 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #edf8ff 0%, #ffffff 72%),
    radial-gradient(circle at 20% 40%, rgba(59, 130, 246, 0.22), transparent 22rem);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(59, 130, 246, 0.18) 42% 43%, transparent 43%),
    linear-gradient(155deg, transparent 0 56%, rgba(255, 193, 7, 0.16) 56% 57%, transparent 57%);
  opacity: 0.95;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-orb--blue {
  left: 9%;
  top: 42%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 68%);
}

.hero-orb--gold {
  right: 13%;
  top: 42%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.34), transparent 68%);
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background:
    linear-gradient(to right, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 42%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100%, 980px);
  text-align: center;
}

.trust-line {
  margin: 0 0 28px;
  color: #607087;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: #111827;
  font-family: var(--font-hero);
  font-size: clamp(52px, 7.9vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
  color: #6b7280;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.hero-subtitle span {
  display: block;
}

.primary-download {
  gap: 12px;
  justify-content: center;
  min-height: 58px;
  margin-top: 22px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  font-size: 18px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 36px rgba(37, 99, 235, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-download:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 22px 44px rgba(37, 99, 235, 0.32);
}

.windows-glyph {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.windows-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-preview {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 24px), 1120px);
  margin-top: 66px;
}

.preview-glow {
  position: absolute;
  inset: -26px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.45), rgba(139, 92, 246, 0.35), rgba(59, 130, 246, 0.45));
  filter: blur(26px);
  opacity: 0.48;
}

.desktop-preview {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: linear-gradient(135deg, #eef4ff, #ffe1b8 58%, #f7a9a2);
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.desktop-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
}

.tiny-logo {
  width: 24px;
  height: 24px;
}

.desktop-topbar span:not(.tiny-logo) {
  width: 12px;
  height: 12px;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.desktop-topbar span:not(.tiny-logo) + span {
  margin-left: 0;
}

.desktop-scene {
  position: relative;
  min-height: 586px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 54px);
}

.demo-video-frame {
  position: relative;
  width: min(100%, 980px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.86)),
    #0f172a;
  box-shadow:
    0 26px 70px rgba(15, 23, 42, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.demo-video-frame::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.demo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f172a;
}

.static-app-overlay {
  position: absolute;
  top: clamp(18px, 4vw, 42px);
  left: 50%;
  z-index: 3;
  width: min(560px, calc(100% - 48px));
  transform: translateX(-50%);
  pointer-events: none;
}

.static-top-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(54, 56, 68, 0.9), rgba(20, 21, 28, 0.96));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.static-logo {
  display: inline-flex;
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 999px;
  background: #ffffff;
}

.static-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.static-listen-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

.static-top-pill button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.static-stop {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.28);
}

.static-answer-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(70, 70, 84, 0.84), rgba(24, 24, 33, 0.94));
  box-shadow:
    0 24px 58px rgba(15, 23, 42, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.static-user-bubble {
  width: fit-content;
  margin-left: auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.static-answer-card p {
  margin: 16px 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.48;
}

.static-actions {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.static-actions span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.static-prompt {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 700;
}

.meeting-window {
  position: absolute;
  left: 12%;
  bottom: 46px;
  width: 56%;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, #141821, #06070b);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.34);
}

.meeting-window::before {
  content: "";
  position: absolute;
  inset: 20px 20px auto;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ef4444 0 12px, transparent 12px 22px, #f59e0b 22px 34px, transparent 34px 44px, #22c55e 44px 56px);
}

.meeting-speaker {
  position: absolute;
  left: 44px;
  top: 82px;
  width: 250px;
  height: 170px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 48% 38%, #67e8f9 0 16%, transparent 17%),
    linear-gradient(135deg, #0e7490, #164e63);
}

.meeting-lines {
  position: absolute;
  right: 42px;
  top: 96px;
  display: grid;
  gap: 18px;
  width: 230px;
}

.meeting-lines span {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.cluegent-overlay {
  position: absolute;
  top: 52px;
  right: 7%;
  width: min(520px, 48%);
}

.overlay-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(74, 74, 88, 0.9), rgba(32, 32, 42, 0.96));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.overlay-pill span {
  width: 38px;
  height: 38px;
  padding: 4px;
  border-radius: 999px;
  background: #ffffff;
}

.overlay-pill button {
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(80, 80, 96, 0.9), rgba(34, 34, 44, 0.96));
  font-weight: 700;
}

.overlay-pill i {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(70, 70, 84, 0.92), rgba(24, 24, 31, 0.98));
}

.overlay-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(76, 76, 91, 0.86), rgba(30, 30, 41, 0.95));
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.user-bubble {
  width: fit-content;
  margin-left: auto;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  font-size: 14px;
  font-weight: 800;
}

.overlay-panel p {
  margin: 16px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
}

.quick-actions {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.quick-actions button {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(70, 70, 84, 0.9), rgba(28, 28, 38, 0.96));
  font-size: 12px;
  font-weight: 700;
}

.prompt-bar {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
}

kbd {
  display: inline-flex;
  min-width: 35px;
  justify-content: center;
  margin-left: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: 12px;
}

.screen-card {
  position: absolute;
  right: 6%;
  bottom: 62px;
  display: grid;
  gap: 6px;
  width: 260px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.screen-card strong {
  font-size: 22px;
}

.screen-card span {
  color: #64748b;
}

.section {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 108px 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.cta-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-heading p,
.cta-card p {
  max-width: 650px;
  margin: 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.65;
}

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

.feature-card,
.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.feature-card {
  min-height: 440px;
  padding: 34px;
}

.feature-card h3,
.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.feature-card p,
.step-card p {
  margin: 16px 0 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.card-number {
  display: inline-flex;
  margin-bottom: 56px;
  color: rgba(17, 24, 39, 0.35);
  font-weight: 800;
}

.feature-card--answer {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.2), transparent 18rem),
    linear-gradient(135deg, #2563eb, #0f172a);
}

.feature-card--answer h3,
.feature-card--answer p,
.feature-card--answer .card-number {
  color: #ffffff;
}

.feature-card--answer p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-card--models {
  background:
    radial-gradient(circle at 80% 0%, rgba(34, 197, 94, 0.18), transparent 20rem),
    #f8fafc;
}

.walkthrough-card {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.walkthrough-card--screenshot {
  border-color: rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle at 85% 8%, rgba(34, 197, 94, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.72);
}

.walkthrough-stage {
  position: relative;
  height: 430px;
  max-width: 640px;
  margin: 0 auto;
  padding: 18px;
}

.walkthrough-top-pill {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(74, 74, 88, 0.9), rgba(30, 30, 40, 0.96));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateX(-50%);
}

.walkthrough-top-logo {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 5px;
  border-radius: 999px;
  background: #ffffff;
}

.walkthrough-top-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.walkthrough-listen-button,
.walkthrough-hide-button,
.walkthrough-shot-button,
.walkthrough-icon-button {
  border: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.walkthrough-listen-button,
.walkthrough-hide-button,
.walkthrough-shot-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.walkthrough-listen-button.is-active {
  background: rgba(16, 185, 129, 0.18);
}

.walkthrough-shot-button.is-active {
  background: rgba(16, 185, 129, 0.18);
}

.walkthrough-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
}

.walkthrough-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.walkthrough-sliders,
.walkthrough-stop-square {
  display: block;
}

.walkthrough-sliders {
  position: relative;
  width: 14px;
  height: 14px;
}

.walkthrough-sliders::before,
.walkthrough-sliders::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.walkthrough-sliders::before {
  top: 4px;
  box-shadow: 0 6px 0 currentColor;
}

.walkthrough-sliders::after {
  top: 10px;
  width: 8px;
}

.walkthrough-stop-square {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: currentColor;
}

.walkthrough-overlay {
  position: absolute;
  top: 72px;
  left: 18px;
  right: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(76, 76, 91, 0.86), rgba(30, 30, 41, 0.95));
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.walkthrough-overlay.is-collapsed {
  opacity: 0.45;
  transform: translateY(18px);
}

.walkthrough-overlay--screenshot {
  opacity: 0.98;
}

.walkthrough-transcript {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-style: italic;
  text-align: right;
  white-space: nowrap;
}

.walkthrough-transcript span {
  display: inline-block;
  animation: walkthrough-marquee 4.5s ease-in-out infinite;
}

@keyframes walkthrough-marquee {
  0%, 100% { transform: translateX(-18px); }
  50% { transform: translateX(0); }
}

.walkthrough-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  overflow: hidden;
}

.walkthrough-actions span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.walkthrough-actions span.is-active {
  background: rgba(59, 130, 246, 0.16);
  transform: translateY(-1px);
}

.walkthrough-response {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(17, 24, 39, 0.18);
}

.walkthrough-response small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.walkthrough-response p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.62;
}

.walkthrough-prompt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.walkthrough-prompt {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 700;
}

.walkthrough-prompt span {
  color: rgba(255, 255, 255, 0.46);
  margin-left: 8px;
}

.walkthrough-send-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  font-weight: 800;
}

.walkthrough-send-button--camera {
  font-size: 15px;
}

.walkthrough-step-pill {
  position: absolute;
  bottom: 8px;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(74, 74, 88, 0.92), rgba(30, 30, 40, 0.98));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
  font-size: 12px;
  font-weight: 800;
  transform: translateX(-50%);
}

.walkthrough-step-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #60a5fa;
}

.walkthrough-step-pill--amber::before {
  background: #f59e0b;
}

.walkthrough-cursor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 26px;
  height: 26px;
  color: #020617;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}

.walkthrough-cursor-arrow {
  position: relative;
  z-index: 2;
  display: block;
  color: #020617;
  font-size: 28px;
  line-height: 1;
  text-shadow: 0 6px 12px rgba(15, 23, 42, 0.24);
}

.walkthrough-cursor-dot {
  position: absolute;
  right: -2px;
  top: -3px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.14);
}

.walkthrough-shot-bubble {
  width: fit-content;
  margin: 14px 0 0 auto;
  padding: 12px 15px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 20px 20px 8px 20px;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.12);
  font-size: 13px;
  font-weight: 800;
  opacity: 0.4;
  transform: scale(0.96);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.walkthrough-shot-bubble.is-visible {
  opacity: 1;
  transform: scale(1);
}

.walkthrough-shot-divider {
  width: 100%;
  height: 1px;
  margin-top: 9px;
  background: rgba(96, 165, 250, 0.24);
}

.feature-demo {
  position: relative;
  margin-top: 28px;
  border-radius: 26px;
  overflow: hidden;
}

.feature-demo--interface {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.08);
}

.feature-demo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(72, 80, 108, 0.9), rgba(22, 28, 40, 0.95));
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.feature-demo-logo {
  display: inline-flex;
  width: 34px;
  height: 34px;
  padding: 4px;
  border-radius: 999px;
  background: #ffffff;
}

.feature-demo-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-demo-live {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

.feature-demo-pill strong,
.feature-demo-pill button {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.feature-demo-pill button {
  border: 0;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-demo-pill i {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-demo-stage {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.feature-demo-transcript {
  color: #667085;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

.feature-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.feature-demo-actions span {
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  color: #0f172a;
  background: #edf3ff;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-demo-actions span.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.feature-demo-response {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: #f8fafc;
}

.feature-demo-response small,
.feature-demo-shot-answer small {
  display: block;
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-demo-response p,
.feature-demo-shot-answer p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.feature-demo--screenshot {
  padding: 20px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background:
    radial-gradient(circle at 85% 6%, rgba(34, 197, 94, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.98));
}

.feature-demo-shot-window {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.feature-demo-shot-top {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.feature-demo-shot-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.feature-demo-shot-body {
  padding: 20px;
}

.feature-demo-shot-question {
  color: #111827;
  font-size: 17px;
  font-weight: 700;
}

.feature-demo-shot-code {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
}

.feature-demo-shot-code span {
  color: #475569;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
}

.feature-demo-shot-badge {
  width: fit-content;
  margin: 14px 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 999px;
  color: #1d4ed8;
  background: rgba(219, 234, 254, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.feature-demo-shot-answer {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.modes-section {
  width: 100%;
  padding: 112px max(20px, calc((100vw - var(--container)) / 2));
  background: #f8fafc;
}

.steps-grid {
  display: grid;
  gap: 24px;
}

.step-card {
  padding: 30px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  font-weight: 800;
}

.privacy-controls-section {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.privacy-controls-section .eyebrow {
  display: block;
  color: #111827;
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-transform: none;
  text-align: center;
}

.privacy-controls-section .section-heading {
  gap: 18px;
}

.privacy-controls-section .section-heading h2 {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.privacy-controls-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.privacy-controls-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 32px;
  background: #edf3fb;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

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

.privacy-controls-copy {
  max-width: 460px;
  margin: 0;
  color: #6b7280;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0;
}

.privacy-controls-copy strong {
  color: #111827;
}

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

.step-card {
  min-height: 280px;
}

.step-visual {
  position: relative;
  min-height: 300px;
  margin: -4px -4px 28px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 14%, rgba(59, 130, 246, 0.08), transparent 20rem),
    linear-gradient(180deg, #eef4ff, #f8fbff);
}

.step-visual--end {
  background:
    radial-gradient(circle at 50% 12%, rgba(59, 130, 246, 0.16), transparent 18rem),
    linear-gradient(180deg, #dfeafe, #f7fbff);
}

.step-visual--saved {
  background:
    radial-gradient(circle at 85% 12%, rgba(59, 130, 246, 0.16), transparent 18rem),
    linear-gradient(180deg, #dce9ff, #eef5ff);
}

.step-window {
  position: absolute;
  inset: 30px 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 24px;
  background: linear-gradient(180deg, #4d628f, #2d4269);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.step-window--soft {
  background: linear-gradient(180deg, rgba(77, 98, 143, 0.32), rgba(77, 98, 143, 0.14));
  box-shadow: none;
}

.step-window-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.1);
}

.step-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.step-window-bar span:nth-child(1) { background: #f59e0b; }
.step-window-bar span:nth-child(2) { background: #fbbf24; }
.step-window-bar span:nth-child(3) { background: #4ade80; }

.step-window-body {
  position: relative;
  height: calc(100% - 38px);
  padding: 18px;
  overflow: hidden;
}

.step-window-body--meeting {
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.36), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.step-bg-video,
.step-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.step-window--soft .step-bg-video,
.step-window--soft .step-bg-image {
  opacity: 0.34;
}

.step-window-body::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  pointer-events: none;
}

.step-launch-panel {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px 18px 14px 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  z-index: 2;
}

.step-launch-button {
  border: 0;
  padding: 12px 20px;
  border-radius: 14px;
  color: #60a5fa;
  background: rgba(147, 197, 253, 0.18);
  font-size: 15px;
  font-weight: 800;
}

.step-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 35%, #f8fafc 0 18%, transparent 19%),
    radial-gradient(circle at 50% 78%, #f8fafc 0 23%, transparent 24%),
    linear-gradient(135deg, #7c3aed, #1d4ed8);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.step-cluegent-pill {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(160deg, rgba(74, 74, 88, 0.94), rgba(28, 28, 38, 0.98));
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.14);
  transform: translateX(-50%);
  z-index: 2;
}

.step-pill-logo {
  display: inline-flex;
  width: 42px;
  height: 42px;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
}

.step-pill-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-pill-hide {
  padding: 10px 22px;
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  font-size: 15px;
  font-weight: 700;
}

.step-pill-stop {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
}

.step-pointer {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 1;
}

.step-pointer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 82% 42%, 56% 48%, 76% 100%, 60% 100%, 44% 56%, 0 82%);
  filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.2));
}

.step-pointer::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
}

.step-pointer--launch {
  right: 86px;
  bottom: 40px;
  transform: rotate(-18deg);
}

.step-pointer--end {
  right: 74px;
  bottom: 34px;
  transform: rotate(-10deg);
}

.step-note-sheet {
  position: absolute;
  inset: 44px 46px;
  padding: 24px 26px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.step-note-title {
  color: #1f2937;
  font-size: 17px;
  font-weight: 800;
}

.step-note-chip {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.14);
  font-size: 12px;
  font-weight: 700;
}

.step-note-label {
  width: 160px;
  height: 18px;
  margin-top: 18px;
  border-radius: 999px;
  background: #eef2f7;
}

.step-note-heading {
  margin-top: 16px;
  color: #374151;
  font-size: 15px;
  font-weight: 700;
}

.step-note-lines {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.step-note-lines span {
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}

.step-note-lines span:nth-child(1) { width: 88%; }
.step-note-lines span:nth-child(2) { width: 96%; }
.step-note-lines span:nth-child(3) { width: 78%; }
.step-note-lines span:nth-child(4) { width: 90%; }
.step-note-lines span:nth-child(5) { width: 82%; }
.step-note-lines span:nth-child(6) { width: 94%; }

.step-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.step-index {
  color: rgba(17, 24, 39, 0.35);
  font-size: 18px;
  font-weight: 800;
}

.transcription-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}



.price-card li {
  color: #475569;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green-dark);
}


.transcription-section {
  padding-top: 64px;
}

.transcript-visual {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.live-pill {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: #166534;
  background: #dcfce7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.transcript-visual p {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  color: #475569;
  background: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.transcript-copy {
  display: grid;
  gap: 22px;
}

.stat-line {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.stat-line strong {
  color: var(--ink);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.workflow-section {
  padding-top: 84px;
}

.workflow-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08);
}

.workflow-table article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 300px;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(252, 211, 77, 0.12), transparent 16rem),
    #ffffff;
}

.workflow-table article + article {
  border-left: 1px solid rgba(226, 232, 240, 0.96);
}

.workflow-table h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.12;
}

.workflow-table p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.65;
}

.faq-section {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--green-dark);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0 0 26px;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

.cta-section {
  padding: 90px 20px 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.18), transparent 34rem),
    #f8fafc;
}

.cta-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 58px 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.cta-card .brand-icon {
  width: 58px;
  height: 58px;
}

.site-footer {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 58px 0 38px;
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  max-width: 430px;
}

.footer-brand .brand-icon {
  width: 42px;
  height: 42px;
}

.footer-brand strong {
  margin-top: 10px;
  color: var(--amber);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-brand p {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.65;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-top: 44px;
}

.footer-grid div {
  display: grid;
  gap: 12px;
}

.footer-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  color: #64748b;
  font-weight: 600;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.footer-icon-link svg {
  width: 18px;
  height: 18px;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #94a3b8;
  font-size: 14px;
}

.footer-disclaimer {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tooltip {
  position: relative;
  color: #a8b3c3;
  font-size: 12px;
  font-weight: 700;
  cursor: help;
  outline: none;
}

.footer-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  width: 10px;
  height: 10px;
  background: #111827;
  opacity: 0;
  transform: translate(-50%, 4px) rotate(45deg);
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.footer-tooltip-text {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 20;
  width: min(330px, calc(100vw - 40px));
  padding: 12px 14px;
  border-radius: 12px;
  background: #111827;
  color: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.footer-tooltip:hover::after,
.footer-tooltip:focus-visible::after,
.footer-tooltip:hover .footer-tooltip-text,
.footer-tooltip:focus-visible .footer-tooltip-text {
  opacity: 1;
  transform: translateY(0);
}

.footer-tooltip:hover::after,
.footer-tooltip:focus-visible::after {
  transform: translate(-50%, 0) rotate(45deg);
}

.legal-shell {
  min-height: 100vh;
}

.legal-main {
  width: min(calc(100% - 40px), 980px);
  margin: 0 auto;
  padding: 136px 0 80px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 193, 7, 0.13), transparent 24rem),
    #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  padding: clamp(28px, 5vw, 64px);
}

.legal-eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-hero);
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.legal-lede {
  max-width: 760px;
  margin: 28px 0 0;
  color: #475569;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}

.legal-card section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.legal-card h3 {
  margin: 28px 0 10px;
  color: #1f2937;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.legal-card p,
.legal-card li {
  color: #526070;
  font-size: 17px;
  line-height: 1.75;
}

.legal-card p {
  margin: 12px 0 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-card a {
  color: var(--blue-dark);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

@media (max-width: 1040px) {
  .desktop-preview {
    min-height: 560px;
  }

  .desktop-scene {
    padding: 64px 34px;
  }

  .cluegent-overlay {
    right: 5%;
    width: 56%;
  }

  .privacy-controls-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100%, 720px);
  }

  .privacy-controls-copy {
    max-width: 680px;
    font-size: 30px;
  }

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

  .workflow-table article + article {
    border-top: 1px solid rgba(226, 232, 240, 0.96);
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.15);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .site-nav .nav-button {
    margin-left: 0;
  }

  .hero-section {
    padding-top: 132px;
  }

  .hero-copy h1 {
    font-size: clamp(64px, 18vw, 104px);
  }

  .hero-preview {
    margin-top: 48px;
  }

  .desktop-preview {
    min-height: 560px;
  }

  .meeting-window {
    left: 6%;
    width: 88%;
  }

  .cluegent-overlay {
    left: 50%;
    right: auto;
    top: 48px;
    width: 88%;
    transform: translateX(-50%);
  }

  .screen-card {
    display: none;
  }

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

  .workflow-table article {
    min-height: auto;
    padding: 26px;
  }

  .workflow-table h3 {
    font-size: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    width: min(calc(100% - 28px), var(--container));
    padding: 78px 0;
  }

  .modes-section {
    padding: 82px 14px;
  }

  .brand {
    font-size: 22px;
  }

  .hero-copy h1 {
    letter-spacing: -0.06em;
  }

  .hero-subtitle span {
    display: inline;
  }

  .primary-download {
    width: min(100%, 310px);
  }

  .desktop-preview {
    min-height: 500px;
    border-radius: 24px;
  }

  .privacy-controls-copy {
    font-size: 24px;
  }

  .meeting-window {
    height: 300px;
  }

  .meeting-speaker,
  .meeting-lines {
    display: none;
  }

  .cluegent-overlay {
    width: calc(100% - 28px);
  }

  .quick-actions {
    overflow-x: auto;
  }

  .static-app-overlay {
    top: 16px;
    width: calc(100% - 24px);
  }

  .static-answer-card {
    padding: 14px;
  }

  .static-actions span:nth-child(3),
  .static-answer-card p {
    display: none;
  }

  .static-prompt {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .feature-card,
  .step-card {
    border-radius: 26px;
    padding: 24px;
  }

  .feature-card {
    min-height: 380px;
  }

  .card-number {
    margin-bottom: 34px;
  }

}
