/* ============================================================================
   HoblemercyTech Business Growth Assessment — Stylesheet
   ============================================================================ */

:root {
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-muted: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;

  --violet:  #7C3AED;
  --purple:  #8A2BE2;
  --indigo:  #6366F1;
  --fuchsia: #A855F7;

  --brand-primary:   var(--violet);
  --brand-secondary: var(--purple);
  --brand-accent:    var(--fuchsia);
  --brand-support:   var(--indigo);

  --border-color: #E2E8F0;
  --card-bg: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --glow: 0 0 24px rgba(124,58,237,0.28);
  --glow-lg: 0 0 40px rgba(124,58,237,0.4);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 96px;

  --font-display: "Sora", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

[data-theme="dark"] {
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-muted: #1A2235;
  --text-primary: #E2E8F0;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --violet: #8B5CF6;
  --purple: #A78BFA;
  --indigo: #818CF8;
  --fuchsia: #C084FC;
  --border-color: #1E293B;
  --card-bg: #111827;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
  --glow: 0 0 28px rgba(139,92,246,0.45);
  --glow-lg: 0 0 50px rgba(139,92,246,0.55);
}

/* ============================================================
   RESET / GLOBAL
============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

.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;
}

/* ============================================================
   HEADER
============================================================ */

.site-header {
  position: sticky;
  top: var(--space-xs);
  z-index: 100;
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: var(--space-xs) auto 0;
}

.header-inner {
  min-height: 68px;
  padding: 10px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);

  background: color-mix(
    in srgb,
    var(--card-bg) 88%,
    transparent
  );

  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);

  box-shadow:
    var(--shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo-block {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.035em;
}

.logo-accent {
  color: transparent;
  background: linear-gradient(
    135deg,
    var(--brand-primary),
    var(--brand-accent)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.logo-tagline {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 9px 13px;
  border-radius: 12px;

  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-primary);
  background: rgba(124, 58, 237, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.icon-btn {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);

  background: var(--bg-muted);
  color: var(--text-primary);

  cursor: pointer;
  font-size: 1rem;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.icon-btn:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.mobile-menu-btn {
  display: none;
}

/* ============================================================
   HERO
============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 720px;
  padding: 90px 24px 100px;

  display: flex;
  align-items: center;
}

/* The background is now restricted to the hero section */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;

  width: 100%;
  height: 100%;

  overflow: hidden;
  pointer-events: none;

  background:
    linear-gradient(135deg, #f8f7ff, #eef2ff);
}

.hero-bg-image {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center right;

  transform: scale(1.01);
}

/* Keeps the text readable while leaving the dashboard visible */

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(248, 250, 252, 0.99) 0%,
      rgba(248, 250, 252, 0.96) 27%,
      rgba(248, 250, 252, 0.79) 42%,
      rgba(248, 250, 252, 0.27) 62%,
      rgba(248, 250, 252, 0.04) 82%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(248, 250, 252, 0.16)
    );
}

/* Dark mode overlay */

[data-theme="dark"] .hero-bg-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.98) 0%,
      rgba(15, 23, 42, 0.93) 28%,
      rgba(15, 23, 42, 0.72) 45%,
      rgba(15, 23, 42, 0.25) 65%,
      rgba(15, 23, 42, 0.06) 84%,
      transparent 100%
    );
}

[data-theme="dark"] .hero-bg-image {
  filter:
    brightness(0.65)
    saturate(1.08);
}

.hero-inner {
  position: relative;
  z-index: 2;

  width: min(1180px, 100%);
  margin-inline: auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(380px, 1.05fr);

  align-items: center;
  gap: 56px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 15px;

  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  color: #6d28d9;
  font-size: 0.8rem;
  font-weight: 750;

  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;

  box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

[data-theme="dark"] .eyebrow {
  color: #c4b5fd;
  background: rgba(15, 23, 42, 0.64);
  border-color: rgba(167, 139, 250, 0.24);
}

.eyebrow i {
  color: #7c3aed;
}

.eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #a78bfa;
}

