@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #07111d;
  --ink-soft: #111f2d;
  --paper: #f5f2e9;
  --paper-bright: #fffdf7;
  --mint: #8ef0c5;
  --mint-bright: #b7ffdf;
  --coral: #f27965;
  --lime: #d8f67a;
  --blue: #8ec5ff;
  --line-dark: rgba(255, 255, 255, .13);
  --line-light: rgba(7, 17, 29, .14);
  --muted: #66717c;
  --shadow: 0 30px 80px rgba(0, 0, 0, .22);
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

.is-hidden {
  display: none !important;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .15;
}

.ambient-one {
  background: var(--mint);
  right: -220px;
  top: -160px;
}

.ambient-two {
  background: #377aff;
  left: -300px;
  top: 650px;
  opacity: .1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 42px;
  border-bottom: 1px solid var(--line-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  text-decoration: none;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font: 800 16px/1 "Manrope", sans-serif;
  letter-spacing: -.5px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(142, 240, 197, .35);
  border-radius: 11px;
  background: rgba(142, 240, 197, .08);
  transform: rotate(-5deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 5px;
  border-radius: 5px;
  background: var(--mint);
  bottom: 8px;
}

.brand-mark i:nth-child(1) {
  left: 8px;
  height: 9px;
}

.brand-mark i:nth-child(2) {
  left: 15px;
  height: 17px;
}

.brand-mark i:nth-child(3) {
  left: 22px;
  height: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
.dialog-close:focus-visible,
.back-button:focus-visible,
.mic-button:focus-visible,
.send-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.button-primary {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(142, 240, 197, .15);
}

.button-primary:hover {
  background: var(--mint-bright);
  box-shadow: 0 14px 48px rgba(142, 240, 197, .25);
}

.button-ghost {
  padding: 11px 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.button-small {
  padding: 11px 20px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding: 0 28px;
}

.button-link {
  min-height: 58px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.button-link:hover {
  color: var(--paper);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(540px, 1.05fr);
  align-items: center;
  gap: clamp(30px, 6vw, 96px);
  min-height: 880px;
  max-width: 1460px;
  margin: 0 auto;
  padding: 142px 42px 80px;
}

.hero::after {
  position: absolute;
  right: 4%;
  top: 17%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(142, 240, 197, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: var(--mint);
}

.hero h1,
.setup-copy h2,
.section-heading h2,
.company-section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -.065em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(66px, 7.3vw, 116px);
  font-weight: 700;
  line-height: .88;
}

h1 em,
h2 em {
  color: var(--mint);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.consent-note {
  margin: 16px 0 0 12px;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
}

.consent-note span {
  margin-right: 6px;
  color: var(--mint);
}

.trust-row {
  display: flex;
  gap: 30px;
  margin-top: 54px;
}

.trust-row div {
  display: flex;
  flex-direction: column;
  min-width: 94px;
  padding-left: 15px;
  border-left: 1px solid var(--line-dark);
}

.trust-row strong {
  font: 700 18px/1.2 "Manrope", sans-serif;
}

.trust-row span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
}

.lesson-window {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 30px;
  background: rgba(21, 34, 47, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
}

.lesson-window::before {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: rgba(142, 240, 197, .1);
  filter: blur(50px);
  content: "";
}

.window-topbar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}

.window-dots i:first-child {
  background: var(--coral);
}

.session-pill,
.level-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}

.session-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px var(--mint);
}

.level-pill {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
}

.preview-content {
  position: relative;
  padding: 36px 34px 30px;
}

.coach-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.coach-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(142, 240, 197, .38);
  border-radius: 13px 13px 13px 3px;
  background: var(--mint);
  color: var(--ink);
  font: 800 15px/1 "Manrope", sans-serif;
  box-shadow: 0 8px 24px rgba(142, 240, 197, .18);
}

.speaker-label {
  display: block;
  margin: 1px 0 8px;
  color: rgba(255, 255, 255, .36);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.message {
  padding: 15px 17px;
  border-radius: 4px 18px 18px 18px;
  font-size: 14px;
  line-height: 1.55;
}

.message-coach {
  max-width: 390px;
  background: rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .84);
}

.learner-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  text-align: right;
}

.learner-row .message {
  max-width: 390px;
  border-radius: 18px 4px 18px 18px;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
}

.feedback-preview {
  margin: 24px 0 26px 50px;
  padding: 18px 19px;
  border: 1px solid rgba(142, 240, 197, .2);
  border-radius: 18px;
  background: rgba(142, 240, 197, .06);
}

.feedback-title {
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.feedback-preview p {
  margin: 10px 0 6px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.feedback-preview blockquote {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  line-height: 1.5;
}

.word-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.word-chip-row span {
  padding: 5px 9px;
  border: 1px solid rgba(142, 240, 197, .2);
  border-radius: 999px;
  color: rgba(183, 255, 223, .75);
  font-size: 10px;
}

.speak-control {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  background: rgba(7, 17, 29, .55);
  color: rgba(255, 255, 255, .74);
  text-align: left;
  cursor: pointer;
}

.speak-control strong {
  align-self: end;
  font-size: 12px;
}

.speak-control small {
  align-self: start;
  color: rgba(255, 255, 255, .36);
  font-size: 10px;
}

.pulse-ring {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242, 121, 101, .3);
  border-radius: 50%;
  background: rgba(242, 121, 101, .1);
}

.pulse-ring i {
  color: var(--coral);
  font-style: normal;
  font-size: 10px;
}

.process-section {
  background: var(--paper);
  color: var(--ink);
  padding: 115px max(42px, calc((100vw - 1376px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  margin-bottom: 70px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(7, 17, 29, .42);
  font-size: 11px;
  font-weight: 700;
}

.section-number::after {
  width: 35px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-text {
  margin: 0 0 14px;
  color: #587264;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading h2,
.company-section h2 {
  color: var(--ink);
  font-size: clamp(45px, 5vw, 76px);
  line-height: 1;
}

.section-heading h2 em,
.company-section h2 em {
  color: #2b775c;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-grid article {
  position: relative;
  min-height: 340px;
  padding: 32px 42px 38px 0;
}

.process-grid article:not(:last-child) {
  margin-right: 42px;
  border-right: 1px solid var(--line-light);
}

.process-grid article > span {
  position: absolute;
  top: 26px;
  right: 22px;
  color: rgba(7, 17, 29, .25);
  font: 700 11px/1 "Manrope", sans-serif;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 44px 0 58px;
  border: 1px solid rgba(43, 119, 92, .35);
  border-radius: 50%;
  color: #2b775c;
  font-size: 20px;
}

.process-grid h3 {
  margin: 0 0 13px;
  font: 700 19px/1.2 "Manrope", sans-serif;
}

.process-grid p {
  max-width: 320px;
  margin: 0;
  color: #65706c;
  font-size: 14px;
  line-height: 1.7;
}

.value-section {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 660px;
}

.value-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 90px max(50px, calc((100vw - 1376px) / 2));
  padding-right: 8vw;
  background: var(--mint);
  color: var(--ink);
}

.value-quote p {
  max-width: 720px;
  margin: 0;
  font: 500 clamp(42px, 4.7vw, 72px)/1.05 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.value-quote span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.value-cards {
  padding: 70px 7vw;
  background: #0c1825;
}

.value-cards article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.value-cards strong {
  display: block;
  margin-bottom: 11px;
  font: 700 18px/1.2 "Manrope", sans-serif;
}

.value-cards p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.7;
}

.company-section {
  position: relative;
  padding: 120px max(42px, calc((100vw - 1376px) / 2));
  background: var(--paper-bright);
  color: var(--ink);
}

.company-section > div {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.company-section > div .eyebrow-text {
  margin: 0;
}

.company-section > p {
  max-width: 650px;
  margin: 34px 0 26px;
  color: #68736f;
  font-size: 17px;
  line-height: 1.75;
}

.company-section > a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #2b775c;
  font-weight: 700;
  text-underline-offset: 6px;
}

footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 46px max(42px, calc((100vw - 1376px) / 2));
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, .46);
}

footer p {
  margin: 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  text-decoration: none;
}

footer > small {
  white-space: nowrap;
  font-size: 10px;
}

.account-chip {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  padding: 5px 7px 5px 5px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 800;
}

.account-name {
  max-width: 110px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.app-section {
  display: grid;
  grid-template-columns: 270px 1fr;
  height: 100vh;
  min-height: 710px;
  padding-top: 92px;
  background: #0a1521;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 28px 18px 22px;
  border-right: 1px solid var(--line-dark);
}

.sidebar-label {
  margin: 0 0 12px 9px;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.new-session-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(142, 240, 197, .17);
  border-radius: 13px;
  background: rgba(142, 240, 197, .07);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.new-session-button span {
  font-size: 18px;
  font-weight: 400;
}

.history-wrap {
  min-height: 0;
  flex: 1;
  margin-top: 32px;
}

.history-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history-list {
  max-height: calc(100vh - 370px);
  overflow-y: auto;
}

.history-empty {
  padding: 12px 9px;
  color: rgba(255, 255, 255, .28);
  font-size: 12px;
  line-height: 1.6;
}

.history-item {
  width: 100%;
  padding: 12px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  text-align: left;
  cursor: pointer;
}

.history-item:hover,
.history-item.active {
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .88);
}

.history-item strong,
.history-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item strong {
  font-size: 12px;
}

.history-item span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .28);
  font-size: 10px;
}

.sidebar-tip {
  display: flex;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(216, 246, 122, .13);
  border-radius: 13px;
  background: rgba(216, 246, 122, .045);
  color: var(--lime);
}

.sidebar-tip p {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
  line-height: 1.55;
}

.sidebar-tip strong {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
}

.app-main {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.session-setup {
  height: 100%;
  overflow-y: auto;
  padding: 60px clamp(34px, 7vw, 110px);
  background-image: radial-gradient(circle at 86% 15%, rgba(142, 240, 197, .07), transparent 29%);
}

.setup-copy {
  margin-bottom: 36px;
}

.setup-copy h2 {
  max-width: 800px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: .98;
}

.setup-copy p {
  color: rgba(255, 255, 255, .48);
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
}

.field-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
}

.field-card > span,
.scenario-picker legend {
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field-card select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-weight: 700;
}

.field-card select option {
  background: var(--ink-soft);
}

.scenario-picker {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
}

.scenario-picker legend {
  margin-bottom: 12px;
}

.scenario-picker label {
  min-width: 0;
  cursor: pointer;
}

.scenario-picker input {
  position: absolute;
  opacity: 0;
}

.scenario-picker label > span {
  display: flex;
  flex-direction: column;
  min-height: 145px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.scenario-picker label:hover > span {
  transform: translateY(-2px);
}

.scenario-picker input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.scenario-picker input:checked + span {
  border-color: rgba(142, 240, 197, .58);
  background: rgba(142, 240, 197, .08);
}

.scenario-picker i {
  margin-bottom: auto;
  color: var(--mint);
  font-size: 21px;
  font-style: normal;
}

.scenario-picker strong {
  margin-top: 22px;
  font: 700 13px/1.2 "Manrope", sans-serif;
}

.scenario-picker small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
  line-height: 1.45;
}

.setup-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 10px;
}

.chat-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line-dark);
}

