:root {
  color-scheme: light;
  --ink: #062a33;
  --ink-soft: #334155;
  --sky: #e0f2fe;
  --sky-deep: #0369a1;
  --link: #0369a1;
  --accent: #0369a1;
  --surface: #ffffff;
  --muted: #64748b;
  --border: #e2e8f0;
  --hero: linear-gradient(
    160deg,
    #f0f9ff 0%,
    #fffbf5 30%,
    #faf5ff 62%,
    #f4fdf7 100%
  );
  --page-bg: #ffffff;
  --section-tint: #ffffff;
  --btn-gradient: linear-gradient(135deg, #7ec8e8 0%, #b8d4f0 45%, #d4b8e0 100%);
  --btn-shadow: #9bb8e8;
  --app-bg: #eef6fa;
  --app-primary: #7ec8e8;
  --app-border: #c5e4f3;
  --app-peach: #ffe6b5;
  --app-sage: #a8d5b5;
  --app-coral: #ffb6b3;
  --app-lavender: #d4b8e0;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page-bg);
}

a {
  color: var(--link);
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 252, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 22%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.hero {
  background: var(--hero);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.hero-inner,
.section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
}

.eyebrow {
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.08;
  margin: 0.5rem 0 1rem;
  font-weight: 800;
}

.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--btn-gradient);
  color: var(--ink);
  border: 1px solid #b8d4f0;
  box-shadow: 0 4px 0 var(--btn-shadow), 0 10px 24px rgba(124, 58, 237, 0.12);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  border-color: var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.trust-pill:nth-child(1) {
  border-color: #f0c878;
  background: #fffaf0;
}

.trust-pill:nth-child(2) {
  border-color: #9fd4ef;
  background: #f7fcff;
}

.trust-pill:nth-child(3) {
  border-color: #d4b8e0;
  background: #fdfaff;
}

.trust-pill:nth-child(4) {
  border-color: #9fd4b0;
  background: #f7fdf9;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.hero-glow {
  position: absolute;
  inset: 5% 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 230, 181, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 75% 30%, rgba(212, 184, 224, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 55% 70%, rgba(168, 213, 181, 0.2) 0%, transparent 48%),
    radial-gradient(circle at 35% 65%, rgba(126, 200, 232, 0.18) 0%, transparent 50%);
  filter: blur(28px);
  z-index: 0;
}

.device-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  border-radius: 2.25rem;
  padding: 0.65rem;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  box-shadow:
    0 24px 48px rgba(6, 42, 51, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.device-notch {
  width: 34%;
  height: 0.45rem;
  margin: 0.15rem auto 0.5rem;
  border-radius: 999px;
  background: #020617;
}

.device-screen {
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--app-bg);
  border: 1px solid var(--app-border);
}

.mock-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border-bottom: 1px solid var(--app-border);
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-app-header strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
}

.mock-lock {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--app-bg);
  font-weight: 700;
  color: var(--sky-deep);
}

.mock-message-bar {
  padding: 0.55rem 0.65rem;
  background: #fff;
  border-bottom: 1px solid var(--app-border);
}

.mock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-height: 2.1rem;
  align-items: center;
}

.mock-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: var(--app-peach);
  border: 1px solid #f5d9a8;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-chip img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}

