/* ===========================================================================
   Meowting landing — design system
   Warm, friendly, slightly playful. Mint primary with coral + gold accents.
   =========================================================================== */

:root {
  /* ink */
  --ink: #1b1d24;
  --ink-soft: #474d5b;
  --ink-faint: #707888;

  /* surfaces */
  --cream: #f5f0e8;
  --cream-deep: #efe8db;
  --surface: #ffffff;
  --surface-warm: #fffaf2;

  /* brand */
  --mint: #14b8a6;
  --mint-bright: #5cf0d2;
  --mint-deep: #0a7d6f;
  --mint-wash: #e6fbf6;
  --coral: #ff7a6b;
  --coral-deep: #db4f3f;
  --coral-wash: #fff0ed;
  --gold: #ffc24d;
  --gold-deep: #c98a08;
  --gold-wash: #fff6e2;

  /* dark band */
  --navy: #14161f;
  --navy-2: #1c2030;
  --navy-3: #262c40;

  /* radii */
  --r-xl: 34px;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 11px;
  --r-pill: 999px;

  /* shadow */
  --shadow-sm: 0 2px 8px rgba(27, 29, 36, 0.05), 0 1px 2px rgba(27, 29, 36, 0.04);
  --shadow-md: 0 18px 40px -16px rgba(27, 29, 36, 0.22);
  --shadow-lg: 0 40px 90px -30px rgba(20, 24, 35, 0.5);
  --shadow-mint: 0 18px 40px -14px rgba(20, 184, 166, 0.45);

  color: var(--ink);
  background: var(--cream);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(1200px 520px at 78% -8%, rgba(92, 240, 210, 0.22), transparent 60%),
    radial-gradient(820px 460px at 4% 6%, rgba(255, 194, 77, 0.15), transparent 55%),
    radial-gradient(760px 540px at 98% 72%, rgba(255, 122, 107, 0.11), transparent 60%),
    var(--cream);
  overflow-x: hidden;
}

html[lang="ko"] body {
  word-break: keep-all;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 13px;
  border-radius: var(--r-pill);
  background: var(--mint-wash);
  color: var(--mint-deep);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.sectionHead h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.sectionHead p.lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  line-height: 1.62;
}

/* ============================ header ============================ */

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
  padding: 0 clamp(18px, 4vw, 40px);
  background: rgba(245, 240, 232, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(27, 29, 36, 0.07);
}

.brandMark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brandMark img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: var(--shadow-mint);
}

.siteHeader nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  font-size: 14px;
  font-weight: 600;
}

.siteHeader nav a {
  color: var(--ink-soft);
  transition: color 0.18s ease;
}

.siteHeader nav a:hover {
  color: var(--ink);
}

.siteHeader .navCta {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease;
}

.siteHeader .navCta:hover {
  background: var(--mint-deep);
  color: #fff;
  transform: translateY(-1px);
}

.languageLink {
  padding: 7px 12px;
  border: 1px solid rgba(27, 29, 36, 0.16);
  border-radius: var(--r-pill);
}

.languageLink:hover {
  border-color: var(--mint);
}

/* ============================ buttons ============================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btnPrimary {
  background: linear-gradient(135deg, var(--mint-bright), var(--mint));
  color: #042b25;
  box-shadow: var(--shadow-mint);
}

.btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px -16px rgba(20, 184, 166, 0.6);
}

/* ============================ hero ============================ */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 88% 12%, rgba(20, 184, 166, 0.28), transparent 58%),
    radial-gradient(700px 500px at 6% 90%, rgba(255, 122, 107, 0.18), transparent 55%),
    linear-gradient(160deg, #181b27, #14161f 60%, #1a1722);
  color: #fff;
}

.heroInner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 112px);
}

.heroCopy .eyebrow {
  background: rgba(92, 240, 210, 0.12);
  color: var(--mint-bright);
}

.heroCopy {
  min-width: 0;
}

.heroCopy .eyebrow::before {
  background: var(--mint-bright);
}

