:root {
  --primary: #4f46e5;
  --primary-deep: #2f1c6a;
  --primary-soft: #eeeaff;
  --coral: #ff7a59;
  --peach: #ffe9e2;
  --background: #fcfbff;
  --surface: #ffffff;
  --surface-tint: #fff8f5;
  --text: #171717;
  --muted: #666666;
  --border: #eae7f5;
  --rose: #fff0f3;
  --lilac: #f1ecff;
  --amber: #fff5d9;
  --sky: #eaf7ff;
  --shadow: 0 24px 70px rgba(47, 28, 106, 0.11);
  --soft-shadow: 0 14px 34px rgba(47, 28, 106, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 233, 226, 0.58) 0, rgba(252, 251, 255, 0) 520px),
    linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0, rgba(255, 255, 255, 0) 34%),
    var(--background);
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

img,
svg {
  display: block;
}

.container {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(234, 231, 245, 0.78);
  background: rgba(252, 251, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--primary-deep);
}

.brand-word {
  font-size: 20px;
  line-height: 1;
}

.cap-bro {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.cap-bro-small {
  width: 42px;
  height: 42px;
}

.cap-bro-large {
  width: 88px;
  height: 88px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #49445e;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
}

.lang-button {
  min-width: 36px;
  min-height: 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.lang-button.active {
  background: var(--primary-deep);
  color: #ffffff;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
  white-space: nowrap;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), #6c4df6);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(79, 70, 229, 0.24);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-deep);
}

.section,
.section-compact {
  padding: 96px 0;
}

.section-compact {
  padding-top: 72px;
  padding-bottom: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr);
  align-items: center;
  gap: 46px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--primary-deep);
  font-size: 68px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

h2 {
  margin-bottom: 16px;
  color: var(--primary-deep);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

h3 {
  margin-bottom: 10px;
  color: var(--primary-deep);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 630px;
  margin-bottom: 28px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(234, 231, 245, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #514a64;
  font-size: 12px;
  font-weight: 800;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
}

.store-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(47, 28, 106, 0.12);
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.store-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.visual-ribbon {
  position: absolute;
  inset: 52px 0 42px 64px;
  z-index: -1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 122, 89, 0.16), rgba(79, 70, 229, 0.17)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  transform: rotate(-3deg);
}

.phone {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 28, 106, 0.16);
  border-radius: 32px;
  background: #17122b;
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 86px;
  height: 23px;
  border-radius: 999px;
  background: #0d0a1c;
  content: "";
  transform: translateX(-50%);
}

.phone::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.hero-phone {
  width: 360px;
  min-height: 574px;
  margin-left: 58px;
  padding: 48px 22px 22px;
}

.phone-side {
  position: absolute;
  right: 2px;
  bottom: 16px;
  width: 210px;
  min-height: 350px;
  padding: 46px 18px 18px;
  background: #fffaf7;
}

.phone-main {
  background:
    linear-gradient(180deg, #fff9f4 0%, #f6f2ff 58%, #ffffff 100%);
}

.phone-top {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 900;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--peach);
  color: #9a3e28;
  font-size: 11px;
  font-weight: 900;
}

.brief-card,
.draft-card,
.bro-check,
.send-card {
  border: 1px solid rgba(234, 231, 245, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(47, 28, 106, 0.07);
}

.brief-card {
  padding: 18px;
  margin-bottom: 14px;
}

.brief-card strong {
  display: block;
  margin: 5px 0 5px;
  color: var(--primary-deep);
  font-size: 22px;
  line-height: 1.1;
}

.brief-card p,
.draft-card p,
.bro-check p,
.send-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.tiny-label {
  display: block;
  color: #7a7190;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.draft-card,
.send-card {
  padding: 16px;
  margin-bottom: 12px;
}

.draft-card {
  background: #fff7f4;
}

.draft-card p {
  color: #322b45;
  font-weight: 800;
}

.bro-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff9e9;
}

.check-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffe5a8;
  color: #9c6400;
}

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

.send-card {
  background: #f2f0ff;
}

.send-card p {
  color: var(--primary-deep);
  font-weight: 900;
}

.score-ring {
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  margin: 24px auto 20px;
  border: 14px solid var(--primary);
  border-right-color: #f3decd;
  border-radius: 50%;
  color: var(--primary-deep);
}

.score-ring span {
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
}

.score-ring small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tone-list {
  display: grid;
  gap: 9px;
}

.tone-list span,
.today-stack span,
.pro-grid span {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 900;
}

.insight-section {
  padding: 64px 0;
  border-top: 1px solid rgba(234, 231, 245, 0.7);
  border-bottom: 1px solid rgba(234, 231, 245, 0.7);
  background: rgba(255, 255, 255, 0.58);
}

.insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 44px;
}

.section-heading {
  max-width: 690px;
}

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
}

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

.mini-card,
.step-card,
.feature-card,
.mood-card,
.move-card,
.flow-panel,
.pro-layout,
.trust-layout,
.faq-list details,
.final-layout {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.mini-card,
.step-card,
.feature-card,
.mood-card {
  padding: 24px;
}

.mini-card svg,
.feature-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--primary);
  stroke-width: 2.2;
}