.hero-title {
  max-width: 640px;
  margin: 0;

  color: var(--text-primary);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.hero-title-accent {
  display: block;
  margin-top: 12px;

  color: transparent;
  background: linear-gradient(
    100deg,
    #7c3aed 0%,
    #6366f1 48%,
    #2563eb 100%
  );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero-subtitle {
  max-width: 600px;
  margin: 26px 0 0;

  color: var(--text-secondary);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
}

.hero-benefits {
  margin-top: 25px;

  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-benefits i {
  color: #7c3aed;
}

.hero-cta-row {
  margin-top: 32px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.btn-primary {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #ffffff;

  background: linear-gradient(
    135deg,
    #7c3aed,
    #9333ea 48%,
    #6366f1
  );

  box-shadow:
    0 18px 38px rgba(124, 58, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 60%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn-primary:hover::before {
  left: 150%;
}

.btn-primary:hover {
  transform: translateY(-4px);

  box-shadow:
    0 24px 48px rgba(124, 58, 237, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.32);
  outline-offset: 4px;
}

.btn-lg {
  min-height: 58px;
  padding: 16px 24px;

  border-radius: 17px;
  font-size: 0.97rem;
  font-weight: 750;
}

.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-cta-note i {
  color: #7c3aed;
}

.hero-trust {
  width: fit-content;
  max-width: 500px;
  margin-top: 28px;
  padding: 13px 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 16px;

  box-shadow:
    0 10px 28px rgba(76, 29, 149, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

[data-theme="dark"] .hero-trust {
  background: rgba(15, 23, 42, 0.66);
  border-color: rgba(167, 139, 250, 0.18);
}

.hero-trust-icon {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 13px;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
}

.hero-trust div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust strong {
  color: var(--text-primary);
  font-size: 0.84rem;
}

.hero-trust span {
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-visual-space {
  min-height: 520px;
}

/* ============================================================
   TABLET
============================================================ */

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
    padding-block: 80px;
  }

  .hero-bg-image {
    object-position: 65% center;
  }

  .hero-bg-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(248, 250, 252, 0.99) 0%,
        rgba(248, 250, 252, 0.94) 45%,
        rgba(248, 250, 252, 0.52) 68%,
        rgba(248, 250, 252, 0.08) 100%
      );
  }

  [data-theme="dark"] .hero-bg-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.99) 0%,
        rgba(15, 23, 42, 0.94) 45%,
        rgba(15, 23, 42, 0.56) 70%,
        rgba(15, 23, 42, 0.1) 100%
      );
  }

  .hero-inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(240px, 0.55fr);

    gap: 24px;
  }

  .hero-title {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

  .hero-visual-space {
    min-height: 430px;
  }
}

/* ============================================================
   MOBILE HEADER
============================================================ */

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .header-inner {
    position: relative;
    min-height: 66px;
    padding: 9px 11px 9px 17px;
    border-radius: 22px;
  }

  .logo-tagline {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;

    padding: 12px;

    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }
}

/* ============================================================
   MOBILE HERO
============================================================ */

@media (max-width: 768px) {
  .hero {
    min-height: 780px;
    padding: 64px 18px 285px;
    align-items: flex-start;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: 100%;
  }

  /*
   * On mobile the dashboard sits toward the bottom.
   * This keeps the copy readable without creating a huge blank space.
   */

  .hero-bg-image {
    object-position: 70% bottom;
  }

  .hero-bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, 0.99) 0%,
        rgba(248, 250, 252, 0.98) 46%,
        rgba(248, 250, 252, 0.78) 60%,
        rgba(248, 250, 252, 0.24) 78%,
        rgba(248, 250, 252, 0.04) 100%
      );
  }

  [data-theme="dark"] .hero-bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.99) 0%,
        rgba(15, 23, 42, 0.97) 47%,
        rgba(15, 23, 42, 0.78) 63%,
        rgba(15, 23, 42, 0.25) 82%,
        rgba(15, 23, 42, 0.05) 100%
      );
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .hero-title-accent {
    margin-top: 10px;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-benefits {
    display: grid;
    gap: 11px;
    margin-top: 22px;
  }

  .hero-benefits span {
    font-size: 0.9rem;
  }

  .hero-cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }

  .btn-lg {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
  }

  .hero-cta-note {
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    width: 100%;
    margin-top: 24px;
  }

  .hero-visual-space {
    display: none;
  }
}

