:root {
  --orange: #ED6C00;
  --orange-deep: #C95700;
  --coral: #EA5520;
  --cream: #FBECDA;
  --peach: #F7C59F;
  --peach-light: #FFF1E4;
  --surface: #FFFFFF;
  --mist: #F3F7F8;
  --charcoal: #1B1B1B;
  --brand-ink: #150001;
  --ink: #201A18;
  --paper: #FFFCF8;
  --soft-white: #FFF8F0;
  --muted: #6B625F;
  --line: rgba(32, 26, 24, 0.12);
  --success: #17653A;
  --error: #9E2416;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 18px 52px rgba(55, 38, 28, 0.11);
  --shadow-soft: 0 12px 32px rgba(55, 38, 28, 0.08);
  --shadow-control: 0 7px 18px rgba(55, 38, 28, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

a,
button {
  min-height: 44px;
}

p,
li,
a,
label,
summary {
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 14vw, 5.35rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.shell {
  width: min(100% - 28px, 1160px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 20;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 5;
  padding: 18px 0 8px;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-inner {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.06);
  border-radius: 18px;
  box-shadow: var(--shadow-control);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}

.header-support,
.site-footer a {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: 26px;
  margin-top: 16px;
  padding: 42px 22px 48px;
  background: var(--mist);
  border-radius: 36px;
}

.hero-summary,
.page-intro > div:first-child > p:last-child,
.support-hero > div:first-child > p:last-child {
  max-width: 42rem;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid var(--orange);
  border-radius: 14px;
  color: var(--ink);
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-control);
}

.button-primary {
  color: var(--surface);
  background: var(--orange);
  box-shadow: 0 9px 22px rgba(237, 108, 0, 0.20);
}

.button-secondary {
  background: var(--surface);
}

.privacy-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.path-selector {
  margin-top: 28px;
}

.path-selector > h2 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 0;
  line-height: 1.3;
}

.path-grid {
  display: grid;
  gap: 14px;
}

.path-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-control);
}

.path-card-support {
  background: var(--peach-light);
  border-color: rgba(237, 108, 0, 0.16);
}