.chat-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.back-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
}

.chat-header h2 {
  margin: 0;
  font: 700 16px/1.2 "Manrope", sans-serif;
}

.chat-status {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
}

.chat-status > span {
  grid-row: 1 / span 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(142, 240, 197, .7);
}

.chat-status strong {
  font-size: 10px;
}

.chat-status small {
  color: rgba(255, 255, 255, .35);
  font-size: 9px;
}

.chat-messages {
  min-height: 0;
  overflow-y: auto;
  padding: 36px clamp(24px, 10vw, 150px);
  scroll-behavior: smooth;
}

.empty-conversation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}

.coach-avatar-large {
  width: 56px;
  height: 56px;
  border-radius: 18px 18px 18px 5px;
  font-size: 20px;
}

.empty-conversation h3 {
  margin: 20px 0 7px;
  font: 700 21px/1.2 "Manrope", sans-serif;
}

.empty-conversation p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
  line-height: 1.6;
}

.chat-message {
  display: flex;
  gap: 12px;
  margin: 0 auto 24px;
  max-width: 780px;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message .message-body {
  max-width: min(650px, 86%);
}

.chat-message.user .message-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-message .message-bubble {
  padding: 15px 18px;
  border-radius: 5px 18px 18px 18px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .83);
  font-size: 14px;
  line-height: 1.62;
  white-space: pre-wrap;
}