/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 430px) {
  .hero {
    min-height: 750px;
    padding:
      58px
      16px
      245px;
  }

  .hero-bg-image {
    object-position: 72% bottom;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12.5vw, 3.25rem);
  }

  .eyebrow {
    margin-bottom: 20px;
    padding: 9px 12px;
    font-size: 0.71rem;
  }

  .btn-lg {
    font-size: 0.91rem;
  }

  .hero-trust {
    align-items: flex-start;
    padding: 13px;
  }
}
/* ============================================================
   Pain-point strip
   ============================================================ */
.pain-strip {
  position: relative;
  z-index: 1;
  padding: var(--space-md) var(--space-sm);
  background: var(--bg-muted);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.pain-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 780px) {
  .pain-strip-inner { grid-template-columns: repeat(3, 1fr); }
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.pain-item i {
  color: var(--brand-accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.pain-item strong { color: var(--text-primary); }

/* ============================================================
   How it works
   ============================================================ */
.how-it-works {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-sm);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.how-mascot {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--card-bg);
  box-shadow: var(--shadow-md);
  background: var(--bg-muted);
  margin: 0 auto var(--space-xs);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: var(--space-sm) 0 var(--space-xs);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  text-align: left;
}
@media (min-width: 640px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

.how-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(248, 245, 255, 0.96)
    );

  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 30px;

  box-shadow:
    0 24px 70px rgba(76, 29, 149, 0.12),
    0 8px 24px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.how-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;

  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.55),
    rgba(99, 102, 241, 0.14),
    rgba(59, 130, 246, 0.4)
  );

  opacity: 0.5;
}

.how-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;

  background: rgba(124, 58, 237, 0.14);
  filter: blur(55px);
  pointer-events: none;
}

.how-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 58, 237, 0.55);

  box-shadow:
    0 34px 85px rgba(76, 29, 149, 0.18),
    0 14px 34px rgba(99, 102, 241, 0.14);
}

/* Image section */

.how-card-media {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  background: #eeeafd;
}

.how-card-media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;

  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}

.how-card:hover .how-card-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.how-card-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.42) 0%,
      rgba(15, 23, 42, 0.05) 55%,
      transparent 100%
    );
}

/* Floating step button */

