:root {
  --ink: #16251f;
  --muted: #68746d;
  --paper: #f3f1ea;
  --card: #fffdf7;
  --green: #426a57;
  --green-dark: #244838;
  --sage: #dfe9de;
  --peach: #2457f5;
  --blue: #dbe9ea;
  --red: #d92d20;
  --line: #d9d9cf;
  --serif: "Fraunces", serif;
  --sans: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  transition: 0.2s;
}
a {
  color: inherit;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
}
.logo > span:first-child {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 49% 51% 46% 54%;
  color: #fff;
  background: var(--green);
  font: 600 22px var(--serif);
  transform: rotate(-7deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links > a,
.footer a {
  font-size: 12px;
  text-decoration: none;
  color: var(--muted);
}
.nav-links > a:hover,
.footer a:hover {
  color: var(--ink);
}
.language-button {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 13px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}
.landing-hero {
  min-height: 640px;
  padding: 100px 0 60px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.kicker {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.kicker > span:first-child {
  color: var(--peach);
}
.landing-hero h1 {
  max-width: 980px;
  margin: 0;
  font: 600 clamp(50px, 7vw, 88px)/0.98 var(--serif);
  letter-spacing: 0;
}
.landing-hero h1 em,
.principles h2 em {
  color: var(--green);
  font-style: italic;
}
.hero-lede {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 13px 18px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.button.primary {
  color: white;
  background: var(--green);
}
.button.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.button.secondary:hover {
  border-color: #b7b7ad;
  background: #fffdf8;
  transform: translateY(-1px);
}
.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}
.trust-strip {
  width: 100%;
  margin-top: auto;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  gap: 70px;
  color: var(--muted);
  font-size: 11px;
}
.trust-strip > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-strip b {
  color: var(--peach);
  font: 600 18px var(--serif);
}
.product-section {
  padding: 110px 0;
}
.section-copy {
  text-align: center;
  margin-bottom: 42px;
}
.section-copy h2 {
  margin: 0;
  font: 600 clamp(34px, 4vw, 52px)/1.08 var(--serif);
  letter-spacing: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-card {
  min-height: 480px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.product-card:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -90px;
  top: -70px;
  opacity: 0.55;
  transition: 0.4s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(37, 54, 46, 0.09);
}
.product-card:hover:after {
  transform: scale(1.12);
}
.life-card {
  background: #e8eee5;
}
.life-card:after {
  background: #cdddc9;
}
.health-card {
  background: #f8eade;
}
.health-card:after {
  background: #eed1bc;
}
.card-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  font-size: 20px;
}
.number {
  font: 600 13px var(--serif);
  color: var(--muted);
}
.card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--muted);
}
.product-card h3 {
  margin: 10px 0 14px;
  font: 600 clamp(40px, 5vw, 62px)/1 var(--serif);
  letter-spacing: 0;
}
.product-card h3 em {
  font-size: 0.55em;
  color: var(--green);
  vertical-align: top;
}
.product-card p:not(.card-label) {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.65;
}
.card-link {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(30, 50, 40, 0.13);
  padding-top: 20px;
}
.card-link b {
  font-size: 18px;
}
.principles {
  margin: 30px auto 110px;
  padding: 65px;
  border-radius: 24px;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
}
.big-mark {
  color: var(--peach);
  font: 600 70px/1 var(--serif);
}
.principles h2 {
  margin: 0;
  font: 600 40px/1.12 var(--serif);
  letter-spacing: 0;
}
.principles p {
  color: #b8c2bd;
  line-height: 1.7;
}
.demo-picture {
  width: calc(100% - 32px);
  max-width: 1100px;
  margin: 72px auto;
  box-sizing: border-box;
}
.demo-picture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  object-fit: contain;
}
.curaize-manual-section {
  width: 100%;
  padding: 80px 20px;
  background: #f3f1ea;
  box-sizing: border-box;
}
.curaize-manual-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.curaize-manual-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}
.curaize-manual-eyebrow {
  margin: 0 0 12px;
  color: #315c46;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.curaize-manual-title {
  margin: 0;
  color: #171a18;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 600;
}
.curaize-manual-copy {
  max-width: 620px;
  margin: 18px auto 0;
  color: #62655f;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}
.curaize-manual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  align-items: start;
}
.curaize-manual-card {
  width: 100%;
  min-width: 0;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 48, 37, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(35, 48, 40, 0.08), 0 2px 8px rgba(35, 48, 40, 0.04);
  box-sizing: border-box;
}
.curaize-manual-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  object-fit: contain;
}
.policy-section {
  margin: -40px auto 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.policy-section article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.72);
}
.policy-section h2 {
  margin: 0 0 12px;
  font: 600 24px/1.15 var(--serif);
  letter-spacing: 0;
}
.policy-section p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.policy-section a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.policy-section a:hover {
  color: var(--green);
}
.footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer p {
  color: var(--muted);
  font-size: 11px;
}
.footer > div {
  display: flex;
  gap: 18px;
}
.health-page {
  background: #f5f4ee;
}
.health-nav .beta-badge {
  margin-left: 9px;
  padding: 4px 7px;
  border-radius: 5px;
  color: #7b533d;
  background: #f8e5d6;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.health-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 35px auto 90px;
}
.health-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  padding: 45px 0 70px;
}
.health-intro h1 {
  margin: 0;
  font: 600 clamp(46px, 6vw, 72px)/1 var(--serif);
  letter-spacing: 0;
}
.health-intro h1 em {
  color: #9c5d42;
  font-style: italic;
}
.health-intro > div > p:not(.kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.safety-card {
  padding: 25px;
  border-radius: 18px;
  background: #fff0e7;
  border: 1px solid #edd3c2;
}
.safety-card b {
  display: block;
  margin-bottom: 7px;
}
.safety-card p {
  margin: 0;
  color: #795746;
  font-size: 12px;
  line-height: 1.55;
}
.safety-card a {
  font-weight: 700;
}
.demo-banner {
  margin-bottom: 28px;
  padding: 20px 24px;
  border: 1px solid #c8d8c9;
  border-radius: 16px;
  background: #eaf2e8;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.demo-banner.show {
  display: flex;
}
.demo-banner h2,
.demo-banner p {
  margin: 0;
}
.demo-banner h2 {
  font: 600 22px var(--serif);
}
.demo-banner p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.demo-cases {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.demo-case {
  border: 1px solid #b9cab9;
  border-radius: 8px;
  background: white;
  padding: 8px 10px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.consult-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffefb;
  box-shadow: 0 20px 60px rgba(35, 49, 42, 0.08);
  overflow: hidden;
}
.form-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.form-progress span {
  padding: 14px;
  text-align: center;
  color: #9a9e99;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-right: 1px solid var(--line);
}
.form-progress span:last-child {
  border: 0;
}
.form-progress span.active {
  color: var(--green);
  background: #f0f5ef;
  font-weight: 700;
}
.health-form {
  padding: 36px;
}
.form-section {
  margin-bottom: 34px;
}
.form-section h2 {
  margin: 0 0 5px;
  font: 600 26px var(--serif);
}
.form-section > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}
.health-form label {
  display: block;
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 700;
}
.health-form label small {
  color: var(--muted);
  font-weight: 400;
}
.health-form input[type="text"],
.health-form input[type="email"],
.health-form input[type="number"],
.health-form select,
.health-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
}
.health-form textarea {
  resize: vertical;
}
.health-form input:focus,
.health-form textarea:focus,
.health-form select:focus {
  border-color: #769383;
  box-shadow: 0 0 0 3px rgba(66, 106, 87, 0.08);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.field-grid.three {
  grid-template-columns: repeat(3, 1fr);
}
.span-two {
  grid-column: 1/-1;
}
.range-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.range-row input {
  flex: 1;
}
.range-value {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage);
  font-weight: 700;
}
.choice-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf6;
}
.choice-line input {
  margin-top: 3px;
}
.choice-line label {
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.form-actions p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 10px;
}
.form-submit {
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  color: white;
  background: var(--green);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
}
.form-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}
.followups {
  padding: 36px;
  border-top: 1px solid var(--line);
  background: #f5f8f4;
}
.followups.hidden,
.consult-card.hidden,
.result-shell.hidden,
.account-panel.hidden {
  display: none;
}
.followups h2 {
  margin: 0;
  font: 600 27px var(--serif);
}
.followups > p {
  color: var(--muted);
  font-size: 12px;
}
.question-list {
  display: grid;
  gap: 15px;
  margin: 20px 0;
}
.loading-state {
  text-align: center;
  padding: 60px;
}
.spinner {
  width: 35px;
  height: 35px;
  margin: 0 auto 15px;
  border: 3px solid #dce3dc;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.result-shell {
  margin-top: 30px;
}
.urgency-banner {
  padding: 25px;
  border-radius: 18px 18px 0 0;
  color: white;
  background: var(--green);
}
.urgency-banner.emergency {
  background: var(--red);
}
.urgency-banner.same_day {
  background: #a86642;
}
.urgency-banner.soon {
  background: #607a6b;
}
.urgency-banner h2,
.urgency-banner p {
  margin: 0;
}
.urgency-banner h2 {
  font: 600 31px var(--serif);
}
.urgency-banner p {
  margin-top: 6px;
  opacity: 0.88;
}
.report-card {
  padding: 32px;
  background: #fffefb;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}
.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.report-section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fbfaf6;
}
.report-section.wide {
  grid-column: 1/-1;
}
.report-section h3 {
  margin: 0 0 12px;
  font: 600 20px var(--serif);
}
.report-section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.report-section p {
  color: var(--muted);
  font-size: 12px;
}
.report-disclaimer {
  margin-top: 22px;
  padding: 14px;
  border-radius: 10px;
  background: #f4eee9;
  color: #765e50;
  font-size: 10px;
}
.sources {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sources a {
  padding: 6px 8px;
  border-radius: 6px;
  background: #edf2eb;
  color: var(--green-dark);
  font-size: 9px;
  text-decoration: none;
}
.report-actions {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.secondary-action {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 13px;
  background: white;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.account-panel {
  margin-top: 18px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fffefb;
}
.account-panel h3,
.account-panel p {
  margin: 0;
}
.account-panel h3 {
  font: 600 21px var(--serif);
}
.account-panel p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.account-form {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.account-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 20;
  transform: translate(-50%, 30px);
  padding: 11px 15px;
  border-radius: 9px;
  color: white;
  background: var(--ink);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}
.turnstile-mount {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-shell {
  width: min(760px, calc(100% - 40px));
  margin: 70px auto 100px;
}
.legal-shell h1 {
  font: 600 54px var(--serif);
  letter-spacing: 0;
}
.legal-shell h2 {
  margin-top: 35px;
  font: 600 25px var(--serif);
}
.legal-shell p,
.legal-shell li {
  color: var(--muted);
  line-height: 1.8;
}
.legal-callout {
  padding: 18px;
  border-left: 3px solid var(--peach);
  background: #fffaf4;
}
.founder-table {
  width: 100%;
  border-collapse: collapse;
}
.founder-table th,
.founder-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 12px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metric-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}
.metric-card b {
  display: block;
  font: 600 30px var(--serif);
}
.metric-card span {
  color: var(--muted);
  font-size: 10px;
}
@media (max-width: 780px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }
  .nav-links > a {
    display: none;
  }
  .landing-hero {
    padding-top: 65px;
    min-height: 600px;
  }
  .landing-hero h1 {
    font-size: 50px;
    letter-spacing: 0;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .trust-strip {
    gap: 20px;
    justify-content: space-between;
  }
  .trust-strip > span {
    display: block;
  }
  .product-grid,
  .principles,
  .policy-section,
  .health-intro {
    grid-template-columns: 1fr;
  }
  .product-card {
    min-height: 420px;
  }
  .principles {
    padding: 35px;
    gap: 25px;
  }
  .principles h2 {
    font-size: 31px;
  }
  .policy-section {
    margin-top: -60px;
  }
  .curaize-manual-section {
    padding: 64px 18px;
  }
  .curaize-manual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .health-intro {
    gap: 25px;
  }
  .demo-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .field-grid,
  .field-grid.three,
  .report-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .span-two,
  .report-section.wide {
    grid-column: auto;
  }
  .health-form {
    padding: 23px;
  }
  .form-progress span {
    font-size: 8px;
    padding: 11px 4px;
  }
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .form-submit {
    width: 100%;
  }
  .report-actions,
  .account-form {
    flex-direction: column;
  }
  .trust-strip span span {
    display: block;
  }
  .footer p {
    max-width: 300px;
  }
}
@media (max-width: 520px) {
  .demo-picture {
    width: calc(100% - 24px);
    margin: 48px auto;
  }
  .demo-picture img {
    border-radius: 16px;
  }
  .curaize-manual-section {
    padding: 50px 14px;
  }
  .curaize-manual-heading {
    margin-bottom: 28px;
  }
  .curaize-manual-eyebrow {
    font-size: 12px;
  }
  .curaize-manual-copy {
    font-size: 15px;
  }
  .curaize-manual-card {
    padding: 6px;
    border-radius: 18px;
  }
  .curaize-manual-image {
    border-radius: 13px;
  }
}
.product-grid.single-product {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.single-product .product-card {
  min-height: 360px;
}
.single-product .product-card:after {
  display: none;
}
.single-product .life-card {
  background: linear-gradient(135deg, #e8eee5 0%, #fff7ed 100%);
}

/* Responsive public pages and onboarding. */
img,
video,
canvas {
  max-width: 100%;
  height: auto;
}
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}

@media (min-width: 1440px) {
  .shell {
    width: min(1240px, calc(100% - 96px));
  }
  .landing-hero {
    min-height: 700px;
  }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .shell {
    width: min(100% - 48px, 980px);
  }
  .landing-hero {
    padding-top: 72px;
  }
  .landing-hero h1 {
    font-size: clamp(56px, 7vw, 72px);
  }
  .principles {
    padding: 48px;
    gap: 42px;
  }
}

@media (max-width: 780px) {
  body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
  }
  .nav {
    height: 70px;
    gap: 14px;
  }
  .logo {
    min-width: 0;
    font-size: 18px;
  }
  .nav-links {
    flex: 0 0 auto;
    gap: 8px;
  }
  .language-button {
    min-height: 42px;
  }
  .landing-hero {
    min-height: calc(100svh - 70px);
    padding: 54px 0 34px;
  }
  .landing-hero h1 {
    max-width: 680px;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.02;
  }
  .hero-lede {
    margin-top: 22px;
    font-size: clamp(15px, 3vw, 18px);
    line-height: 1.6;
  }
  .hero-actions {
    max-width: 360px;
  }
  .hero-actions .button {
    min-height: 48px;
  }
  .trust-strip {
    width: 100%;
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .trust-strip > span {
    min-width: 0;
    text-align: left;
  }
  .product-section {
    padding: 78px 0;
  }
  .product-card {
    min-height: 390px;
    padding: 25px;
    border-radius: 20px;
  }
  .product-card h3 {
    font-size: clamp(42px, 11vw, 58px);
  }
  .principles {
    margin-bottom: 80px;
    border-radius: 20px;
  }
  .demo-picture {
    margin-block: 54px;
  }
  .footer {
    padding-bottom: calc(36px + env(safe-area-inset-bottom));
  }
  .legal-shell {
    margin-top: 44px;
  }
  .legal-shell h1 {
    font-size: clamp(40px, 11vw, 54px);
  }
  .founder-table {
    display: block;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 24px);
  }
  .nav {
    height: 64px;
  }
  .logo > span:first-child {
    width: 29px;
    height: 29px;
    font-size: 19px;
  }
  .landing-hero {
    min-height: auto;
    padding: 48px 0 28px;
  }
  .kicker {
    margin-bottom: 17px;
    font-size: 9px;
  }
  .landing-hero h1 {
    font-size: clamp(37px, 12vw, 48px);
  }
  .hero-lede {
    font-size: 15px;
  }
  .hero-actions {
    max-width: none;
  }
  .trust-strip {
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .trust-strip > span {
    padding: 12px 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .product-section {
    padding: 64px 0;
  }
  .section-copy {
    margin-bottom: 28px;
  }
  .product-card,
  .single-product .product-card {
    min-height: 340px;
    padding: 21px;
  }
  .principles {
    margin-bottom: 60px;
    padding: 27px 22px;
  }
  .principles h2 {
    font-size: 28px;
  }
  .curaize-manual-title {
    font-size: clamp(30px, 10vw, 42px);
  }
  .footer {
    gap: 18px;
  }
  .footer > div {
    width: 100%;
    flex-wrap: wrap;
  }
  .legal-shell {
    width: calc(100% - 24px);
    margin-bottom: 70px;
  }
  .account-form input,
  .health-form input,
  .health-form textarea,
  .health-form select {
    min-height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .nav-links {
    gap: 5px;
  }
  .language-button {
    padding-inline: 9px;
    font-size: 10px;
  }
  .landing-hero h1 {
    font-size: 36px;
  }
  .product-card h3 {
    font-size: 40px;
  }
  .footer > div {
    gap: 12px;
  }
}

@media (orientation: landscape) and (max-height: 560px) and (max-width: 960px) {
  .landing-hero {
    min-height: auto;
    padding-top: 36px;
  }
  .landing-hero h1 {
    font-size: 42px;
  }
  .trust-strip {
    margin-top: 34px;
  }
}

/* Curaize Health — quiet, utilitarian, and deliberately low-stimulus. */
.health-page {
  --health-ink: #272a27;
  --health-muted: #6f746f;
  --health-line: #d7d4ca;
  --health-paper: #f2f0e9;
  --health-card: #fbfaf6;
  --health-accent: #2457f5;
  --health-accent-soft: #edf2ff;
  --health-green: #52685a;
  color: var(--health-ink);
  background: var(--health-paper);
}
.health-page .health-nav {
  height: 76px;
  border-bottom: 1px solid var(--health-line);
}
.health-page .logo > span:first-child {
  border-radius: 50%;
  background: var(--health-accent);
  font-family: var(--sans);
  font-size: 18px;
  transform: none;
}
.health-page .product-name {
  margin-left: 3px;
  color: var(--health-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.health-page .language-button,
.health-page .secondary-action,
.health-page .form-submit,
.health-page .demo-case,
.health-page .emergency-call {
  min-height: 42px;
  border-radius: 6px;
}
.health-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 96px;
}
.health-intro {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 64px;
  padding: 72px 0 82px;
}
.health-intro h1 {
  max-width: 720px;
  font: 500 clamp(42px, 6.2vw, 68px)/1.02 var(--sans);
  letter-spacing: -0.055em;
}
.health-intro h1 em {
  color: var(--health-accent);
  font-style: normal;
}
.health-intro > div > p:not(.kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--health-muted);
  font-size: 15px;
  line-height: 1.75;
}
.health-page .kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--health-accent);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.health-page .kicker > span:first-child,
.section-number {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: 0;
  border-radius: 50%;
  color: var(--health-green);
  background: #e7ebe4;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
}
.health-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-block: 1px solid var(--health-line);
}
.health-principles span {
  display: grid;
  gap: 4px;
  padding: 16px 16px 16px 0;
}
.health-principles span + span {
  padding-left: 16px;
  border-left: 1px solid var(--health-line);
}
.health-principles b {
  color: var(--health-accent);
  font-size: 9px;
}
.health-principles small {
  color: var(--health-muted);
  font-size: 10px;
  line-height: 1.4;
}
.safety-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid #d7bdb5;
  border-radius: 8px;
  background: var(--health-accent-soft);
}
.safety-card .safety-label {
  margin: 0 0 18px;
  color: var(--health-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.safety-card h2 {
  margin: 0;
  font: 600 24px/1.18 var(--sans);
  letter-spacing: -0.03em;
}
.safety-card p {
  margin-top: 15px;
  color: #6e524a;
  font-size: 11px;
  line-height: 1.65;
}
.emergency-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 11px 14px;
  color: white;
  background: var(--health-accent);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.consult-card {
  border: 1px solid var(--health-line);
  border-radius: 8px;
  background: var(--health-card);
  box-shadow: none;
}
.form-progress {
  background: #eeece5;
}
.form-progress span {
  padding: 13px 8px;
  border-color: var(--health-line);
  color: #8a8e89;
  font-size: 8px;
  letter-spacing: 0.06em;
}
.form-progress span.active {
  color: white;
  background: var(--health-green);
}
.form-progress span.done {
  color: var(--health-green);
  background: #e5ebe3;
}
.health-form,
.followups {
  padding: 38px;
}
.health-form.hidden,
.followups.hidden,
.loading-state.hidden,
.consult-card.hidden,
.result-shell.hidden {
  display: none;
}
.form-section {
  margin: 0;
  padding: 0 0 42px;
}
.form-section + .form-section {
  padding-top: 38px;
  border-top: 1px solid var(--health-line);
}
.form-section h2,
.followups h2 {
  margin: 12px 0 7px;
  font: 600 26px/1.2 var(--sans);
  letter-spacing: -0.035em;
}
.form-section > p:not(.section-number),
.followups > p:not(.section-number) {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--health-muted);
  font-size: 11px;
  line-height: 1.65;
}
.health-form label,
.followup-question label,
.followup-question legend {
  margin-bottom: 8px;
  color: #444944;
  font-size: 10px;
  font-weight: 700;
}
.health-form input[type="text"],
.health-form input[type="email"],
.health-form input[type="number"],
.health-form select,
.health-form textarea,
.followup-question textarea {
  min-height: 44px;
  padding: 12px 13px;
  border: 1px solid var(--health-line);
  border-radius: 5px;
  color: var(--health-ink);
  background: #fffef9;
  box-shadow: none;
}
.health-form textarea,
.followup-question textarea {
  line-height: 1.55;
}
.health-form input:focus,
.health-form textarea:focus,
.health-form select:focus,
.followup-question textarea:focus {
  border-color: var(--health-green);
  box-shadow: 0 0 0 3px rgba(82, 104, 90, 0.1);
}
.range-value {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  color: white;
  background: var(--health-green);
}
.optional-health-context {
  margin-top: 22px;
  border-block: 1px solid var(--health-line);
}
.optional-health-context summary {
  padding: 16px 2px;
  color: var(--health-ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.optional-health-context summary small {
  color: var(--health-muted);
  font-weight: 400;
}
.optional-health-context[open] .field-grid {
  padding: 2px 0 20px;
}
.consent-block {
  display: grid;
  gap: 10px;
  padding: 30px 0;
  border-top: 1px solid var(--health-line);
}
.choice-line {
  min-height: 48px;
  margin: 0;
  padding: 13px 14px;
  border-radius: 5px;
  background: #f6f4ee;
}
.choice-line input {
  width: 17px;
  height: 17px;
  accent-color: var(--health-green);
}
.choice-line span {
  color: #555b56;
  font-size: 10px;
  line-height: 1.55;
}
.form-actions {
  padding-top: 6px;
}
.form-actions p {
  color: var(--health-muted);
  line-height: 1.6;
}
.form-submit {
  padding: 12px 18px;
  background: var(--health-green);
  font-size: 11px;
}
.form-submit:hover {
  background: #3f5447;
}
.followups {
  border: 0;
  background: var(--health-card);
}
.question-list {
  gap: 18px;
  margin: 28px 0;
}
.followup-question {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--health-line);
  border-radius: 6px;
  background: #f6f4ee;
}
.followup-question > label {
  display: block;
}
.followup-question textarea {
  width: 100%;
  margin-top: 7px;
}
.safety-question {
  border-color: #d7bdb5;
  background: var(--health-accent-soft);
}
.safety-question legend {
  max-width: 760px;
  padding: 0 2px;
  line-height: 1.55;
}
.safety-question label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 12px 18px 0 0;
}
.safety-question input {
  width: 17px;
  height: 17px;
  accent-color: var(--health-accent);
}
.loading-state {
  padding: 70px 30px;
  color: var(--health-muted);
}
.loading-state b {
  color: var(--health-ink);
}
.spinner {
  border-color: #d8dcd6;
  border-top-color: var(--health-green);
}
.result-shell {
  margin-top: 34px;
  scroll-margin-top: 24px;
}
.urgency-banner {
  padding: 28px 30px;
  border-radius: 8px 8px 0 0;
  background: var(--health-green);
}
.urgency-banner.same_day {
  background: #6d3fd7;
}
.urgency-banner.soon {
  background: #5c6e61;
}
.urgency-banner.emergency {
  background: var(--health-accent);
}
.urgency-banner h2 {
  margin-top: 8px;
  font: 600 28px/1.2 var(--sans);
  letter-spacing: -0.035em;
}
.urgency-banner p {
  max-width: 780px;
  font-size: 11px;
  line-height: 1.6;
}
.report-card {
  padding: 30px;
  border-color: var(--health-line);
  border-radius: 0 0 8px 8px;
  background: var(--health-card);
}
.care-destination {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 4px 20px;
  align-items: baseline;
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid #bdc9bf;
  border-radius: 6px;
  background: #edf1eb;
}
.care-destination span {
  grid-row: 1 / 3;
  color: var(--health-green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.care-destination h3,
.care-destination p {
  margin: 0;
}
.care-destination h3 {
  font: 600 20px var(--sans);
}
.care-destination p {
  color: var(--health-muted);
  font-size: 10px;
}
.report-grid {
  gap: 10px;
}
.report-section {
  padding: 20px;
  border-color: var(--health-line);
  border-radius: 6px;
  background: #f7f5ef;
}
.report-section > span {
  display: block;
  margin-bottom: 9px;
  color: var(--health-accent);
  font-size: 8px;
  font-weight: 700;
}
.report-section h3 {
  margin-bottom: 11px;
  font: 600 17px var(--sans);
  letter-spacing: -0.02em;
}
.report-section ul {
  color: #5e645f;
  font-size: 11px;
  line-height: 1.7;
}
.report-section p {
  color: #5e645f;
  font-size: 11px;
  line-height: 1.65;
}
.report-priority {
  border-color: #bdc9bf;
  background: #f1f4ef;
}
.warning-section {
  border-color: #d8bdb6;
  background: #f6ece7;
}
.sources-section > p {
  margin-top: -3px;
}
.sources {
  gap: 7px;
  margin-top: 12px;
}
.sources a {
  padding: 8px 9px;
  border: 1px solid var(--health-line);
  border-radius: 5px;
  color: var(--health-green);
  background: #fffef9;
}
.report-disclaimer {
  border-radius: 5px;
  color: #6b5b53;
  background: #f1ece7;
  line-height: 1.55;
}
.report-actions {
  flex-wrap: wrap;
}
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--health-ink);
  background: #fffef9;
  text-decoration: none;
}
.emergency-report .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 6px;
  color: white;
  background: var(--health-accent);
  text-decoration: none;
}
.emergency-support {
  border-color: #b88d81;
  color: var(--health-accent);
}
.health-method {
  margin-top: 78px;
  padding-top: 44px;
  border-top: 1px solid var(--health-line);
}
.health-method > div:first-child {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.health-method h2 {
  max-width: 680px;
  margin: 0;
  font: 500 clamp(30px, 4vw, 44px)/1.12 var(--sans);
  letter-spacing: -0.045em;
}
.health-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-block: 1px solid var(--health-line);
}
.health-method-grid article {
  padding: 24px 22px 24px 0;
}
.health-method-grid article + article {
  padding-left: 22px;
  border-left: 1px solid var(--health-line);
}
.health-method-grid b {
  color: var(--health-accent);
  font-size: 9px;
}
.health-method-grid h3 {
  margin: 16px 0 7px;
  font-size: 15px;
}
.health-method-grid p {
  margin: 0;
  color: var(--health-muted);
  font-size: 10px;
  line-height: 1.65;
}
.health-source-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  align-items: center;
  margin-top: 20px;
  color: var(--health-muted);
  font-size: 9px;
}
.health-source-note > span {
  color: var(--health-ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.health-source-note a {
  color: var(--health-green);
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .health-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 58px;
  }
  .health-principles {
    grid-template-columns: 1fr;
  }
  .health-principles span,
  .health-principles span + span {
    padding: 12px 0;
    border-left: 0;
  }
  .health-principles span + span {
    border-top: 1px solid var(--health-line);
  }
  .health-method > div:first-child,
  .health-method-grid {
    grid-template-columns: 1fr;
  }
  .health-method-grid article,
  .health-method-grid article + article {
    padding: 20px 0;
    border-left: 0;
  }
  .health-method-grid article + article {
    border-top: 1px solid var(--health-line);
  }
}

@media (max-width: 600px) {
  .health-page .health-nav {
    height: 68px;
  }
  .health-page .nav-links {
    gap: 6px;
  }
  .health-page .nav-links > a {
    display: inline-flex;
    padding: 7px 4px;
    font-size: 9px;
  }
  .health-page .nav-links > a:first-child {
    display: none;
  }
  .health-shell {
    width: calc(100% - 24px);
  }
  .health-intro h1 {
    font-size: 41px;
  }
  .safety-card,
  .health-form,
  .followups,
  .report-card {
    padding: 20px;
  }
  .form-progress span {
    padding: 11px 3px;
    font-size: 7px;
  }
  .field-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }
  .span-two,
  .report-section.wide {
    grid-column: auto;
  }
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .care-destination {
    grid-template-columns: 1fr;
  }
  .care-destination span {
    grid-row: auto;
  }
  .report-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media print {
  .health-page .health-nav,
  .health-page .health-intro,
  .health-page .consult-card,
  .health-page .health-method,
  .health-page .footer,
  .health-page .report-actions,
  .health-page .toast {
    display: none !important;
  }
  .health-page,
  .health-shell,
  .result-shell {
    width: 100%;
    margin: 0;
    background: white;
  }
  .report-section,
  .care-destination,
  .urgency-banner,
  .report-card {
    break-inside: avoid;
    color: black;
    background: white !important;
    border-color: #bbb;
  }
}

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

/* Curaize Health — Bangla-first voice conversation */
.voice-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 72px;
  align-items: end;
  padding: 72px 0 58px;
}
.voice-hero h1 {
  max-width: 720px;
  margin: 0;
  font: 500 clamp(46px, 6.4vw, 72px)/1.02 var(--sans);
  letter-spacing: -0.058em;
}
.voice-hero h1 em {
  color: var(--health-accent);
  font-style: normal;
}
.voice-hero > div > p:not(.kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--health-muted);
  font-size: 15px;
  line-height: 1.75;
}
.voice-emergency-note {
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--health-accent);
}
.voice-emergency-note b {
  color: var(--health-accent);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.voice-emergency-note p {
  margin: 12px 0 16px;
  color: #695c57;
  font-size: 11px;
  line-height: 1.65;
}
.voice-emergency-note a {
  color: var(--health-accent);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}
.voice-consult-card {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--health-line);
  border-radius: 10px;
  background: var(--health-card);
}
.voice-consult-card.hidden,
.voice-review.hidden,
.voice-fallback.hidden,
.voice-loading.hidden,
.voice-mic.hidden,
.voice-status.hidden {
  display: none;
}
.voice-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #eceae3;
}
.voice-progress span {
  padding: 13px 10px;
  border-right: 1px solid var(--health-line);
  color: #898e89;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.voice-progress span:last-child {
  border-right: 0;
}
.voice-progress span.active {
  color: white;
  background: var(--health-green);
}
.voice-progress span.done {
  color: var(--health-green);
  background: #e4e9e2;
}
.voice-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 520px;
  padding: 56px 64px 38px;
  text-align: center;
}
.voice-stage h2 {
  max-width: 610px;
  margin: 16px 0 10px;
  font: 600 clamp(27px, 4vw, 38px)/1.2 var(--sans);
  letter-spacing: -0.04em;
}
.voice-hint {
  max-width: 560px;
  margin: 0;
  color: var(--health-muted);
  font-size: 12px;
  line-height: 1.65;
}
.voice-mic {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 138px;
  margin: 42px 0 18px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--health-green);
  box-shadow: 0 0 0 8px rgba(82, 104, 90, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.voice-mic:hover {
  background: #43584a;
  transform: translateY(-2px);
  box-shadow: 0 0 0 10px rgba(82, 104, 90, 0.1);
}
.voice-mic:focus-visible,
.voice-confirm:focus-visible,
.voice-replay:focus-visible {
  outline: 3px solid rgba(138, 68, 56, 0.28);
  outline-offset: 4px;
}
.voice-mic.listening {
  background: var(--health-accent);
  box-shadow: 0 0 0 12px rgba(138, 68, 56, 0.12);
  animation: voice-pulse 1.5s ease-in-out infinite;
}
.voice-mic:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}
.mic-shape {
  position: relative;
  width: 21px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 13px;
}
.mic-shape::before {
  position: absolute;
  right: -9px;
  bottom: -9px;
  left: -9px;
  height: 17px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  content: "";
}
.mic-shape::after {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}
.voice-mic-label {
  font-size: 10px;
  font-weight: 700;
}
.voice-wave {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 22px;
  opacity: 0;
}
.voice-wave.active {
  opacity: 1;
}
.voice-wave i {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--health-accent);
  animation: voice-wave 700ms ease-in-out infinite alternate;
}
.voice-wave i:nth-child(2),
.voice-wave i:nth-child(4) {
  animation-delay: 160ms;
}
.voice-wave i:nth-child(3) {
  animation-delay: 300ms;
}
.voice-status {
  min-height: 22px;
  margin: 4px 0 0;
  color: var(--health-muted);
  font-size: 11px;
  line-height: 1.5;
}
.voice-review {
  width: 100%;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--health-line);
  border-radius: 7px;
  background: #f5f3ed;
  text-align: left;
}
.voice-review > p {
  margin: 0;
  color: var(--health-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.voice-review blockquote {
  margin: 10px 0 18px;
  color: var(--health-ink);
  font-size: 16px;
  line-height: 1.55;
}
.voice-review > div,
.voice-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.voice-confirm,
.voice-replay {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--health-green);
  border-radius: 6px;
  color: white;
  background: var(--health-green);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.voice-fallback {
  width: 100%;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--health-line);
  border-radius: 7px;
  background: #f5f3ed;
  text-align: left;
}
.voice-fallback p {
  margin: 0 0 12px;
  color: var(--health-muted);
  font-size: 11px;
  line-height: 1.6;
}
.voice-fallback textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--health-line);
  border-radius: 5px;
  color: var(--health-ink);
  background: #fffef9;
  font: inherit;
  line-height: 1.55;
}
.voice-fallback .voice-confirm {
  margin-top: 10px;
}
.voice-loading {
  display: grid;
  justify-items: center;
  min-height: 230px;
  padding-top: 48px;
}
.voice-loading b {
  margin-top: 18px;
  font-size: 14px;
}
.voice-loading p {
  color: var(--health-muted);
  font-size: 11px;
}
.voice-consent {
  max-width: 610px;
  margin: auto 0 0;
  padding-top: 30px;
  color: #818580;
  font-size: 9px;
  line-height: 1.65;
}
.voice-replay {
  border-color: var(--health-accent);
  background: var(--health-accent);
}
.sound-mark {
  font-size: 18px;
  line-height: 0;
}
.voice-method {
  margin-top: 88px;
}

@keyframes voice-pulse {
  0%,
  100% { box-shadow: 0 0 0 8px rgba(138, 68, 56, 0.08); }
  50% { box-shadow: 0 0 0 16px rgba(138, 68, 56, 0.14); }
}
@keyframes voice-wave {
  from { height: 6px; }
  to { height: 20px; }
}

@media (max-width: 800px) {
  .voice-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 46px;
  }
  .voice-emergency-note {
    max-width: 600px;
  }
}

@media (max-width: 600px) {
  .voice-hero h1 {
    font-size: 43px;
  }
  .voice-stage {
    min-height: 500px;
    padding: 38px 20px 26px;
  }
  .voice-progress span {
    padding: 11px 3px;
    font-size: 8px;
  }
  .voice-mic {
    width: 122px;
    height: 122px;
    margin-top: 34px;
  }
  .voice-review > div,
  .voice-report-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .voice-confirm,
  .voice-replay,
  .voice-review .secondary-action {
    width: 100%;
  }
  .voice-consent {
    padding-top: 24px;
  }
}

@media print {
  .voice-health-page .voice-hero,
  .voice-health-page .voice-consult-card {
    display: none !important;
  }
}