/* hero eyebrow: a clearer meeting-assistant badge */
.heroEyebrow {
  gap: 7px;
  padding: 7px 14px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.heroWordmark {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.heroWordmark img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.6vw, 70px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero h1 .accent {
  background: linear-gradient(110deg, var(--mint-bright) 0%, var(--gold) 52%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .heroLead {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}

.heroActions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 22px;
  width: min(100%, 470px);
  margin-top: 32px;
}

.platformDownload {
  transition:
    color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.platformDownloadCopy {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.platformDownloadCopy strong {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.platformDownloadCopy small {
  font-size: 11.5px;
  font-weight: 700;
  opacity: 0.66;
}

.platformDownloadMark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(4, 43, 37, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 800;
}

.platformDownloadArrow {
  margin-left: auto;
  font-size: 19px;
  font-weight: 800;
}

.platformDownload.isPrimary .platformAlternateLabel {
  display: none;
}

.platformDownload.isNeutral .platformAlternateLabel {
  display: none;
}

.platformDownload.isAlternate .platformPrimaryLabel,
.platformDownload.isAlternate .platformDownloadCopy small,
.platformDownload.isAlternate .platformDownloadMark,
.platformDownload.isAlternate .platformDownloadArrow {
  display: none;
}

.heroActions .platformDownload.isPrimary {
  order: 1;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  padding: 12px 17px 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.38), transparent 36%),
    linear-gradient(135deg, var(--mint-bright), var(--mint));
  color: #042b25;
  box-shadow: 0 20px 48px -18px rgba(92, 240, 210, 0.72);
}

.heroActions .platformDownload.isPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 56px -18px rgba(92, 240, 210, 0.82);
}

.heroActions .platformDownload.isNeutral {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 10px 15px 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.heroActions .platformDownload.isNeutral:hover {
  border-color: rgba(92, 240, 210, 0.5);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.heroActions .platformDownload.isNeutral .platformDownloadMark {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.08);
}

.heroActions .platformDownload.isAlternate {
  order: 2;
  justify-self: start;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 4px;
}

.heroActions .platformDownload.isAlternate:hover,
.heroTextLink:hover {
  color: #fff;
}

.heroTextLink {
  order: 3;
  justify-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  font-weight: 700;
  transition: color 0.18s ease;
}

.heroTextLink span {
  display: inline-block;
  margin-left: 3px;
  transition: transform 0.18s ease;
}

.heroTextLink:hover span {
  transform: translateX(3px);
}

.heroMeta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
}

.heroMeta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.heroMeta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-bright);
}

.heroMeta .deviceMatch {
  padding: 5px 9px;
  border: 1px solid rgba(92, 240, 210, 0.18);
  border-radius: var(--r-pill);
  background: rgba(92, 240, 210, 0.09);
  color: rgba(255, 255, 255, 0.78);
}

.heroMeta .deviceMatch::before {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 4px rgba(92, 240, 210, 0.08);
}

/* hero visual: cat portrait + floating chips */
.heroVisual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.heroPortrait {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.heroPortrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroPortrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 17, 24, 0.5));
}

.floatChip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
  animation: floaty 5s ease-in-out infinite;
}

.floatChip i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
}

.floatChip.c1 { top: 16%; left: -7%; }
.floatChip.c2 { top: 44%; right: -10%; animation-delay: 1.1s; }
.floatChip.c2 i { background: var(--coral); }
.floatChip.c3 { bottom: 8%; left: 4%; animation-delay: 2.2s; }
.floatChip.c3 i { background: var(--gold); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (prefers-reduced-motion: reduce) {
  .floatChip { animation: none; }
}

/* ============================ value strip ============================ */

.valueStrip {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

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

.valueCard {
  padding: 22px 22px 24px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid rgba(27, 29, 36, 0.06);
  box-shadow: var(--shadow-md);
}

.valueCard .vIcon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 20px;
}

.valueCard:nth-child(1) .vIcon { background: var(--mint-wash); }
.valueCard:nth-child(2) .vIcon { background: var(--coral-wash); }
.valueCard:nth-child(3) .vIcon { background: var(--gold-wash); }
.valueCard:nth-child(4) .vIcon { background: #eef0ff; }

.valueCard strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.valueCard span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

/* ============================ story sections ============================ */

.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) 0;
}

.story.flip .storyText { order: 2; }

.storyText .featPoints {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.storyText .featPoints li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.5;
}

.storyText .featPoints li strong {
  color: var(--ink);
  font-weight: 700;
}