.chat-message.user .message-bubble {
  border-radius: 18px 5px 18px 18px;
  background: var(--paper);
  color: var(--ink);
}

.message-actions {
  display: flex;
  gap: 7px;
  margin-top: 7px;
}

.message-actions button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
  cursor: pointer;
}

.feedback-card {
  margin-top: 10px;
  padding: 15px 17px;
  border: 1px solid rgba(142, 240, 197, .16);
  border-radius: 15px;
  background: rgba(142, 240, 197, .045);
}

.feedback-card h4 {
  margin: 0 0 11px;
  color: var(--mint);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.feedback-row {
  margin-top: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  line-height: 1.55;
}

.feedback-row strong {
  color: rgba(255, 255, 255, .8);
}

.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 17px 19px;
}

.typing-indicator i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .42);
  animation: thinking 1.1s infinite ease-in-out;
}

.typing-indicator i:nth-child(2) {
  animation-delay: .14s;
}

.typing-indicator i:nth-child(3) {
  animation-delay: .28s;
}

@keyframes thinking {
  0%, 70%, 100% { transform: translateY(0); opacity: .4; }
  35% { transform: translateY(-5px); opacity: 1; }
}

.composer-wrap {
  position: relative;
  padding: 12px clamp(24px, 10vw, 150px) 18px;
  background: linear-gradient(to top, #0a1521 70%, rgba(10, 21, 33, 0));
}

.composer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 10px;
  max-width: 820px;
  margin: 0 auto;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 19px;
  background: #111f2c;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .18);
}