.mock-actions {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.mock-btn {
  flex: 1;
  text-align: center;
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  border: 1px solid var(--app-border);
  background: #fff;
  color: var(--ink-soft);
}

.mock-btn-speak {
  background: var(--app-primary);
  border-color: #5eb8dc;
  color: var(--ink);
  box-shadow: 0 3px 0 #5eb8dc;
}

.mock-grid-label {
  padding: 0.45rem 0.65rem 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0 0.55rem 0.75rem;
}

.mock-cell {
  aspect-ratio: 1;
  border-radius: 1rem;
  background: #fff;
  border: 2px solid var(--app-border);
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.25rem;
  text-align: center;
}

.mock-cell img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.mock-cell span {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

.mock-cell-folder {
  background: rgba(126, 200, 232, 0.12);
  border-color: var(--app-primary);
}

.mock-cell-active {
  outline: 2px solid var(--sky-deep);
  outline-offset: 1px;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.section-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-alt {
  background: var(--section-tint);
  border-block: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--sky);
  color: var(--sky-deep);
  font-weight: 800;
  font-size: 0.95rem;
}

.step-card:nth-child(1) .step-number {
  background: #dff3fc;
}

.step-card:nth-child(2) .step-number {
  background: #ffe6b5;
}

.step-card:nth-child(3) .step-number {
  background: #e8dff5;
}

.step-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.step-visual {
  border-radius: 1rem;
  background: var(--app-bg);
  border: 1px solid var(--app-border);
  padding: 0.75rem;
  min-height: 7.5rem;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.feature-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .feature-row-reverse .feature-copy {
    order: 2;
  }

  .feature-row-reverse .feature-visual {
    order: 1;
  }
}

.feature-copy h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.feature-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

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

.feature-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--sky-deep);
  font-weight: 800;
  flex-shrink: 0;
}

.feature-visual {
  display: flex;
  justify-content: center;
}

.device-frame-compact {
  width: min(100%, 280px);
}

.mock-settings {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-settings-card {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 1rem;
  padding: 0.65rem 0.75rem;
}

.mock-settings-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
}

.mock-settings-card p {
  margin: 0;
  font-size: 0.65rem;
  color: var(--muted);
}

.mock-pin-dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.mock-pin-dots span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--app-primary);
}

.mock-routine {
  padding: 0.75rem;
}

.mock-routine-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.4rem;
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.mock-routine-step img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  padding: 1.15rem;
}

.benefit-card:nth-child(1) {
  border-top: 3px solid #7ec8e8;
}

.benefit-card:nth-child(2) {
  border-top: 3px solid #a8d5b5;
}

.benefit-card:nth-child(3) {
  border-top: 3px solid #d4b8e0;
}