.storyText .featPoints li::before {
  content: "";
  grid-row: 1;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 7px;
  background: var(--mint-wash)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a7d6f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

/* ============================ mockup: window chrome ============================ */

.mock {
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid rgba(27, 29, 36, 0.08);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.lights {
  display: inline-flex;
  gap: 7px;
}

.lights i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e2e4ea;
}

.lights i:nth-child(1) { background: #ff5f57; }
.lights i:nth-child(2) { background: #febc2e; }
.lights i:nth-child(3) { background: #28c840; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

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

.langChips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.langChips span {
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid rgba(27, 29, 36, 0.09);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.langChips span:nth-child(3n + 1) { border-color: #b8f0e6; background: var(--mint-wash); }
.langChips span:nth-child(3n + 2) { border-color: #ffd2cb; background: var(--coral-wash); }
.langChips span:nth-child(3n) { border-color: #ffe2a8; background: var(--gold-wash); }

.langChips.compact {
  max-width: 620px;
  gap: 7px;
  margin-top: 22px;
}

.langChips.compact span {
  padding: 7px 11px;
  font-size: 12.5px;
}

/* ---- shared answer mockups (used by both sidebar-shell and legacy mocks) ---- */

.memoryMockBody {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.85fr);
  min-height: 370px;
  background: var(--surface-warm);
}

.memoryChatMock {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.memoryUserBubble {
  justify-self: end;
  max-width: 78%;
  padding: 12px 14px;
  border: 1px solid #b8f0e6;
  border-radius: 16px 16px 5px 16px;
  color: var(--mint-deep);
  background: #e7fff8;
  font-size: 13px;
  font-weight: 800;
}

.memoryAnswerBubble {
  width: min(420px, 100%);
  padding: 14px;
  border: 1px solid rgba(27, 29, 36, 0.08);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.memoryAnswerBubble p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.memoryAnswerBubble button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27px;
  height: 23px;
  margin: 0 2px;
  border: 1px solid #b8f0e6;
  border-radius: var(--r-pill);
  color: var(--mint-deep);
  background: var(--mint-wash);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
}

.memoryFollowUps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(27, 29, 36, 0.07);
}

.memoryFollowUps span {
  padding: 6px 10px;
  border-radius: var(--r-pill);
  color: var(--mint-deep);
  background: var(--mint-wash);
  font-size: 11.5px;
  font-weight: 800;
}

.memorySourcesMock {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 16px;
  border-left: 1px solid rgba(27, 29, 36, 0.07);
  background: var(--surface);
}

.memorySourcesMock > strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.memorySourceItem {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 11px 0;
  border-top: 1px solid rgba(27, 29, 36, 0.07);
  background: transparent;
}

.memorySourceItem:last-child {
  border-bottom: 1px solid rgba(27, 29, 36, 0.07);
}

.memorySourceItem span,
.memorySourceItem b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 7px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.memorySourceItem span {
  min-width: 24px;
  color: var(--mint-deep);
  background: var(--mint-wash);
}

.memorySourceItem b {
  color: #47607f;
  background: #eef4fb;
}

.memorySourceItem p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--ink-faint);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
}

/* ---- AI conversation mockup ---- */

.aiTurn {
  display: grid;
  gap: 5px;
  max-width: 86%;
}

.aiTurn .who {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-faint);
}

.aiTurn .bubble {
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}

.aiTurn.person .bubble {
  background: rgba(27, 29, 36, 0.05);
  border-bottom-left-radius: 5px;
  color: var(--ink);
}

.aiTurn.wake {
  justify-self: end;
  text-align: right;
}

.aiTurn.wake .who { color: var(--mint-deep); }

.aiTurn.wake .bubble {
  background: linear-gradient(135deg, var(--mint-wash), #d6f7ef);
  border: 1px solid #b8f0e6;
  border-bottom-right-radius: 5px;
  color: var(--mint-deep);
  font-weight: 700;
}

.aiTurn.ai {
  justify-self: end;
  text-align: left;
}

.aiTurn.ai .who {
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
}

.aiTurn.ai .who::before {
  content: "🐾";
  font-size: 13px;
}

.aiTurn.ai .bubble {
  background: linear-gradient(135deg, #ffffff, var(--coral-wash));
  border: 1px solid #ffd2cb;
  border-bottom-right-radius: 5px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.aiFollowRow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: var(--surface-warm);
  border: 1px dashed rgba(27, 29, 36, 0.18);
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 700;
}

.aiFollowRow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ============================ download ============================ */

.download {
  padding: 0 0 clamp(56px, 8vw, 96px);
}

.downloadCard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(500px 280px at 8% 20%, rgba(255, 194, 77, 0.2), transparent 60%),
    linear-gradient(135deg, var(--mint), var(--mint-deep));
  color: #03261f;
  box-shadow: var(--shadow-mint);
}

.downloadCard h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.downloadCard p {
  max-width: 540px;
  margin: 0;
  color: rgba(3, 38, 31, 0.78);
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.55;
}

.downloadMeta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: min(100%, 360px);
}

.downloadMeta .platformDownload.isPrimary {
  order: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 68px;
  padding: 11px 16px 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: #062a23;
  color: #fff;
  box-shadow: 0 18px 40px -14px rgba(6, 42, 35, 0.6);
}

.downloadMeta .platformDownload.isPrimary:hover {
  transform: translateY(-2px);
  background: var(--ink);
}

.downloadMeta .platformDownload.isNeutral {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 9px 14px 9px 11px;
  border: 1px solid rgba(3, 38, 31, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.28);
  color: #03261f;
}

.downloadMeta .platformDownload.isNeutral:hover {
  border-color: rgba(3, 38, 31, 0.42);
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.downloadMeta .platformDownloadMark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.09);
}

.downloadMeta .platformDownload.isNeutral .platformDownloadMark {
  border-color: rgba(3, 38, 31, 0.14);
  background: rgba(255, 255, 255, 0.4);
}

.downloadMeta .platformDownload.isAlternate {
  order: 2;
  align-self: center;
  color: rgba(3, 38, 31, 0.7);
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(3, 38, 31, 0.24);
  text-underline-offset: 4px;
}

.downloadMeta .platformDownload.isAlternate:hover {
  color: #03261f;
}

/* ============================ footer ============================ */

.siteFooter {
  border-top: 1px solid rgba(27, 29, 36, 0.08);
}

.siteFooter .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--ink-faint);
  font-size: 13.5px;
  font-weight: 600;
}

.siteFooter .footBrand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
}

.siteFooter .footBrand img { width: 24px; height: 24px; border-radius: 7px; }

.siteFooter nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.siteFooter nav a:hover { color: var(--mint-deep); }

/* ============================ responsive ============================ */

@media (max-width: 1000px) {
  .heroInner { grid-template-columns: 1fr; }
  .heroVisual { max-width: 400px; margin-top: 12px; }
  .valueGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story { grid-template-columns: 1fr; gap: 34px; }
  .story.flip .storyText { order: 0; }
  .memoryMockBody {
    grid-template-columns: 1fr;
  }
  .memorySourcesMock {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(27, 29, 36, 0.07);
  }
}