.how-step {
  position: absolute;
  left: 22px;
  bottom: 20px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;

  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;

  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.how-step i {
  color: #c4b5fd;
}

/* Content area */

.how-card-body {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.how-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.how-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 15px;
  color: #ffffff;
  font-size: 1.05rem;

  background: linear-gradient(
    135deg,
    #7c3aed,
    #6366f1
  );

  box-shadow:
    0 12px 28px rgba(124, 58, 237, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.how-label {
  display: inline-flex;
  align-items: center;

  padding: 9px 14px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;

  color: #7c3aed;
  font-size: 0.85rem;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.08),
    rgba(99, 102, 241, 0.06)
  );
}

.how-card h3 {
  margin: 0 0 14px;
color : black;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.how-label h3 {
  margin: 0 0 14px;
  color: black;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.how-card p {
  margin: 0;

  color: var(--text-secondary, #475569);
  font-size: 1rem;
  line-height: 1.75;
}

/* Tags */

.how-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.how-tags span {
  padding: 9px 15px;
  border-radius: 999px;

  color: #6d28d9;
  font-size: 0.84rem;
  font-weight: 650;

  background: linear-gradient(
    135deg,
    rgba(237, 233, 254, 0.95),
    rgba(238, 242, 255, 0.95)
  );

  border: 1px solid rgba(124, 58, 237, 0.1);
}

/* Responsive */

@media (max-width: 768px) {
  .how-card {
    border-radius: 24px;
  }

  .how-card-media,
  .how-card-media img {
    min-height: 250px;
  }

  .how-card-body {
    padding: 24px 20px;
  }

  .how-card h3 {
    font-size: 1.4rem;
  }

  .how-card p {
    font-size: 0.96rem;
  }

  .how-step {
    left: 16px;
    bottom: 16px;
  }
}


/* ============================================================

   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 3px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover:not(:disabled) { box-shadow: var(--glow-lg); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-ghost {
  background: var(--bg-muted);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-ghost:hover { background: var(--border-color); }

.btn-spinner { display: inline-flex; }

/* ============================================================
   Assessment shell
   ============================================================ */
.assessment-section {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-sm) var(--space-xl);
}

.assessment-shell {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  padding-bottom: 100px; /* space for sticky nav on mobile */
}

@media (min-width: 860px) {
  .assessment-shell { padding-bottom: var(--space-md); }
}

/* Progress bar */
.progress-wrap { margin-bottom: var(--space-md); }
.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.progress-track {
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 11%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Steps */
.form-step {
  border: none;
  animation: stepIn 0.35s ease;
}
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.step-desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.field { margin-bottom: var(--space-sm); }
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

label, legend {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
legend { padding: 0; }

.req { color: var(--brand-accent); }
.optional { color: var(--text-muted); font-weight: 500; font-size: 0.85rem; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
select,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-muted);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea { min-height: 90px; resize: vertical; }

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.15);
}

.field-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.error-msg {
  display: none;
  color: #DC2626;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
}
[data-theme="dark"] .error-msg { color: #F87171; }
.error-msg.visible { display: block; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
fieldset.field.has-error {
  border-color: #DC2626;
}

/* Choice pills (radio/checkbox groups) */
.radio-grid, .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.choice-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-muted);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  min-height: 48px;
}
.choice-pill input {
  accent-color: var(--brand-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.choice-pill:has(input:checked) {
  border-color: var(--brand-primary);
  background: rgba(124,58,237,0.08);
  box-shadow: 0 0 0 1px var(--brand-primary) inset;
}
.choice-pill input:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }

/* Yes/No question list (built dynamically by JS) */
.yesno-list { margin-bottom: var(--space-sm); }
.yesno-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border-color);
}
.yesno-item:last-child { border-bottom: none; }
.yesno-question { font-weight: 500; font-size: 0.92rem; flex: 1; }
.yesno-toggle {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.yesno-btn {
  border: 1.5px solid var(--border-color);
  background: var(--bg-muted);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  min-height: 40px;
  transition: all 0.15s;
}
.yesno-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  border-color: transparent;
  color: #fff;
}
.yesno-btn:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }

.mini-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin: var(--space-sm) 0 var(--space-xs);
}

.conditional-block {
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.consent-field { display: flex; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
}
.consent-check input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--brand-primary);
}

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Sticky bottom nav */
.step-nav {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.step-nav .btn { flex: 1; }

@media (max-width: 720px) {
  .step-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    padding: 12px var(--space-sm);
    margin-top: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }
}

/* ============================================================
   Preview
   ============================================================ */