.benefit-card:nth-child(4) {
  border-top: 3px solid #ffe6b5;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.benefit-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid #d4b8e0;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.section h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.section p,
.section li {
  color: var(--ink-soft);
}

.site-footer {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.prose {
  max-width: 42rem;
}

.prose main,
main.prose {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem auto 3rem;
  max-width: 42rem;
  width: calc(100% - 2.5rem);
}

.prose h1 {
  font-size: 1.75rem;
}

.prose h2 {
  font-size: 1.125rem;
  margin-top: 2rem;
}

.updated {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-lead {
  margin: -0.35rem 0 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.25rem 1rem 0.75rem;
}

.faq-item[open] {
  border-color: #c5e4f3;
  border-left: 3px solid #7ec8e8;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
  padding: 0.65rem 0;
  list-style-position: outside;
}

.faq-item summary::-webkit-details-marker {
  color: var(--sky-deep);
}

.faq-item p {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mock-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem;
  padding: 0.35rem 0.55rem 0.5rem;
  background: #fff;
  border-bottom: 1px solid var(--app-border);
}

.mock-tool-btn {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  line-height: 1;
  color: var(--ink-soft);
}

.mock-tool-btn-active {
  background: var(--app-primary);
  border-color: #5eb8dc;
  color: var(--ink);
  box-shadow: 0 2px 0 #5eb8dc;
}

.mock-tool-labels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  margin-top: 0.65rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.mock-typed-input {
  min-height: 1.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.75rem;
  border: 2px dashed var(--app-border);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.mock-keyboard {
  display: grid;
  gap: 0.25rem;
  padding: 0.35rem;
}

.mock-keyboard-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0.2rem;
}

.mock-keyboard-row-numbers {
  grid-template-columns: repeat(10, 1fr);
}

.mock-key {
  aspect-ratio: 1;
  border-radius: 0.55rem;
  border: 1px solid var(--app-border);
  background: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.mock-key-number {
  background: #fff4e8;
  border-color: #f5b76a;
}

.mock-key-space {
  grid-column: span 4;
  aspect-ratio: auto;
  height: 1.35rem;
  font-size: 0.55rem;
}

.mock-board-list {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mock-board-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 0.85rem;
  border: 1px solid var(--app-border);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 700;
}

.mock-board-item-active {
  border-color: var(--sky-deep);
  background: #f0f9ff;
}

.mock-board-badge {
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: var(--app-sage);
  color: var(--ink);
}

.mock-first-then {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.35rem;
  align-items: stretch;
  padding: 0.65rem;
}

.mock-first-then-panel {
  border-radius: 0.85rem;
  border: 2px solid var(--app-border);
  background: #fff;
  padding: 0.45rem;
  text-align: center;
}

.mock-first-then-panel strong {
  display: block;
  font-size: 0.58rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-first-then-panel img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.mock-first-then-panel span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 800;
}

.mock-first-then-arrow {
  align-self: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--sky-deep);
}

.mock-routine-card {
  border: 1px solid var(--app-border);
  border-radius: 0.85rem;
  background: #fff;
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.4rem;
}

.mock-routine-card h4 {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.mock-routine-card p {
  margin: 0 0 0.4rem;
  font-size: 0.58rem;
  color: var(--muted);
}

.mock-routine-start {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
}

.mock-edit-toolbar {
  display: flex;
  gap: 0.3rem;
  padding: 0.4rem 0.55rem;
  background: #fff;
  border-bottom: 1px solid var(--app-border);
  flex-wrap: wrap;
}

.mock-edit-pill {
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  background: var(--app-bg);
}

.mock-edit-pill-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.mock-cell-editing {
  position: relative;
  border-color: var(--sky-deep);
}

.mock-cell-editing::after {
  content: "Edit";
  position: absolute;
  top: -0.35rem;
  right: -0.2rem;
  font-size: 0.45rem;
  font-weight: 800;
  background: var(--sky-deep);
  color: #fff;
  padding: 0.1rem 0.3rem;
  border-radius: 999px;
}

.mock-swap-hint {
  font-size: 0.58rem;
  color: var(--muted);
  text-align: center;
  padding: 0.25rem 0.55rem 0.5rem;
}

.tools-showcase {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .tools-showcase {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.tools-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .tools-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tools-icon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.tools-icon-card:hover {
  border-color: #c5e4f3;
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.06);
}

.tools-icon-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.tools-icon-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.tools-icon-card .mock-tool-btn {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.audience-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #f0f9ff;
  color: var(--sky-deep);
  border: 1px solid #b8dff0;
}

.mock-profile-list {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mock-profile-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.6rem;
  border-radius: 0.9rem;
  border: 1px solid var(--app-border);
  background: #fff;
}

.mock-profile-item-active {
  border-color: var(--sky-deep);
  background: #f0f9ff;
  box-shadow: 0 0 0 1px rgba(3, 105, 161, 0.15);
}

.mock-profile-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--app-bg);
  border: 1px solid var(--app-border);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.mock-profile-copy strong {
  display: block;
  font-size: 0.72rem;
  color: var(--ink);
}

.mock-profile-copy span {
  display: block;
  font-size: 0.58rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.mock-profile-action {
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}

.mock-profile-action-muted {
  background: #e2e8f0;
  color: var(--ink-soft);
}

.mock-profile-switch-note {
  margin: 0 0.65rem 0.65rem;
  padding: 0.5rem 0.6rem;
  border-radius: 0.75rem;
  background: var(--app-sage);
  border: 1px solid #8bc9a0;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.tools-unlocked-panel {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .tools-unlocked-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.tools-unlocked-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.tools-unlocked-panel p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.mock-toolbar-unlocked {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.mock-tool-btn-type {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 0.82rem;
}

.labels-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem;
}

.labels-compare-col {
  border-radius: 0.85rem;
  border: 1px solid var(--app-border);
  background: #fff;
  padding: 0.45rem;
}

.labels-compare-col h4 {
  margin: 0 0 0.4rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}

.labels-compare-col .mock-grid {
  padding: 0;
  gap: 0.3rem;
}

.mock-cell-labels-off span {
  display: none;
}

.mock-cell-labels-off img {
  width: 70%;
  height: 70%;
}

.mock-personalize {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mock-style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.mock-style-chip {
  border-radius: 0.65rem;
  border: 2px solid var(--app-border);
  padding: 0.4rem 0.35rem;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  background: #fff;
}

.mock-style-chip span {
  display: block;
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.15rem;
}

.mock-style-chip-active {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 1px rgba(3, 105, 161, 0.2);
}

.mock-style-standard {
  background: linear-gradient(160deg, #eef6fa, #fff);
}

.mock-style-candy {
  background: linear-gradient(160deg, #ffe8f4, #ffd8ec);
}

.mock-style-splash {
  background: linear-gradient(160deg, #fff4c8, #ffe0a8);
}

.mock-style-sport {
  background: linear-gradient(160deg, #e8f8e8, #c8eac8);
}

.mock-style-party {
  background: linear-gradient(160deg, #f3e8ff, #e9d5ff);
}

.mock-style-professional {
  background: linear-gradient(160deg, #f1f5f9, #e2e8f0);
}

.mock-voice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.mock-voice-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  border-radius: 0.65rem;
  border: 1px solid var(--app-border);
  background: #fff;
  font-size: 0.58rem;
  font-weight: 700;
}

.mock-voice-chip-active {
  border-color: var(--sky-deep);
  background: #f0f9ff;
}

.mock-voice-chip small {
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--muted);
  display: block;
}

.mock-voice-preview {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--sky-deep);
  flex-shrink: 0;
}

.mock-personalize h4 {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink);
}

.edit-personalize-panel {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .edit-personalize-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.edit-personalize-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.edit-personalize-panel p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.mock-app-header-compact {
  padding: 0.35rem 0.65rem 0.25rem;
  border-bottom: none;
}

.mock-voice-group-label {
  margin: 0;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.mock-personalize .mock-voice-list {
  grid-template-columns: repeat(3, 1fr);
}

.style-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.5rem 0.65rem 0.35rem;
  border-top: 1px solid var(--app-border);
  background: var(--app-bg);
}

.style-compare-col {
  border-radius: 0.75rem;
  border: 1px solid var(--app-border);
  background: #fff;
  padding: 0.4rem;
}

.style-compare-col h4 {
  margin: 0 0 0.35rem;
  font-size: 0.52rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
}

.mock-grid-mini {
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  gap: 0.3rem;
}

.mock-grid-mini .mock-cell {
  border-radius: 0.75rem;
}

.mock-grid-mini .mock-cell span {
  font-size: 0.48rem;
}

.mock-grid-style-standard .mock-cell {
  background: #fff;
  border: 2px solid #c5e4f3;
  box-shadow: 0 2px 6px rgba(44, 62, 80, 0.06);
}

.mock-grid-style-candy .mock-cell {
  background: linear-gradient(145deg, #fff4fa 0%, #ffe8f4 55%, #ffd0e8 100%);
  border: 2px solid #ffc8e8;
  border-radius: 1rem;
  box-shadow:
    inset 0 -2px 0 rgba(255, 184, 216, 0.9),
    0 3px 0 #ff88b8,
    0 4px 8px rgba(255, 120, 170, 0.22);
}

.mock-grid-style-sport .mock-cell {
  background: linear-gradient(145deg, #f4faf5 0%, #e8f5e9 100%);
  border: 2px solid #a5d6a7;
  border-radius: 0.55rem;
  box-shadow: 0 3px 0 #2e7d32;
}

.mock-grid-style-splash .mock-cell {
  background: linear-gradient(145deg, #fff9e8 0%, #ffe8a8 100%);
  border: 2px solid #ffd060;
  border-radius: 1.1rem 0.7rem 1rem 0.8rem;
  box-shadow: 0 3px 0 #e8a030;
}

.mock-grid-style-party .mock-cell {
  background: linear-gradient(145deg, #fff0f6 0%, #fce7f3 100%);
  border: 2px solid #f9a8d4;
  border-radius: 999px 999px 0.85rem 0.85rem;
  box-shadow: 0 3px 0 #ec4899;
}

.mock-grid-style-professional .mock-cell {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 0.45rem;
  box-shadow: none;
}