.composer:focus-within {
  border-color: rgba(142, 240, 197, .48);
}

.composer textarea {
  align-self: center;
  width: 100%;
  max-height: 130px;
  padding: 9px 4px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.5;
}

.composer textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.mic-button,
.send-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
}

.mic-button {
  background: rgba(242, 121, 101, .1);
  color: var(--coral);
  font-size: 9px;
}

.mic-button.recording {
  animation: record-pulse 1.3s infinite;
}

@keyframes record-pulse {
  50% { box-shadow: 0 0 0 7px rgba(242, 121, 101, .1); }
}

.send-button {
  background: var(--mint);
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.send-button:disabled {
  opacity: .45;
  cursor: wait;
}

.composer-note {
  margin: 8px auto 0;
  max-width: 820px;
  color: rgba(255, 255, 255, .25);
  font-size: 9px;
  text-align: center;
}

.voice-state {
  width: max-content;
  margin: 0 auto 8px;
  padding: 6px 11px;
  border: 1px solid rgba(242, 121, 101, .2);
  border-radius: 999px;
  background: rgba(242, 121, 101, .08);
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
}

.voice-state span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.auth-dialog {
  width: min(92vw, 500px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: #111f2c;
  color: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
}

.auth-dialog::backdrop {
  background: rgba(3, 10, 17, .78);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .55);
  font-size: 20px;
  cursor: pointer;
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 28px 30px 20px;
}

.auth-brand > div {
  display: flex;
  flex-direction: column;
}

.auth-brand > div span {
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.auth-brand > div strong {
  font: 700 18px/1.3 "Manrope", sans-serif;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 30px;
  border-bottom: 1px solid var(--line-dark);
}

.auth-tabs button {
  padding: 14px 4px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, .35);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.auth-tabs button.active {
  border-color: var(--mint);
  color: var(--paper);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 26px 30px 30px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.auth-form label > span:first-child {
  color: rgba(255, 255, 255, .48);
  font-size: 11px;
  font-weight: 600;
}

.auth-form input:not([type="checkbox"]) {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, .04);
  color: var(--paper);
  font-size: 13px;
}

.auth-form input:not([type="checkbox"]):focus {
  border-color: rgba(142, 240, 197, .48);
}

.terms-check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px !important;
}

.terms-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--mint);
}