/* Keep unsupported downloads visibly disabled on every landing-page variant. */
.heroActions .platformDownload.isUnsupported,
.heroActions .platformDownload.isUnsupported:hover,
.downloadMeta .platformDownload.isUnsupported,
.downloadMeta .platformDownload.isUnsupported:hover {
  border-color: rgba(3, 38, 31, 0.18);
  background: #dfe4e0;
  color: #59625c;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

@media (max-width: 720px) {
  .siteHeader nav .navLink { display: none; }
  .valueStrip { margin-top: 24px; }
  .valueGrid { grid-template-columns: 1fr; }
  .memoryUserBubble,
  .memoryAnswerBubble {
    max-width: 100%;
    width: 100%;
  }
  .downloadCard { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================================
   Cute & trendy layer — grain, glow, sticker tilts, wiggle hovers, paws
   =========================================================================== */

/* keep anchored sections clear of the sticky header */
[id] {
  scroll-margin-top: 84px;
}

/* film grain for depth on dark surfaces */
.hero {
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

.heroInner {
  position: relative;
  z-index: 1;
}

/* dreamy color glow swirling behind the mascot */
.heroVisual::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(
    from 120deg,
    rgba(92, 240, 210, 0.55),
    rgba(255, 194, 77, 0.5),
    rgba(255, 122, 107, 0.55),
    rgba(92, 240, 210, 0.55)
  );
  filter: blur(48px);
  opacity: 0.6;
  animation: spinBlob 20s linear infinite;
}

@keyframes spinBlob {
  to {
    transform: rotate(360deg);
  }
}

/* float chips become tilted little stickers; translate + rotate compose cleanly */
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

.floatChip {
  gap: 7px;
  font-weight: 800;
  rotate: -2.5deg;
  transition: scale 0.18s ease;
}

.floatChip.c2 { rotate: 2.5deg; }
.floatChip.c3 { rotate: -3.5deg; }
.floatChip:hover { scale: 1.06; }

/* value cards — squishy lift + icon wiggle */
@keyframes wiggle {
  0%, 100% { transform: rotate(-4deg); }
  30% { transform: rotate(-13deg); }
  65% { transform: rotate(7deg); }
}

.valueCard {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease;
}

.valueCard:hover {
  transform: translateY(-7px) rotate(-0.7deg);
  box-shadow: var(--shadow-lg);
}

.valueCard .vIcon {
  border-radius: 15px;
  transform: rotate(-4deg);
  transition: transform 0.25s ease;
}

.valueCard:hover .vIcon {
  animation: wiggle 0.55s ease;
}

/* playful pill / chip hovers */
.langChips span {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.langChips span:hover {
  transform: translateY(-3px) rotate(-2deg);
}

/* a big friendly paw peeking out of the download card */
.downloadCard {
  position: relative;
  overflow: hidden;
}

.downloadCard::after {
  content: "🐾";
  position: absolute;
  right: -6px;
  bottom: -26px;
  font-size: 150px;
  line-height: 1;
  opacity: 0.14;
  rotate: -18deg;
  pointer-events: none;
}

.downloadCard > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .heroVisual::before { animation: none; }
  .valueCard:hover .vIcon { animation: none; }
}

/* ======================= PRICING ======================= */
.pricing { padding: 96px 0; }
.pricing .wrap { text-align: center; }
.pricing .sectionHead { text-align: center; max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); }
.pricing .sectionHead .eyebrow { margin-inline: auto; }
.pricing .sectionHead p.lead { margin-inline: auto; }

.billingToggle {
  display: inline-flex; gap: 4px; margin: 28px auto 40px; padding: 5px;
  background: var(--cream-deep); border-radius: var(--r-pill); width: max-content;
}
.billOpt {
  border: 0; cursor: pointer; font: inherit; font-weight: 600;
  padding: 9px 20px; border-radius: var(--r-pill); color: var(--ink-soft);
  background: transparent; display: inline-flex; align-items: center; gap: 8px;
  transition: background .18s, color .18s;
}
.billOpt.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.save {
  font-size: .72rem; font-weight: 700; color: var(--mint-deep);
  background: var(--mint-wash); padding: 2px 8px; border-radius: var(--r-pill);
}

.pricingGrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch; text-align: left;
}
.priceCard {
  position: relative; background: var(--surface); border: 1px solid var(--cream-deep);
  border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.priceCard.featured {
  border: 2px solid var(--mint); box-shadow: var(--shadow-mint); transform: translateY(-8px);
}
.ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--mint); color: #fff; font-size: .74rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: var(--shadow-sm);
}
.priceHead h3 { font-size: 1.3rem; margin: 0; }
.priceBlurb { color: var(--ink-faint); margin: 4px 0 0; font-size: .92rem; }
.priceTag { margin: 16px 0 20px; }
.priceTag .amount { font-size: 2.3rem; font-weight: 800; letter-spacing: -.02em; }
.priceTag .amount small { font-size: .95rem; font-weight: 600; color: var(--ink-faint); }
.priceList { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.priceList li {
  position: relative; padding-left: 26px; color: var(--ink-soft); font-size: .94rem; line-height: 1.4;
}
.priceList li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--mint-deep); font-weight: 800;
}
.pricingFoot { margin-top: 30px; color: var(--ink-faint); font-size: .88rem; }

.pricingGrid[data-cycle="monthly"] .yearly { display: none; }
.pricingGrid[data-cycle="yearly"] .monthly { display: none; }

@media (max-width: 1000px) {
  .pricingGrid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .priceCard.featured { transform: none; }
}