.path-label {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-card h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.path-card p:not(.path-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.path-card .button {
  width: 100%;
  margin-top: 4px;
}

.product-panel {
  display: grid;
  gap: 8px;
  align-content: start;
  margin: 0;
  padding: 16px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 10px);
}

.count-badge {
  justify-self: end;
  padding: 8px 14px;
  color: var(--surface);
  background: var(--orange);
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 0.85;
  text-align: center;
}

.count-badge small {
  font-size: 0.55rem;
}

.reward-band {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  background: var(--peach-light);
  border: 1px solid rgba(237, 108, 0, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.reward-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 7vw, 2.6rem);
}

.reward-band p:last-child {
  margin-bottom: 0;
}

.reward-band .eyebrow {
  color: var(--orange-deep);
}

.reward-value {
  margin: 0;
  font-size: clamp(4rem, 19vw, 6rem);
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  color: var(--ink);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.section-block {
  margin-top: 38px;
  padding: 50px 22px;
  background: var(--peach-light);
  border-radius: 34px;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 28px;
}

.step-grid,
.feedback-grid {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-grid li,
.feedback-grid li {
  display: grid;
  gap: 10px;
  min-height: 182px;
  align-content: start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.05);
  border-radius: 22px;
  box-shadow: var(--shadow-control);
}

.step-grid li strong,
.feedback-grid li strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
}

.step-grid li > span:last-child,
.feedback-grid li > span:last-child {
  color: var(--muted);
}

.step-number {
  color: var(--orange);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.feedback-section {
  margin-bottom: 66px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.claim-intro {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--muted);
}

.claim-terms {
  margin: 22px 0 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid rgba(32, 26, 24, 0.12);
  font-size: 0.92rem;
}

.claim-terms strong {
  color: var(--ink);
}

.claim-cta {
  width: 100%;
  margin-top: 20px;
}

.feedback-intro {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.feedback-grid li:nth-child(even) {
  background: var(--mist);
}

.feedback-cta {
  width: 100%;
  margin-top: 22px;
}

.terms {
  display: grid;
  gap: 18px;
  margin-bottom: 82px;
  padding: 26px;
  background: var(--peach-light);
  border: 1px solid rgba(237, 108, 0, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.terms p:last-child {
  margin-bottom: 0;
}

.page-intro,
.support-hero {
  display: grid;
  gap: 24px;
  margin-top: 16px;
  padding: 42px 22px;
  background: var(--mist);
  border-radius: 36px;
}

.mini-reward,
.support-contact {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mini-reward strong {
  font-size: 4.5rem;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.mini-reward span,
.support-contact > span {
  color: var(--muted);
  font-weight: 700;
}

.form-section {
  margin-top: 16px;
  padding: 42px 22px 54px;
  background: var(--mist);
  border-radius: 36px;
}

.guide-page .form-section {
  padding-top: 42px;
}

form {
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.field-group + .field-group {
  margin-top: 22px;
}

.disclosure {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-control);
}

.disclosure > summary {
  display: list-item;
  align-items: center;
  min-height: 56px;
  padding: 15px 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  cursor: pointer;
}

.disclosure > summary::marker {
  color: var(--orange);
}

.disclosure[open] > summary {
  border-bottom: 1px solid rgba(21, 0, 1, 0.12);
}

.disclosure-body {
  padding: 18px 16px;
}

.form-disclosure {
  margin-top: 22px;
  background: var(--surface);
}

.form-disclosure .disclosure-body {
  padding-top: 4px;
}

label {
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
  font-weight: 900;
}

label span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.field-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #F7F9F9;
  border: 1px solid rgba(32, 26, 24, 0.16);
  border-radius: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

input:focus,
textarea:focus {
  border-color: var(--orange);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(237, 108, 0, 0.10);
  outline: none;
}

.form-actions {
  margin-top: 26px;
}

.email-destination {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.status {
  min-height: 1.6em;
  margin: 12px 0 0;
  white-space: pre-wrap;
}

.status[data-state="success"] {
  color: var(--success);
  font-weight: 800;
}

.status[data-state="error"] {
  color: var(--error);
  font-weight: 800;
}

.clipboard-fallback {
  position: absolute;
  left: -10000px;
  width: 1px;
  min-height: 1px;
  opacity: 0;
}

.care-grid,
.support-grid {
  display: grid;
  gap: 18px;
  padding-bottom: 34px;
}

.post-form-stack,
.support-content {
  display: grid;
  gap: 16px;
  padding-block: 42px 48px;
}

.dosage-card,
.reward-card,
.include-card,
.faq-list {
  padding: 24px;
  background: var(--peach-light);
  border: 1px solid rgba(237, 108, 0, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.reward-card,
.faq-list {
  background: var(--peach-light);
}

.reward-card-compact {
  padding: 20px;
}

.reward-card-compact h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 6vw, 2rem);
}

.reward-card-compact p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.dosage-disclosure {
  background: var(--soft-white);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(21, 0, 1, 0.22);
  text-align: left;
}

th:last-child,
td:last-child {
  text-align: right;
}

.label-note {
  margin: 18px 0 0;
  padding: 14px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.check-list li {
  padding-left: 5px;
}

.check-list li::marker {
  color: var(--orange);
}

.helpful-email-cta {
  width: 100%;
  margin-top: 22px;
}

.safety {
  display: grid;
  gap: 16px;
  margin-bottom: 70px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid rgba(32, 26, 24, 0.06);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-control);
}

.safety h2 {
  font-size: 1.55rem;
}

.safety p:last-child {
  margin-bottom: 0;
}

.safety-compact {
  gap: 8px;
  margin-bottom: 52px;
  padding: 18px 20px;
}

.safety-compact h2 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.safety-compact p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.support-email {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: clamp(1.25rem, 7vw, 2rem);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration-color: var(--orange);
  text-underline-offset: 5px;
}

.support-resolution-note {
  margin: 8px 0 0;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid rgba(32, 26, 24, 0.10);
  font-size: 0.86rem;
  line-height: 1.5;
}

.support-resolution-note strong {
  color: var(--ink);
}

.faq-list h2,
.include-card h2,
.dosage-card h2,
.reward-card h2 {
  font-size: clamp(1.8rem, 7vw, 2.5rem);
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-item summary {
  min-height: 52px;
  padding: 14px 42px 14px 16px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  padding: 0 16px 16px;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-disclosure {
  background: var(--surface);
}

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

.faq-answer {
  padding: 16px;
  background: var(--mist);
  border: 1px solid rgba(32, 26, 24, 0.06);
  border-radius: 14px;
}

.faq-answer h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--mist);
}

.not-found {
  padding: 48px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found h1,
.not-found p {
  margin-inline: auto;
}

.site-footer {
  padding: 34px 0;
  background: var(--charcoal);
  color: var(--paper);
}

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

.footer-inner p {
  max-width: 46rem;
  margin: 0;
  color: #E7E0DC;
  font-size: 0.86rem;
}

.footer-health-notice {
  flex: 1;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.site-footer a {
  color: var(--paper);
}

@media (min-width: 760px) {
  .site-header {
    padding-top: 22px;
  }

  .hero,
  .page-intro,
  .support-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: center;
  }

  .hero {
    padding: 60px 54px 66px;
  }

  .actions {
    grid-template-columns: repeat(2, max-content);
  }

  .reward-band {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 32px 38px;
  }

  .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feedback-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feedback-cta {
    width: fit-content;
  }

  .claim-cta {
    width: fit-content;
  }

  .terms,
  .safety {
    align-items: start;
  }

  .form-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
    gap: 42px;
    align-items: start;
    padding: 52px 54px 60px;
  }

  .page-intro,
  .support-hero {
    padding: 52px 54px;
  }

  .section-block {
    padding: 62px 48px;
  }

  .care-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-form-stack,
  .support-content {
    width: min(100% - 32px, 880px);
  }

  .helpful-email-cta {
    width: fit-content;
  }

  .footer-inner {
    flex-direction: row;
  }

  .footer-with-notice > strong,
  .footer-with-notice > nav {
    flex: 0 0 auto;
  }
}

@media (min-width: 1080px) {
  .hero {
    gap: 66px;
  }

  form,
  .dosage-card,
  .reward-card,
  .include-card,
  .faq-list {
    padding: 34px;
  }

  .reward-card-compact {
    padding: 22px 24px;
  }
}

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