.mini-card p,
.step-card p,
.feature-card p,
.mood-card p {
  margin-bottom: 0;
  font-size: 15px;
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.flow-example {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.25fr;
  align-items: stretch;
  gap: 14px;
  margin-top: 28px;
}

.flow-panel {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.flow-panel p {
  margin: 8px 0 0;
  color: var(--primary-deep);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.45;
}

.flow-panel-accent {
  background: #f1ecff;
}

.flow-arrow {
  display: grid;
  width: 34px;
  place-items: center;
  color: var(--primary);
}

.feature-band {
  background:
    linear-gradient(180deg, rgba(241, 236, 255, 0.72), rgba(255, 248, 245, 0.72)),
    rgba(255, 255, 255, 0.56);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-card:nth-child(2) svg {
  color: var(--coral);
}

.feature-card:nth-child(3) svg {
  color: #cf8a00;
}

.feature-card:nth-child(4) svg {
  color: #1183aa;
}

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

.mood-card {
  position: relative;
  overflow: hidden;
}

.mood-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
}

.mood-rose {
  background: var(--rose);
}

.mood-rose::before {
  background: #ff8e9e;
}

.mood-lilac {
  background: var(--lilac);
}

.mood-lilac::before {
  background: var(--primary);
}

.mood-amber {
  background: var(--amber);
}

.mood-amber::before {
  background: #f0ae24;
}

.mood-sky {
  background: var(--sky);
}

.mood-sky::before {
  background: #37a8d7;
}

.mood-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.mood-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mood-card dt {
  color: #746d84;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mood-card dd {
  margin: 0;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.mood-card blockquote {
  min-height: 72px;
  margin: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.green-flag-section {
  background: #ffffff;
}

.green-flag-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 48px;
}

.move-list {
  display: grid;
  gap: 12px;
}

.move-card {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  color: var(--primary-deep);
  font-size: 17px;
  font-weight: 900;
}

.move-card svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--coral);
}

.showcase-section {
  background:
    linear-gradient(180deg, rgba(255, 233, 226, 0.62), rgba(252, 251, 255, 0.88)),
    #ffffff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 22px;
}

.showcase-phone {
  width: min(100%, 315px);
  min-height: 520px;
  padding: 48px 20px 22px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fffaf7, #f7f3ff);
}

.featured-phone {
  min-height: 565px;
}

.brief-card.compact strong {
  font-size: 19px;
}

.today-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.risk-meter {
  margin: 16px 0;
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.meter {
  height: 12px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadff5;
}

.meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--primary));
}

.repair-list {
  display: grid;
  gap: 12px;
}

.repair-list div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.repair-list span {
  display: block;
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 900;
}

.repair-list p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.trust-section {
  padding-top: 72px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 42px;
  padding: 38px;
  background: var(--primary-deep);
}

.trust-layout h2,
.trust-layout p,
.trust-layout .section-kicker {
  color: #ffffff;
}

.trust-layout p {
  max-width: 760px;
  margin-bottom: 0;
  opacity: 0.82;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list > span {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 850;
}

.trust-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #ffc3b4;
}

.pro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 34px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(241, 236, 255, 0.9), rgba(255, 233, 226, 0.74)),
    #ffffff;
}

.pro-copy p {
  max-width: 620px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 21px 22px;
}

.faq-list summary {
  color: var(--primary-deep);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  font-size: 15px;
}

.final-cta {
  padding: 48px 0 86px;
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.6fr);
  align-items: center;
  gap: 38px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.94), rgba(47, 28, 106, 0.98)),
    var(--primary-deep);
  color: #ffffff;
}

.final-layout h2 {
  max-width: 690px;
  color: #ffffff;
}

.final-layout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.final-copy {
  display: grid;
  gap: 18px;
}

.waitlist-form {
  display: grid;
  gap: 12px;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-weight: 700;
}

.waitlist-form input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.form-note {
  min-height: 24px;
  font-size: 13px;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-layout > span {
  color: var(--primary-deep);
  font-weight: 900;
}

.footer-layout div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .insight-grid,
  .green-flag-layout,
  .trust-layout,
  .pro-layout,
  .faq-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-phone {
    margin-left: 0;
  }

  .phone-side {
    right: 30px;
  }

  .mini-card-grid,
  .feature-grid,
  .mood-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-phone,
  .featured-phone {
    min-height: 505px;
  }

  .trust-layout {
    padding: 32px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    position: static;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-word {
    font-size: 18px;
  }

  .nav-actions {
    gap: 7px;
  }

  .nav-cta {
    display: none;
  }

  .section,
  .section-compact {
    padding: 66px 0;
  }

  .section-compact {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: 46px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  p,
  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-ribbon {
    inset: 30px 4px 40px;
  }

  .hero-phone {
    width: 100%;
    min-height: 555px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .phone-side {
    position: relative;
    right: auto;
    bottom: auto;
    width: 88%;
    min-height: 295px;
    margin: -42px auto 0;
  }

  .proof-row span {
    width: 100%;
    justify-content: center;
  }

  .mini-card-grid,
  .steps-grid,
  .feature-grid,
  .mood-grid,
  .pro-grid {
    grid-template-columns: 1fr;
  }

  .flow-example {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 100%;
    min-height: 24px;
    transform: rotate(90deg);
  }

  .green-flag-layout,
  .faq-layout {
    gap: 28px;
  }

  .trust-layout,
  .pro-layout,
  .final-layout {
    padding: 26px;
  }

  .final-layout {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding-bottom: 56px;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .cap-bro-small {
    width: 34px;
    height: 34px;
  }

  .lang-button {
    min-width: 32px;
  }

  .hero-phone {
    min-height: 586px;
  }

  .phone-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .mood-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .mood-card dd {
    text-align: left;
  }
}