/* ======================= LEGAL ======================= */
.legal { max-width: 820px; margin: 0 auto; padding: 64px 24px 100px; }
.legal h1 { font-size: 2rem; margin: 0 0 6px; }
.legal .legalMeta { color: var(--ink-faint); margin: 0 0 34px; font-size: .9rem; }
.legal h2 { font-size: 1.16rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; font-size: .98rem; }
.legal ul { padding-left: 20px; margin: 10px 0; }
.legal li { margin: 6px 0; }
.legal a { color: var(--mint-deep); }

/* ============== Mascot illustrations (matches the app's sticker set) ============== */
.mockAvatar {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 999px;
  object-fit: cover;
  vertical-align: -5px;
  border: 1px solid rgba(10, 125, 111, 0.25);
  background: #fff;
}

.downloadMascot {
  flex: 0 0 auto;
  width: clamp(96px, 11vw, 132px);
  filter: drop-shadow(0 14px 22px rgba(3, 38, 31, 0.3));
  animation: floaty 3.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .downloadMascot { animation: none; }
}

/* ===========================================================================
   Product mockups 2.0: sidebar app shell (redesign 2026-07)
   Used by every story mock across index.html, ko.html, education.html, and
   global-meetings.html. The older tabbed-frame mock classes were removed once
   all landing pages switched to this sidebar shell.
   =========================================================================== */

.mockChrome {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface-warm);
  border-bottom: 1px solid rgba(27, 29, 36, 0.07);
}

.mockShell {
  display: flex;
  align-items: stretch;
}

.mockRail {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 14px;
  width: 120px;
  padding: 16px 11px;
  border-right: 1px solid rgba(27, 29, 36, 0.07);
  background: var(--surface-warm);
}

.mockRailBrand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 800;
}

.mockRailRec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: var(--r-pill);
  background: var(--coral);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  box-shadow: 0 8px 16px -8px rgba(255, 122, 107, 0.6);
}

.mockRailRec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.mockRailNav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-faint);
}

.mockRailNav span {
  padding: 6px 8px;
  border-radius: 9px;
}

.mockRailNav span.on {
  background: var(--mint-wash);
  color: var(--mint-deep);
}

.mockRailList {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 8px;
  border-top: 1px solid rgba(27, 29, 36, 0.08);
}

.mockRailItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 7px 8px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
}

.mockRailItem.on {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.mockRailItem .t {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockRailItem .badge {
  flex: 0 0 auto;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  font-size: 8.5px;
  font-weight: 800;
  white-space: nowrap;
}

.mockRailItem .badge.live { background: var(--coral-wash); color: var(--coral-deep); }
.mockRailItem .badge.rec { background: var(--gold-wash); color: var(--gold-deep); }
.mockRailItem .badge.note { background: var(--mint-wash); color: var(--mint-deep); }

.mockMain {
  flex: 1;
  min-width: 0;
  padding: 18px 20px;
  background: var(--surface);
}

.mockMemoryMain {
  padding: 0;
}

/* ---- dictation stream ---- */

.miniChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  background: var(--surface-warm);
  border: 1px solid rgba(27, 29, 36, 0.09);
  color: var(--ink-soft);
  font-size: 11.5px;
  font-weight: 800;
}

.miniChip.rec {
  background: var(--coral-wash);
  border-color: #ffd2cb;
  color: var(--coral-deep);
}

.miniChip.rec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral-deep);
  animation: pulse 1.6s ease-in-out infinite;
}

.dictTop {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.dictStream {
  display: grid;
  gap: 15px;
}

.dictLine {
  display: grid;
  gap: 6px;
}

.dictSpeaker {
  justify-self: start;
  padding: 2px 9px;
  border-radius: var(--r-pill);
  background: var(--mint-wash);
  color: var(--mint-deep);
  font-size: 10.5px;
  font-weight: 800;
}

.dictLine p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(14px, 1.6vw, 16.5px);
  font-weight: 600;
  line-height: 1.5;
}

.dictLine.live .caret {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 3px;
  vertical-align: text-bottom;
  border-radius: 2px;
  background: var(--mint);
  animation: blink 1.1s step-end infinite;
}

/* ---- Kitty conversation shell ---- */

.mockAssistantMain {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(420px 200px at 80% -10%, rgba(255, 122, 107, 0.08), transparent),
    var(--surface);
}

/* ---- meeting notes detail mini ---- */

.mockNoteHead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.mockNoteTitle {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.mockPaws {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.mockPaw {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: var(--r-pill);
  background: var(--surface-warm);
  color: var(--ink-faint);
  font-size: 10.5px;
  font-weight: 800;
  white-space: nowrap;
}

.mockPaw.done {
  background: var(--mint-wash);
  color: var(--mint-deep);
}

.mockPawTrail {
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: rgba(27, 29, 36, 0.14);
}

.mockSummary {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.mockSummary li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.mockSummary li strong {
  color: var(--ink);
  font-weight: 800;
}

.mockSummary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: var(--mint-wash)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a7d6f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 10px no-repeat;
}

.mockAudioDock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(27, 29, 36, 0.09);
  background: var(--surface-warm);
}

.mockPlay {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  font-size: 10px;
}

.mockTrack {
  flex: 1;
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(27, 29, 36, 0.1);
  overflow: hidden;
}

.mockTrack i {
  display: block;
  height: 100%;
  width: var(--pos, 40%);
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--mint), var(--mint-bright));
}