.preview-content { display: flex; flex-direction: column; gap: var(--space-sm); }
.preview-card {
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}
.preview-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-primary);
}
.preview-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border-color);
}
.preview-row:last-child { border-bottom: none; }
.preview-row dt { color: var(--text-secondary); }
.preview-row dd { font-weight: 600; text-align: right; }
.preview-tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.preview-tag {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   Result screen
   ============================================================ */
.result-content { display: flex; flex-direction: column; align-items: center; gap: var(--space-md); text-align: center; }

.score-ring-wrap { position: relative; width: 180px; height: 180px; }
.score-ring-wrap svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.score-ring-bg { fill: none; stroke: var(--bg-muted); stroke-width: 12; }
.score-ring-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 12;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4,0,0.2,1);
}
.score-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; }
.score-ring-total { font-size: 0.85rem; color: var(--text-muted); }

.score-level-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
}

.score-message { color: var(--text-secondary); max-width: 500px; }

.result-section { width: 100%; text-align: left; background: var(--bg-muted); border-radius: var(--radius-md); padding: var(--space-sm); }
.result-section h3 { font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.result-section h3 i { color: var(--brand-primary); }
.result-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.result-section li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.92rem; }
.result-section li i { margin-top: 3px; flex-shrink: 0; }
.result-section.strengths li i { color: #16A34A; }
.result-section.improve li i { color: var(--brand-accent); }
.result-section.needs li i { color: var(--brand-primary); }

.success-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(168,85,247,0.1));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}
.success-card h3 { margin-bottom: 8px; }