.terms-check span {
  color: rgba(255, 255, 255, .42) !important;
  font-size: 10px !important;
  line-height: 1.6;
}

.terms-check a {
  color: var(--mint);
}

.auth-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 3px;
}

.auth-submit:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.auth-note {
  margin: -3px 0 0;
  color: rgba(255, 255, 255, .28);
  font-size: 9px;
  text-align: center;
}

.form-error {
  margin: 20px 30px -7px;
  padding: 10px 12px;
  border: 1px solid rgba(242, 121, 101, .23);
  border-radius: 9px;
  background: rgba(242, 121, 101, .08);
  color: #ffab9d;
  font-size: 11px;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100vw - 48px));
  padding: 13px 16px;
  border: 1px solid rgba(142, 240, 197, .22);
  border-radius: 12px;
  background: #182836;
  color: rgba(255, 255, 255, .8);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .35);
  font-size: 12px;
}

.legal-body {
  min-height: 100vh;
  background: var(--paper-bright);
  color: var(--ink);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 max(28px, calc((100vw - 900px) / 2));
  border-bottom: 1px solid var(--line-light);
}

.legal-header .brand small {
  color: rgba(7, 17, 29, .48);
}

.legal-header .brand-mark {
  border-color: rgba(43, 119, 92, .25);
  background: rgba(43, 119, 92, .07);
}

.legal-header .brand-mark i {
  background: #2b775c;
}

.legal-header > a:last-child {
  color: #2b775c;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 28px 120px;
}