.mockTime {
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .mockRail {
    display: none;
  }

  .mockMain {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .heroActions {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .heroActions .platformDownload.isPrimary {
    grid-column: 1;
  }

  .heroActions .platformDownload.isAlternate,
  .heroTextLink {
    justify-self: start;
  }

  .heroMeta {
    gap: 9px 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .miniChip.rec i,
  .dictLine.live .caret {
    animation: none;
  }
}

/* ===========================================================================
   Product landing 3.0 — index + Korean index only
   The campaign pages intentionally keep the shared design above.
   =========================================================================== */

.productLanding {
  background: #f6f7f4;
  color: #151916;
}

.productLanding .siteHeader {
  height: 72px;
  border-bottom-color: rgba(21, 25, 22, 0.08);
  background: rgba(246, 247, 244, 0.86);
}

.productLanding .siteHeader .navCta {
  padding: 10px 18px;
  background: #151916;
}

.productHero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 9vw, 124px);
  background:
    radial-gradient(700px 480px at 8% 10%, rgba(75, 224, 183, 0.17), transparent 64%),
    radial-gradient(760px 520px at 92% 24%, rgba(112, 123, 255, 0.1), transparent 66%),
    #f6f7f4;
}

.productHero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(21, 25, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 25, 22, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.productHero .wrap {
  width: min(1380px, calc(100% - 64px));
}

.productHeroGrid {
  display: grid;
  grid-template-columns: minmax(390px, 0.76fr) minmax(620px, 1.24fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: center;
}

.productHeroCopy {
  min-width: 0;
}

.productHero h1 {
  max-width: 680px;
  margin: 0;
  color: #121512;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.productHero h1 > span {
  color: #6a756f;
}

html[lang="ko"] .productHero h1 {
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.productHeroLead {
  max-width: 570px;
  margin: 26px 0 0;
  color: #4d5650;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.productLanding .productHero .heroActions {
  width: min(100%, 430px);
  margin-top: 30px;
}

.productLanding .productHero .heroActions .platformDownload.isPrimary {
  min-height: 68px;
  border: 1px solid #151916;
  background: #151916;
  color: #fff;
  box-shadow: 0 20px 36px -20px rgba(13, 23, 18, 0.62);
}

.productLanding .productHero .heroActions .platformDownload.isPrimary:hover {
  background: #26322c;
  box-shadow: 0 24px 42px -20px rgba(13, 23, 18, 0.72);
}

.productLanding .productHero .heroActions .platformDownloadMark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.productLanding .productHero .heroActions .platformDownload.isNeutral {
  border-color: rgba(21, 25, 22, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: #151916;
}

.productLanding .productHero .heroActions .platformDownload.isNeutral .platformDownloadMark {
  border-color: rgba(21, 25, 22, 0.1);
  background: #eef2ed;
}

.productLanding .productHero .heroActions .platformDownload.isAlternate,
.productLanding .productHero .heroTextLink {
  color: #5a645e;
  text-decoration-color: rgba(21, 25, 22, 0.22);
}

.productLanding .productHero .heroActions .platformDownload.isAlternate:hover,
.productLanding .productHero .heroTextLink:hover {
  color: #151916;
}

.productLanding .productHero .heroMeta {
  color: #66716b;
}

.productLanding .productHero .heroMeta span::before {
  background: #22b991;
}

.productLanding .productHero .heroMeta .deviceMatch {
  border-color: rgba(8, 121, 93, 0.16);
  background: rgba(34, 185, 145, 0.08);
  color: #356357;
}

/* Interactive product walkthrough */

.productDemo {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 22, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 50px 90px -46px rgba(21, 25, 22, 0.42),
    0 10px 26px rgba(21, 25, 22, 0.08);
  transform: perspective(1600px) rotateY(-1.4deg) rotateX(0.5deg);
  transform-origin: left center;
}

.productDemoChrome {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-bottom: 1px solid #e7ebe7;
  background: #fbfcfa;
}

.productDemoChrome .lights i {
  width: 9px;
  height: 9px;
}

.productDemoTitle {
  color: #49524d;
  font-size: 11px;
  font-weight: 800;
}

.productDemoLive {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
  color: #985049;
  font-size: 10px;
  font-weight: 800;
}

.productDemoLive i,
.productLiveStatus i,
.productDemoRecord i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b61;
  animation: productPulse 1.8s ease-in-out infinite;
}

.productDemoControls {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 5px;
  padding: 8px;
  border-bottom: 1px solid #e7ebe7;
  background: #f4f6f3;
}

.productDemoControls button {
  position: relative;
  min-width: 0;
  min-height: 39px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #778079;
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 800;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.productDemoControls button b {
  margin-right: 4px;
  color: #a1a9a3;
  font-size: 8.5px;
}

.productDemoControls button:hover {
  background: rgba(255, 255, 255, 0.72);
  color: #222824;
}

.productDemoControls button[aria-pressed="true"] {
  background: #fff;
  color: #131713;
  box-shadow: 0 3px 10px rgba(21, 25, 22, 0.08);
}

.productDemoControls button[aria-pressed="true"] b {
  color: #0d9976;
}

.productDemoControls .productDemoPause {
  width: 39px;
  color: #525c56;
}

.productDemoWorkspace {
  display: grid;
  grid-template-columns: 118px minmax(220px, 0.88fr) minmax(280px, 1.12fr);
  min-height: 420px;
  background: #fff;
}

.productDemoSidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 11px;
  border-right: 1px solid #e7ebe7;
  background: #f7f8f5;
}

.productDemoBrand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #171b18;
  font-size: 10px;
  font-weight: 900;
}

.productDemoBrand img {
  width: 19px;
  height: 19px;
  border-radius: 6px;
}

.productDemoRecord {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 8px 9px;
  border-radius: 9px;
  background: #181d19;
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
}

.productDemoNav,
.productDemoMeeting {
  padding: 7px 8px;
  border-radius: 8px;
  color: #7a847e;
  font-size: 8.5px;
  font-weight: 700;
}

.productDemoNav.selected {
  background: #dff7ef;
  color: #08775b;
}

.productDemoMeeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: 5px;
  border-top: 1px solid #e2e6e2;
  border-radius: 0;
  color: #535d57;
}

.productDemoMeeting + .productDemoMeeting {
  margin-top: 0;
  border-top: 0;
}

.productDemoMeeting.selected {
  margin-top: 8px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(21, 25, 22, 0.07);
}

.productDemoMeeting small {
  color: #d75a50;
  font-size: 7px;
  text-transform: uppercase;
}

.productDemoTranscript {
  min-width: 0;
  padding: 18px 17px;
  border-right: 1px solid #e7ebe7;
  transition: opacity 0.35s ease, background 0.35s ease;
}

.productDemoTranscript > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eef1ee;
}

.productDemoTranscript > header strong {
  color: #1a1f1b;
  font-size: 11px;
}

.productDemoTranscript > header span {
  padding: 4px 7px;
  border-radius: 99px;
  background: #eff3ef;
  color: #69736d;
  font-size: 7.5px;
  font-weight: 800;
}

.productTranscriptStream {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.productTranscriptStream article {
  padding: 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.productTranscriptStream article > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.productTranscriptStream article b {
  padding: 3px 7px;
  border-radius: 99px;
  background: #e2f7f0;
  color: #08795d;
  font-size: 8px;
}

.productTranscriptStream article:nth-child(2) b {
  background: #fff0e8;
  color: #b45b31;
}

.productTranscriptStream article:nth-child(3) b {
  background: #eeefff;
  color: #5964bd;
}

.productTranscriptStream time {
  color: #9ba39e;
  font-size: 7.5px;
  font-weight: 700;
}

.productTranscriptStream p {
  margin: 7px 0 0;
  color: #333b36;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.55;
}

.productTranscriptStream .isTyping i {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -2px;
  background: #13aa83;
  animation: productBlink 1s step-end infinite;
}

.productDemoRail {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 16px;
  background: #fbfcfa;
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.productDemoRailTabs {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 10px;
  background: #eef1ed;
}

.productDemoRailTabs span {
  flex: 1;
  padding: 6px;
  border-radius: 7px;
  color: #848c87;
  font-size: 8.5px;
  font-weight: 800;
  text-align: center;
}

.productDemoRailTabs span.selected {
  background: #fff;
  color: #171b18;
  box-shadow: 0 2px 6px rgba(21, 25, 22, 0.08);
}

.productLiveNotes {
  padding-top: 12px;
}

.productLiveStatus {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #e9f8f2;
  color: #17715b;
  font-size: 8px;
  font-weight: 800;
}

.productLiveStatus i {
  width: 6px;
  height: 6px;
  background: #22b991;
}

.productLiveStatus b {
  margin-left: auto;
}

.productNoteTopic {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 0 4px 9px 13px;
  border-left: 2px solid #30c69f;
}

.productNoteTopic small {
  color: #08745a;
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.productNoteTopic strong {
  color: #202621;
  font-size: 11px;
}

.productNoteItem {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 9px;
  border: 1px solid #e4e9e4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 9px rgba(21, 25, 22, 0.035);
}

.productNoteItem .noteIcon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #f1efff;
  color: #665ac2;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.productNoteItem .noteIcon.action {
  background: #fff2e6;
  color: #bd642c;
  font-size: 11px;
}

.productNoteItem p {
  margin: 0;
  color: #454d48;
  font-size: 8.5px;
  line-height: 1.42;
}

.productNoteItem p b {
  display: block;
  margin-bottom: 2px;
  color: #222723;
  font-size: 7.5px;
  text-transform: uppercase;
}

.productNoteItem .noteMore {
  padding: 0;
  border: 0;
  background: transparent;
  color: #919994;
  font: inherit;
  font-size: 8px;
}

.savedPill {
  padding: 3px 5px;
  border-radius: 99px;
  background: #def7ef;
  color: #08795d;
  font-size: 6.5px;
  font-weight: 900;
}

.productKitty {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 16px;
}

.productKittyQuestion {
  justify-self: end;
  max-width: 90%;
  padding: 10px 11px;
  border-radius: 11px 11px 4px 11px;
  background: #171b18;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.productKittyAnswer {
  padding: 12px;
  border: 1px solid #e2e8e3;
  border-radius: 12px 12px 12px 4px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(21, 25, 22, 0.07);
}

.kittyName {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #18201b;
  font-size: 9px;
  font-weight: 900;
}

.kittyName img {
  width: 19px;
  height: 19px;
  border-radius: 50%;
}

.productKittyAnswer p {
  margin: 9px 0 0;
  color: #3f4842;
  font-size: 9.5px;
  line-height: 1.52;
}

.productSourcePills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.productSourcePills span {
  padding: 4px 7px;
  border: 1px solid #bfe8dc;
  border-radius: 99px;
  background: #e8f8f3;
  color: #08795d;
  font: inherit;
  font-size: 7px;
  font-weight: 900;
}

.addToNotes {
  display: block;
  text-align: center;
  padding: 8px;
  border: 1px solid #cdd5cf;
  border-radius: 9px;
  background: transparent;
  color: #4a554e;
  font: inherit;
  font-size: 8px;
  font-weight: 800;
}

.productEvidence {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid #b9dfd4;
  border-radius: 12px;
  background: rgba(247, 255, 252, 0.98);
  box-shadow: 0 18px 34px rgba(16, 64, 50, 0.17);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.productEvidence span {
  color: #08745a;
  font-size: 6.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.productEvidence strong {
  color: #202622;
  font-size: 9px;
}

.productEvidence p {
  margin: 2px 0 0;
  color: #48534c;
  font-size: 9.5px;
}

.productDemo[data-active-step="transcript"] .productDemoRail {
  background: #f7f8f6;
  opacity: 0.74;
}

.productDemo[data-active-step="live-notes"] .productDemoRail {
  background: #fbfffd;
  box-shadow: inset 3px 0 #32c7a0;
}

.productDemo[data-active-step="live-notes"] .productDemoTranscript,
.productDemo[data-active-step="kitty"] .productDemoTranscript {
  opacity: 0.72;
}

.productDemo[data-active-step="live-notes"] .newNote {
  animation: productNoteIn 0.58s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.productDemo[data-active-step="kitty"] .productDemoRail {
  background: #fafaff;
  box-shadow: inset 3px 0 #7a76e8;
}

.productDemo[data-active-step="sources"] [data-source-line="m3"] {
  border-color: #8ed6c2;
  background: #edfbf6;
  transform: translateX(3px);
}

.productDemo[data-active-step="sources"] .productEvidence {
  opacity: 1;
  transform: translateY(0);
}

.productLanding .pricing {
  background: #fff;
}

.productLanding .download {
  padding-top: clamp(64px, 8vw, 96px);
  background: #fff;
}

@keyframes productPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.72); }
}

@keyframes productBlink {
  50% { opacity: 0; }
}

@keyframes productNoteIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .productHeroGrid {
    grid-template-columns: minmax(340px, 0.75fr) minmax(540px, 1.25fr);
    gap: 38px;
  }

  .productDemoWorkspace {
    grid-template-columns: 98px minmax(185px, 0.85fr) minmax(250px, 1.15fr);
  }

  .productDemoSidebar {
    padding-inline: 9px;
  }
}

@media (max-width: 980px) {
  .productHero .wrap {
    width: min(760px, calc(100% - 40px));
  }

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

  .productHeroCopy {
    max-width: 680px;
  }

  .productDemo {
    transform: none;
  }
}

@media (max-width: 720px) {
  .productLanding .siteHeader {
    height: 64px;
  }

  .productLanding .siteHeader nav {
    gap: 8px;
  }

  .productLanding .languageLink {
    padding: 7px 10px;
    font-size: 12px;
  }

  .productLanding .siteHeader .navCta {
    padding: 9px 13px;
    font-size: 12px;
  }

  .productHero {
    padding-top: 52px;
  }

  .productHero .wrap {
    width: calc(100% - 28px);
    max-width: 620px;
  }

  .productHero h1,
  html[lang="ko"] .productHero h1 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .productHeroGrid,
  .productHeroCopy,
  .productLanding .productHero .heroActions,
  .productLanding .productHero .heroActions .platformDownload {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .productHeroLead {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .productDemoControls {
    grid-template-columns: repeat(4, minmax(70px, 1fr)) auto;
    overflow-x: auto;
  }

  .productDemoControls button {
    white-space: nowrap;
  }

  .productDemoWorkspace {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    min-height: 390px;
  }

  .productDemoSidebar {
    display: none;
  }

  .productDemoTranscript {
    padding: 14px 11px;
  }

  .productDemoTranscript > header {
    display: grid;
  }

  .productTranscriptStream {
    gap: 10px;
    padding-top: 11px;
  }

  .productTranscriptStream article {
    padding: 7px;
  }

  .productTranscriptStream p {
    font-size: 8.5px;
  }

  .productDemoRail {
    padding: 11px;
  }

  .productNoteItem {
    grid-template-columns: auto 1fr;
    padding: 8px;
  }

  .productNoteItem .noteMore,
  .savedPill {
    display: none;
  }
}

@media (max-width: 460px) {
  html[lang="ko"] .productHero h1 {
    font-size: 37px;
  }

  .productLanding .productHero .heroActions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .productLanding .productHero .heroActions .platformDownload.isAlternate,
  .productLanding .productHero .heroTextLink {
    align-self: flex-start;
  }

  .productDemoWorkspace {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .productDemoTranscript {
    display: block;
    min-height: 230px;
    padding: 12px 11px;
    border-right: 0;
    border-bottom: 1px solid #e7ebe7;
  }

  .productDemoTranscript > header {
    display: flex;
    padding-bottom: 9px;
  }

  .productTranscriptStream {
    gap: 5px;
    padding-top: 7px;
  }

  .productTranscriptStream article {
    padding: 5px 7px;
  }

  .productTranscriptStream p {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.35;
  }

  .productDemoRail {
    min-height: 330px;
  }

  .productDemoControls button b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .productDemo,
  .productDemo * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