.restart-link {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* ===========================
   Modal Backdrop
=========================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  
  background: rgba(0, 0, 0, .35);
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  opacity: 0;
  visibility: hidden;
  
  transition: .3s ease;
  
  z-index: 9998;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   Toasts
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(92vw, 420px);
}
.toast {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  animation: toastIn 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.toast.error { border-left-color: #DC2626; }
.toast i { margin-top: 2px; color: var(--brand-primary); }
.toast.error i { color: #DC2626; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: var(--space-md) var(--space-sm) var(--space-lg);
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-disclaimer { margin-top: 6px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   Utility
   ============================================================ */
[hidden] { display: none !important; }
/* ============================================================
   AI VOICE ASSISTANT
============================================================ */

.ai-voice-assistant {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 9999;
  font-family: var(--font-body, "Inter", sans-serif);
}


/* Floating launcher */

.ai-voice-launcher {
  position: relative;
  min-width: 112px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 17px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      var(--violet, #7c3aed),
      var(--fuchsia, #ec4899)
    );
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow:
    0 18px 45px rgba(124, 58, 237, 0.34),
    0 6px 18px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ai-voice-launcher:hover {
  transform: translateY(-3px);
  box-shadow:
    0 23px 55px rgba(124, 58, 237, 0.42),
    0 9px 22px rgba(15, 23, 42, 0.18);
}

.ai-voice-launcher i {
  font-size: 1rem;
}

.ai-voice-launcher-label {
  position: relative;
  z-index: 2;
}

.ai-voice-launcher-pulse {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  border: 2px solid rgba(124, 58, 237, 0.42);
  animation: aiVoicePulse 2.1s ease-out infinite;
}

@keyframes aiVoicePulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}


/* Assistant card */

.ai-voice-card {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(390px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 24px;
  background: var(--card-bg, #ffffff);
  box-shadow:
    0 28px 80px rgba(15, 23, 42, 0.24),
    0 8px 24px rgba(124, 58, 237, 0.12);
  opacity: 0;
  visibility: hidden;
  transform:
    translateY(18px)
    scale(0.96);
  transform-origin: right bottom;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.ai-voice-card.open {
  opacity: 1;
  visibility: visible;
  transform:
    translateY(0)
    scale(1);
  pointer-events: auto;
}


/* Header */

.ai-voice-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
  background:
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.1),
      rgba(236, 72, 153, 0.04)
    );
}

.ai-voice-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.ai-voice-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background:
    linear-gradient(
      135deg,
      var(--violet, #7c3aed),
      var(--fuchsia, #ec4899)
    );
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.25);
}

.ai-voice-online-dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--card-bg, #ffffff);
  border-radius: 50%;
  background: #22c55e;
}

.ai-voice-label {
  display: block;
  margin-bottom: 3px;
  color: var(--violet, #7c3aed);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ai-voice-identity strong {
  display: block;
  overflow: hidden;
  color: var(--text-primary, #0f172a);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-voice-close {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 50%;
  background: var(--bg-secondary, #ffffff);
  color: var(--text-secondary, #475569);
  cursor: pointer;
  transition: 0.22s ease;
}

.ai-voice-close:hover {
  border-color: var(--violet, #7c3aed);
  color: var(--violet, #7c3aed);
  transform: rotate(8deg);
}


/* Body */

.ai-voice-card-body {
  padding: 18px;
}

.ai-voice-status {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.ai-voice-status-icon {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--violet, #7c3aed);
}

.ai-voice-status-icon.speaking i {
  animation: aiVoiceSpeaking 0.9s ease-in-out infinite alternate;
}

@keyframes aiVoiceSpeaking {
  from {
    transform: scale(0.88);
  }

  to {
    transform: scale(1.12);
  }
}

.ai-voice-status strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-primary, #0f172a);
  font-size: 0.8rem;
}

.ai-voice-status p {
  color: var(--text-secondary, #475569);
  font-size: 0.69rem;
  line-height: 1.55;
}


/* Fake audio progress */

.ai-voice-progress {
  height: 6px;
  margin: 15px 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-muted, #f1f5f9);
}

.ai-voice-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      var(--violet, #7c3aed),
      var(--fuchsia, #ec4899)
    );
  transition: width 0.25s linear;
}

.ai-voice-transcript {
  margin-bottom: 15px;
  padding: 13px;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 13px;
  background: var(--bg-muted, #f1f5f9);
  color: var(--text-secondary, #475569);
  font-size: 0.69rem;
  line-height: 1.65;
}


/* Controls */

.ai-voice-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  margin-bottom: 11px;
}

.ai-voice-btn,
.ai-voice-start-btn {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  font: inherit;
  font-size: 0.69rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}

.ai-voice-btn {
  padding: 9px 12px;
  border: 1px solid var(--border-color, #e2e8f0);
  background: var(--bg-secondary, #ffffff);
  color: var(--text-secondary, #475569);
}

.ai-voice-btn.primary {
  border-color: transparent;
  background: var(--text-primary, #0f172a);
  color: var(--bg-secondary, #ffffff);
}

.ai-voice-btn.icon-only {
  width: 43px;
  padding: 0;
}

.ai-voice-btn:hover:not(:disabled),
.ai-voice-start-btn:hover {
  transform: translateY(-2px);
}

.ai-voice-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ai-voice-start-btn {
  width: 100%;
  padding: 11px 15px;
  border: none;
  background:
    linear-gradient(
      135deg,
      var(--violet, #7c3aed),
      var(--fuchsia, #ec4899)
    );
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.24);
}

.saved-progress-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 11px;
  background: rgba(34, 197, 94, 0.07);
  color: var(--text-secondary, #475569);
  font-size: 0.65rem;
  line-height: 1.5;
}

.saved-progress-notice i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #22c55e;
}


/* Dark mode */

[data-theme="dark"] .ai-voice-card {
  background: var(--card-bg, #111827);
}

[data-theme="dark"] .ai-voice-transcript,
[data-theme="dark"] .ai-voice-btn {
  background: var(--bg-muted, #1a2235);
}


/* Mobile */

@media (max-width: 600px) {
  .ai-voice-assistant {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .ai-voice-card {
    position: fixed;
    right: 8px;
    bottom: calc(136px + env(safe-area-inset-bottom));
    left: 8px;
    width: auto;
    max-height: calc(100dvh - 160px);
    overflow-y: auto;
    transform-origin: center bottom;
  }

  .ai-voice-launcher {
    min-width: 54px;
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
  }

  .ai-voice-launcher-label {
    display: none;
  }

  .ai-voice-controls {
    grid-template-columns: 1fr auto auto;
  }
}