.legal-page h1 {
  margin: 0;
  font: 700 clamp(46px, 7vw, 76px)/1 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.legal-intro {
  max-width: 720px;
  margin: 24px 0 58px;
  color: #64706c;
  font-size: 17px;
  line-height: 1.7;
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.legal-page h2 {
  margin: 0 0 12px;
  font: 700 18px/1.3 "Manrope", sans-serif;
}

.legal-page section p {
  margin: 0;
  color: #64706c;
  font-size: 14px;
  line-height: 1.8;
}

.legal-page section a {
  color: #2b775c;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 160px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .lesson-window {
    max-width: 780px;
    justify-self: start;
    transform: none;
  }

  .process-grid article {
    padding-right: 24px;
  }

  .process-grid article:not(:last-child) {
    margin-right: 24px;
  }

  .value-section {
    grid-template-columns: 1fr;
  }

  .value-quote {
    min-height: 580px;
    padding-left: 7vw;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .scenario-picker {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 0 18px;
  }

  .site-header .brand small {
    display: none;
  }

  .button-ghost {
    display: none;
  }

  .button-small {
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding: 126px 18px 66px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-large {
    width: 100%;
  }

  .button-link {
    width: 100%;
  }

  .consent-note {
    margin-left: 0;
    line-height: 1.5;
  }

  .trust-row {
    gap: 8px;
    justify-content: space-between;
  }

  .trust-row div {
    min-width: 0;
    padding-left: 9px;
  }

  .trust-row strong {
    font-size: 15px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .lesson-window {
    border-radius: 22px;
  }

  .window-topbar {
    padding: 0 15px;
  }

  .session-pill {
    font-size: 10px;
  }

  .level-pill {
    font-size: 9px;
  }

  .preview-content {
    padding: 28px 16px 18px;
  }

  .feedback-preview {
    margin-left: 0;
  }

  .process-section,
  .company-section {
    padding: 76px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading .section-number {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .company-section h2 {
    font-size: 44px;
  }

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

  .process-grid article {
    min-height: auto;
    padding: 30px 0 34px;
  }

  .process-grid article:not(:last-child) {
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .process-icon {
    margin: 18px 0 36px;
  }

  .value-quote {
    min-height: 500px;
    padding: 68px 22px;
  }

  .value-quote p {
    font-size: 40px;
  }

  .value-cards {
    padding: 36px 22px 55px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 42px 22px;
  }

  .footer-links {
    order: 3;
  }

  .app-section {
    grid-template-columns: 1fr;
    height: 100dvh;
    min-height: 640px;
    padding-top: 74px;
  }

  .app-sidebar {
    display: none;
  }

  .session-setup {
    padding: 38px 18px 50px;
  }

  .setup-copy h2 {
    font-size: 46px;
  }

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

  .field-card {
    grid-column: 1;
  }

  .scenario-picker {
    grid-template-columns: 1fr 1fr;
  }

  .scenario-picker label > span {
    min-height: 130px;
    padding: 14px;
  }

  .chat-header {
    min-height: 70px;
    padding: 0 14px;
  }

  .chat-messages {
    padding: 24px 15px;
  }

  .composer-wrap {
    padding: 8px 12px 12px;
  }

  .composer-note {
    display: none;
  }

  .chat-message .message-body {
    max-width: 89%;
  }

  .account-name {
    display: none;
  }

  .auth-dialog {
    width: calc(100vw - 20px);
  }

  .auth-form,
  .auth-brand {
    padding-left: 20px;
    padding-right: 20px;
  }

  .auth-tabs {
    padding: 0 20px;
  }

  .form-error {
    margin-left: 20px;
    margin-right: 20px;
  }
}

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

/* Light theme — aligned with the main INSPIRED AI website */
:root {
  --ink: #0f172a;
  --ink-soft: #ffffff;
  --paper: #f8fafc;
  --paper-bright: #ffffff;
  --mint: #2563eb;
  --mint-bright: #1d4ed8;
  --coral: #f97316;
  --lime: #2563eb;
  --blue: #2563eb;
  --line-dark: rgba(15, 23, 42, .11);
  --line-light: rgba(15, 23, 42, .11);
  --muted: #64748b;
  --shadow: 0 30px 80px rgba(15, 23, 42, .14);
}

body {
  background: #f8fafc;
  color: var(--ink);
}

.ambient-one {
  background: #60a5fa;
  opacity: .12;
}

.ambient-two {
  background: #93c5fd;
  opacity: .1;
}

.site-header {
  border-bottom-color: rgba(15, 23, 42, .09);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
}

.brand small,
.nav-links a,
.button-ghost,
.button-link,
.account-name,
.icon-button {
  color: #64748b;
}

.nav-links a:hover,
.button-link:hover {
  color: #1d4ed8;
}

.brand-mark {
  border-color: rgba(37, 99, 235, .2);
  background: #eff6ff;
}

.button-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 35px rgba(37, 99, 235, .2);
}

.button-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 14px 42px rgba(37, 99, 235, .28);
}

.hero {
  background:
    radial-gradient(circle at 88% 24%, rgba(59, 130, 246, .12), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 64%, #eff6ff 100%);
}

.hero::after {
  border-color: rgba(37, 99, 235, .09);
}

.eyebrow,
h1 em,
h2 em {
  color: #2563eb;
}

.eyebrow span {
  background: #2563eb;
}

.hero-lede,
.consent-note {
  color: #64748b;
}

.consent-note span {
  color: #2563eb;
}

.trust-row div {
  border-left-color: rgba(15, 23, 42, .12);
}

.trust-row span {
  color: #94a3b8;
}

.lesson-window {
  border-color: rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.lesson-window::before {
  background: rgba(59, 130, 246, .1);
}

.window-topbar {
  border-bottom-color: rgba(15, 23, 42, .09);
}

.window-dots i {
  background: #cbd5e1;
}

.session-pill,
.level-pill {
  color: #64748b;
}

.session-pill span {
  background: #2563eb;
  box-shadow: 0 0 12px rgba(37, 99, 235, .35);
}

.level-pill {
  border-color: rgba(15, 23, 42, .1);
  background: #f8fafc;
}

.coach-avatar,
.account-avatar {
  border-color: rgba(37, 99, 235, .18);
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, .18);
}

.speaker-label {
  color: #94a3b8;
}

.message-coach {
  background: #eff6ff;
  color: #1e293b;
}

.learner-row .message {
  background: #2563eb;
  color: #ffffff;
}

.feedback-preview,
.feedback-card {
  border-color: rgba(37, 99, 235, .17);
  background: #f0f7ff;
}

.feedback-title,
.feedback-card h4 {
  color: #2563eb;
}

.feedback-preview p,
.feedback-row {
  color: #64748b;
}

.feedback-preview blockquote,
.feedback-row strong {
  color: #1e293b;
}

.word-chip-row span {
  border-color: rgba(37, 99, 235, .18);
  background: #ffffff;
  color: #1d4ed8;
}

.speak-control {
  border-color: rgba(15, 23, 42, .1);
  background: #f8fafc;
  color: #334155;
}

.speak-control small {
  color: #94a3b8;
}

.process-section {
  background: #f8fafc;
}

.eyebrow-text {
  color: #2563eb;
}

.section-heading h2 em,
.company-section h2 em {
  color: #2563eb;
}

.process-icon {
  border-color: rgba(37, 99, 235, .28);
  color: #2563eb;
}

.value-quote {
  background: #dbeafe;
  color: #0f172a;
}

.value-cards {
  background: #ffffff;
}

.value-cards article {
  border-bottom-color: rgba(15, 23, 42, .1);
}

.value-cards strong {
  color: #0f172a;
}

.value-cards p {
  color: #64748b;
}

.company-section {
  background: #ffffff;
}

.company-section > a,
.legal-header > a:last-child,
.legal-page section a {
  color: #1d4ed8;
}

footer {
  border-top-color: rgba(15, 23, 42, .1);
  background: #f8fafc;
  color: #64748b;
}

.footer-links a:hover {
  color: #2563eb;
}

.account-chip {
  border-color: rgba(15, 23, 42, .1);
  background: #f8fafc;
}

.app-section {
  background: #f8fafc;
}

.app-sidebar {
  border-right-color: rgba(15, 23, 42, .1);
  background: #ffffff;
}

.sidebar-label {
  color: #94a3b8;
}

.new-session-button {
  border-color: rgba(37, 99, 235, .16);
  background: #eff6ff;
  color: #1d4ed8;
}

.history-empty {
  color: #94a3b8;
}

.history-item {
  color: #64748b;
}

.history-item:hover,
.history-item.active {
  background: #eff6ff;
  color: #1d4ed8;
}

.history-item span {
  color: #94a3b8;
}

.sidebar-tip {
  border-color: rgba(37, 99, 235, .14);
  background: #f0f7ff;
  color: #2563eb;
}

.sidebar-tip p {
  color: #64748b;
}

.sidebar-tip strong {
  color: #334155;
}

.session-setup {
  background-color: #f8fafc;
  background-image: radial-gradient(circle at 86% 15%, rgba(59, 130, 246, .1), transparent 29%);
}

.setup-copy p {
  color: #64748b;
}

.field-card,
.scenario-picker label > span {
  border-color: rgba(15, 23, 42, .11);
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, .035);
}

.field-card > span,
.scenario-picker legend {
  color: #64748b;
}

.field-card select {
  color: #0f172a;
}

.field-card select option {
  background: #ffffff;
}

.scenario-picker input:checked + span {
  border-color: rgba(37, 99, 235, .5);
  background: #eff6ff;
}

.scenario-picker i {
  color: #2563eb;
}

.scenario-picker small {
  color: #64748b;
}

.chat-shell {
  background: #f8fafc;
}

.chat-header {
  border-bottom-color: rgba(15, 23, 42, .1);
  background: #ffffff;
}

.back-button,
.chat-status {
  border-color: rgba(15, 23, 42, .1);
  background: #f8fafc;
  color: #475569;
}

.chat-status > span {
  background: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, .35);
}

.chat-status small {
  color: #94a3b8;
}

.empty-conversation p {
  color: #64748b;
}

.chat-message .message-bubble {
  border: 1px solid rgba(15, 23, 42, .09);
  background: #ffffff;
  color: #1e293b;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.chat-message.user .message-bubble {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.message-actions button {
  color: #64748b;
}

.typing-indicator i {
  background: #64748b;
}

.composer-wrap {
  background: linear-gradient(to top, #f8fafc 70%, rgba(248, 250, 252, 0));
}

.composer {
  border-color: rgba(15, 23, 42, .13);
  background: #ffffff;
  box-shadow: 0 14px 45px rgba(15, 23, 42, .09);
}

.composer textarea {
  color: #0f172a;
}

.composer textarea::placeholder {
  color: #94a3b8;
}

.composer-note {
  color: #94a3b8;
}

.mic-button {
  background: #fff7ed;
}

.send-button {
  background: #2563eb;
  color: #ffffff;
}

.voice-state {
  border-color: rgba(249, 115, 22, .2);
  background: #fff7ed;
  color: #9a3412;
}

.auth-dialog {
  border-color: rgba(15, 23, 42, .12);
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 40px 120px rgba(15, 23, 42, .24);
}

.auth-dialog::backdrop {
  background: rgba(15, 23, 42, .48);
}

.dialog-close {
  background: #f1f5f9;
  color: #64748b;
}

.auth-brand > div span {
  color: #94a3b8;
}

.auth-tabs {
  border-bottom-color: rgba(15, 23, 42, .1);
}

.auth-tabs button {
  color: #94a3b8;
}

.auth-tabs button.active {
  border-color: #2563eb;
  color: #0f172a;
}

.auth-form label > span:first-child {
  color: #475569;
}

.auth-form input:not([type="checkbox"]) {
  border-color: rgba(15, 23, 42, .12);
  background: #f8fafc;
  color: #0f172a;
}

.auth-form input:not([type="checkbox"]):focus {
  border-color: #2563eb;
}

.terms-check span {
  color: #64748b !important;
}

.terms-check a {
  color: #1d4ed8;
}

.auth-note {
  color: #94a3b8;
}

.form-error {
  border-color: rgba(220, 38, 38, .18);
  background: #fef2f2;
  color: #b91c1c;
}

.toast {
  border-color: rgba(37, 99, 235, .18);
  background: #ffffff;
  color: #334155;
  box-shadow: 0 15px 50px rgba(15, 23, 42, .16);
}

.legal-header .brand-mark {
  border-color: rgba(37, 99, 235, .2);
  background: #eff6ff;
}

.legal-header .brand-mark i {
  background: #2563eb;
}
