:root {
  --navy: #04154c;
  --blue: #00b7e5;
  --aqua: #0dd5c4;
  --green: #23e8a9;
  --teal: #01758a;
  --white: #ffffff;
  --mist: #f2fbfa;
  --ice: #f4f8fc;
  --line: #dce8eb;
  --muted: #455272;
  --gradient: linear-gradient(110deg, var(--aqua), var(--green));
  --gradient-wide: linear-gradient(110deg, var(--blue), var(--aqua) 55%, var(--green));
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-space: clamp(4.5rem, 9vw, 8rem);
  --radius-small: 12px;
  --radius-card: 24px;
  --radius-large: 40px;
  --shadow: 0 24px 70px rgba(4, 21, 76, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--white);
  color: var(--navy);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 6px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.1vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.review-bar {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0;
  padding-inline: 1rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.8rem 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(4, 21, 76, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.brand {
  display: flex;
  flex: none;
  min-height: 44px;
  align-items: center;
}

.brand img {
  width: 120px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.6vw, 2.2rem);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-block: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--aqua);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border: 0;
  border-radius: var(--radius-small);
  background: var(--gradient-wide);
  box-shadow: 0 12px 28px rgba(1, 117, 138, 0.18);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(1, 117, 138, 0.24);
}

.button-small {
  min-height: 46px;
  padding: 0.65rem 1.1rem;
  font-size: 0.86rem;
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.eyebrow {
  margin-bottom: 1.05rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  display: flex;
  min-height: min(860px, calc(100vh - 116px));
  align-items: center;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1.04fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero h1 span,
.section-heading h2 span,
.pharmacy-copy h2 span {
  background: var(--gradient-wide);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 4.6vw, 4.15rem);
}

.hero-lead {
  max-width: 56ch;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.hero-lead strong {
  color: var(--navy);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--teal);
  font-size: 1.3em;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.2rem;
}

.trust-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: center;
}

.visual-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(510px, 88%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 48% 46%, rgba(35, 232, 169, 0.085) 0%, rgba(13, 213, 196, 0.062) 31%, rgba(0, 183, 229, 0.036) 53%, rgba(0, 183, 229, 0.012) 67%, transparent 78%);
  box-shadow: none;
  filter: blur(16px);
}

.visual-halo::before,
.visual-halo::after,
.signup-halo::before,
.signup-halo::after {
  content: none;
}

.premium-sparkles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.premium-sparkles span {
  position: absolute;
  width: 12px;
  height: 12px;
  animation: qizai-sparkle 4.8s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(13, 213, 196, 0.32));
}

.premium-sparkles span::before,
.premium-sparkles span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(127, 233, 223, 0.68) 62%, rgba(0, 183, 229, 0.38));
  content: "";
  transform: translate(-50%, -50%);
}

.premium-sparkles span::before {
  width: 2px;
  height: 100%;
}

.premium-sparkles span::after {
  width: 100%;
  height: 2px;
}

.visual-sparkles span:nth-child(1) { top: 15%; left: 13%; width: 14px; height: 14px; }
.visual-sparkles span:nth-child(2) { top: 27%; right: 7%; width: 8px; height: 8px; animation-delay: -1.3s; }
.visual-sparkles span:nth-child(3) { right: 12%; bottom: 22%; width: 11px; height: 11px; animation-delay: -2.6s; }
.visual-sparkles span:nth-child(4) { bottom: 13%; left: 17%; width: 7px; height: 7px; animation-delay: -3.4s; }
.visual-sparkles span:nth-child(5) { top: 43%; left: 5%; width: 9px; height: 9px; animation-delay: -4.1s; }

@keyframes qizai-sparkle {
  0%, 100% { opacity: 0.14; transform: scale(0.78); }
  50% { opacity: 0.58; transform: scale(1); }
}

.hero-character {
  position: absolute;
  z-index: 2;
  height: auto;
  filter: drop-shadow(0 24px 30px rgba(4, 21, 76, 0.13));
  pointer-events: none;
  user-select: none;
}

.hero-character-panda {
  bottom: 0;
  right: -7%;
  width: min(235px, 40%);
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(290px, 72%);
  padding: 3px;
  border-radius: 50px;
  background: linear-gradient(150deg, #dfe7ed, #79859a 30%, #f8fbfd 52%, #6e788d 72%, #e6eef2);
  box-shadow: 0 45px 80px rgba(4, 21, 76, 0.24), 0 7px 20px rgba(4, 21, 76, 0.18);
}

.phone-body {
  position: relative;
  padding: 7px;
  border-radius: 47px;
  background: #090c12;
}

.phone-screen {
  overflow: hidden;
  border-radius: 39px;
  background: var(--ice);
}

.phone-screen img {
  width: 100%;
  height: auto;
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 31%;
  aspect-ratio: 4.15;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070c;
}

.hero-orb {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: -9rem;
  left: -13rem;
  width: 27rem;
  height: 27rem;
  border: 0;
  background: radial-gradient(circle at 48% 46%, rgba(35, 232, 169, 0.085) 0%, rgba(13, 213, 196, 0.062) 31%, rgba(0, 183, 229, 0.036) 53%, rgba(0, 183, 229, 0.012) 67%, transparent 78%);
  filter: blur(16px);
}

.hero-orb-two {
  right: -14rem;
  bottom: -20rem;
  width: 36rem;
  height: 36rem;
  border-color: rgba(35, 232, 169, 0.3);
}

.statement {
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--white);
}

.statement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.statement-inner span {
  background: var(--gradient-wide);
  background-clip: text;
  color: transparent;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.statement-inner-wide span {
  max-width: 16ch;
  font-size: clamp(3.1rem, 6.2vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-align: center;
}

.statement-inner-services span {
  max-width: 22ch;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 1;
}

.statement-inner i {
  width: 3px;
  height: clamp(5rem, 10vw, 9rem);
  flex: none;
  border-radius: 99px;
  background: var(--gradient);
}

.statement-caption {
  max-width: 54ch;
  margin-top: 2.2rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: center;
}

.problem-section,
.security-section {
  background: var(--ice);
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
  max-width: 16ch;
}

.section-heading-wide h2 {
  max-width: 19ch;
}

.section-heading > p:last-child {
  max-width: 66ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  min-height: 305px;
  padding: clamp(1.65rem, 3.2vw, 2.5rem);
  border: 1px solid rgba(4, 21, 76, 0.06);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(4, 21, 76, 0.06);
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.card-number {
  margin-bottom: 2.75rem;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.document-followup {
  max-width: 980px;
  margin: 1.4rem 0 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(13, 213, 196, 0.26);
  border-radius: var(--radius-card);
  background: linear-gradient(110deg, rgba(0, 183, 229, 0.08), rgba(35, 232, 169, 0.12));
  color: var(--muted);
}

.document-followup strong {
  color: var(--navy);
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.use-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
}

.use-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.25fr 1fr;
  gap: 1rem;
  background: var(--mist);
}

.use-card p {
  max-width: 55ch;
  margin-bottom: 0;
  color: var(--muted);
}

.use-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.use-card li {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(1, 117, 138, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
}

.use-index {
  color: var(--aqua);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.pharmacy-section {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.pharmacy-section::after {
  position: absolute;
  right: -14rem;
  bottom: -18rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(35, 232, 169, 0.12);
  border-radius: 50%;
  content: "";
}

.pharmacy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  column-gap: clamp(2.5rem, 5vw, 5.5rem);
  row-gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.eyebrow-light {
  color: #67d9c2;
  font-weight: 800;
}

.pharmacy-copy h2 {
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(2.15rem, 3.1vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: pretty;
}

.pharmacy-copy h2 span {
  background: none;
  color: #62cec5;
  -webkit-text-fill-color: #62cec5;
}

.pharmacy-copy h2 .pharmacy-title-second {
  display: inline-block;
  margin-top: 0.4em;
}

.pharmacy-lead {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.button-light {
  background: var(--white);
  box-shadow: none;
}

.roles-card {
  padding: clamp(1.8rem, 3.2vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.roles-label {
  margin-bottom: 1.7rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roles-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roles-card li {
  display: grid;
  min-height: 62px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.roles-card li span {
  color: var(--aqua);
  font-size: 0.7rem;
  font-weight: 800;
}

.roles-card li strong {
  font-size: 1.1rem;
}

.pharmacy-benefits li {
  min-height: 66px;
  grid-template-columns: 1fr;
}

.pharmacy-benefits {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pharmacy-benefits ul {
  position: relative;
  z-index: 2;
  width: 48%;
  margin-left: 52%;
  padding: 3rem 2rem 3rem 1.6rem;
}

.pharmacy-character {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  pointer-events: none;
}

.pharmacy-character img {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 390px;
  max-width: none;
  height: auto;
  transform: translateX(-64%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.16));
}

.pharmacy-benefits li:first-child {
  border-top: 0;
}

.pharmacy-benefits li strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.pharmacy-details {
  display: grid;
  overflow: hidden;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  list-style: none;
}

.pharmacy-details li {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 1.25rem 1.4rem 1.25rem 3.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  font-weight: 600;
  line-height: 1.5;
}

.pharmacy-details li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pharmacy-details li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.pharmacy-details li::before {
  position: absolute;
  left: 1.35rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px rgba(13, 213, 196, 0.08);
  content: "";
}

.roles-note {
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.security-visual {
  display: grid;
  aspect-ratio: 1;
  width: min(100%, 520px);
  place-items: center;
  margin: 0;
  background: transparent;
  justify-self: center;
}

.security-visual img {
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 38px rgba(4, 21, 76, 0.13));
}

.security-copy h2 {
  max-width: 14ch;
}

.security-subtitle {
  max-width: 23ch;
  margin: -0.15rem 0 1.25rem;
  color: var(--teal);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 650;
  line-height: 1.18;
}

.security-copy > p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--muted);
}

.security-copy .security-lock-note {
  margin-top: 1.2rem;
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.34rem;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--navy);
  content: "✓";
  font-size: 0.7rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.principle {
  display: flex;
  flex-direction: column;
  padding-right: clamp(2.5rem, 5vw, 4.5rem);
}

.principle h2 {
  min-height: 5.4em;
  max-width: 12ch;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.principle h2.private-commitments {
  display: block;
  min-height: 0;
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.private-commitments em {
  background: var(--gradient-wide);
  background-clip: text;
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.consumer-benefits {
  margin: 0 0 1.75rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.consumer-benefits li {
  display: grid;
  min-height: 72px;
  grid-template-columns: 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.consumer-benefits strong {
  color: var(--navy);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
}

.principle > p.consumer-copy {
  max-width: 44ch;
  line-height: 1.7;
}

.principle > p:not(.eyebrow):not(.strong-note) {
  min-height: 5.25em;
  margin-bottom: 0;
  color: var(--muted);
}

.principle-border {
  padding-right: 0;
  padding-left: clamp(2.5rem, 5vw, 4.5rem);
  border-left: 1px solid var(--line);
}

.strong-note {
  margin: 1.5rem 0 0;
  color: var(--navy);
  font-weight: 800;
}

.signup-section {
  overflow: hidden;
  padding-bottom: 0;
  background: var(--mist);
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.signup-copy {
  align-self: center;
  padding-bottom: var(--section-space);
}

.signup-copy h2 {
  max-width: 11ch;
}

.signup-copy > p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
}

.signup-form {
  display: grid;
  max-width: 540px;
  gap: 1.1rem;
  margin-top: 2rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.field input {
  min-height: 54px;
  width: 100%;
  border: 2px solid rgba(4, 21, 76, 0.25);
  border-radius: var(--radius-small);
  padding-inline: 1rem;
  background: var(--white);
  color: var(--navy);
}

.field input:focus {
  border-color: var(--teal);
}

.consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent input {
  width: 22px;
  height: 22px;
  margin: 0.1rem 0 0;
  accent-color: var(--teal);
}

.signup-form .button {
  justify-self: start;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.signup-visual {
  position: relative;
  display: grid;
  min-height: 680px;
  width: min(480px, 100%);
  place-items: end center;
  justify-self: end;
}

.signup-halo {
  position: absolute;
  bottom: -8%;
  left: 50%;
  width: min(440px, 94%);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(35, 232, 169, 0.082) 0%, rgba(13, 213, 196, 0.06) 32%, rgba(0, 183, 229, 0.034) 54%, rgba(0, 183, 229, 0.011) 68%, transparent 79%);
  box-shadow: none;
  filter: blur(16px);
}

.signup-sparkles span:nth-child(1) { top: 20%; left: 8%; width: 12px; height: 12px; }
.signup-sparkles span:nth-child(2) { top: 31%; right: 5%; width: 8px; height: 8px; animation-delay: -1.8s; }
.signup-sparkles span:nth-child(3) { right: 10%; bottom: 20%; width: 11px; height: 11px; animation-delay: -3s; }
.signup-sparkles span:nth-child(4) { bottom: 12%; left: 14%; width: 7px; height: 7px; animation-delay: -4s; }

.signup-phone-shell {
  width: min(310px, 74%);
  transform: rotate(3deg) translateY(2.5rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding-block: 2.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-grid > img {
  width: 105px;
  height: auto;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
}

.footer-grid nav a,
.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.capture-mode .site-header {
  position: relative;
}

.capture-mode {
  scroll-behavior: auto !important;
  scrollbar-width: none;
}

.capture-mode::-webkit-scrollbar {
  display: none;
}

.capture-mode .skip-link {
  display: none;
}

.capture-mode .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.professional-page-shell {
  min-height: calc(100vh - 116px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 34%, rgba(13, 213, 196, 0.12), transparent 30%),
    linear-gradient(145deg, #f7fbfd 0%, #eef9fa 100%);
}

.professional-hero {
  display: grid;
  min-height: calc(100vh - 116px);
  align-items: center;
}

.professional-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

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

.professional-hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.professional-hero-copy h1 span {
  background: var(--gradient-wide);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.professional-lead {
  max-width: 58ch;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.professional-benefit-list {
  display: grid;
  max-width: 640px;
  gap: 0;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.professional-benefit-list li {
  position: relative;
  display: grid;
  gap: 0.1rem;
  min-height: 72px;
  align-content: center;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--line);
}

.professional-benefit-list li::before {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 0.52rem;
  height: 0.52rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 5px rgba(13, 213, 196, 0.09);
  content: "";
}

.professional-benefit-list strong {
  color: var(--navy);
  font-size: 1rem;
}

.professional-benefit-list span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.professional-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.professional-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(500px, 42vw);
  aspect-ratio: 1;
  transform: translate(-48%, -48%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 232, 169, 0.18) 0%, rgba(0, 183, 229, 0.08) 48%, transparent 72%);
  filter: blur(8px);
}

.professional-character {
  position: absolute;
  z-index: 2;
  bottom: -12rem;
  left: 52%;
  width: min(510px, 43vw);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 42px rgba(4, 21, 76, 0.14));
}

.professional-sparkles {
  position: absolute;
  inset: 12% 4% 14% 5%;
}

.professional-badge {
  position: absolute;
  z-index: 3;
  top: 22%;
  right: 0;
  display: grid;
  gap: 0.12rem;
  margin: 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(1, 117, 138, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(4, 21, 76, 0.08);
  backdrop-filter: blur(14px);
}

.professional-badge span {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.professional-badge strong {
  color: var(--navy);
  font-size: 0.94rem;
}

@media (max-width: 940px) {
  .professional-hero-grid {
    grid-template-columns: 1fr;
  }

  .professional-hero-copy {
    max-width: 720px;
  }

  .professional-visual {
    min-height: 540px;
  }

  .professional-character {
    bottom: -14rem;
    width: min(500px, 72vw);
  }

  .professional-halo {
    width: min(480px, 76vw);
  }
}

@media (max-width: 700px) {
  .professional-hero {
    padding-bottom: 0;
  }

  .professional-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .professional-visual {
    min-height: 460px;
  }

  .professional-character {
    bottom: -10rem;
    width: min(390px, 88vw);
  }

  .professional-badge {
    top: 12%;
    right: 2%;
  }
}

@media (max-width: 940px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    width: 21px;
    height: 2px;
    border-radius: 9px;
    background: var(--navy);
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 2 * var(--gutter)));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    min-height: 52px;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
    background: var(--mist);
  }

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

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

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

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

  .card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 1.5rem;
  }

  .pharmacy-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-visual {
    width: 100%;
    max-width: 540px;
  }

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

  .signup-visual {
    min-height: 600px;
    width: min(390px, 80vw);
    justify-self: center;
  }

  .signup-copy {
    padding-bottom: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: clamp(4rem, 18vw, 5.5rem);
  }

  body {
    font-size: 1rem;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 105px;
  }

  .hero {
    min-height: 0;
    padding-top: 4rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 11.8vw, 3.15rem);
  }

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

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

  .text-link {
    justify-content: center;
  }

  .trust-list {
    gap: 0.5rem 1rem;
  }

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

  .hero-visual > .phone-shell {
    width: min(210px, 60vw);
    transform: translateY(-2.5rem);
  }

  .phone-shell {
    border-radius: 42px;
  }

  .phone-body {
    border-radius: 39px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .hero-character-panda {
    bottom: 0;
    right: -8%;
    width: min(145px, 40%);
  }

  .statement-inner {
    flex-direction: column;
    gap: 0.7rem;
  }

  .statement-inner span {
    font-size: clamp(4rem, 26vw, 7rem);
  }

  .statement-inner-wide span {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .statement-inner-services span {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
  }

  .statement-inner i {
    width: 30%;
    height: 2px;
  }

  .uses-grid,
  .pharmacy-details,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .pharmacy-benefits {
    min-height: 0;
    padding: 15.5rem 1.5rem 1.4rem;
  }

  .pharmacy-benefits ul {
    width: 100%;
    margin-left: 0;
    padding: 0;
    border-left: 0;
  }

  .pharmacy-character {
    top: 0;
    left: 50%;
    width: 310px;
    height: 236px;
    overflow: hidden;
    transform: translateX(-60%);
  }

  .pharmacy-character img {
    position: static;
    width: 100%;
    transform: none;
  }

  .pharmacy-details li:nth-child(odd) {
    border-right: 0;
  }

  .pharmacy-details li:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pharmacy-details li:last-child {
    border-bottom: 0;
  }

  .use-card-featured {
    grid-template-columns: 1fr;
  }

  .use-card {
    min-height: 0;
  }

  .use-card ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle-border {
    padding-top: 3rem;
    padding-right: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle {
    padding-right: 0;
  }

  .principle h2,
  .principle > p:not(.eyebrow):not(.strong-note) {
    min-height: 0;
  }

  .signup-form .button {
    width: 100%;
  }

  .signup-visual {
    min-height: 550px;
  }

  .signup-phone-shell {
    width: min(240px, 70vw);
    transform: rotate(2deg) translateY(2rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .review-bar {
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-character-panda {
    width: 128px;
  }


}

.professional-review-bar {
  background: #020c2b;
  color: rgba(255, 255, 255, 0.72);
}

.professional-site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(4, 21, 76, 0.98);
  color: var(--white);
}

.professional-site-header .brand {
  padding: 0.3rem 0.65rem;
  border-radius: 9px;
  background: var(--white);
}

.professional-site-header .brand img {
  width: 108px;
}

.professional-header-mark {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(13, 213, 196, 0.34);
  border-radius: 6px;
  color: #7ce7d8;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.professional-site-header .desktop-nav a {
  color: rgba(255, 255, 255, 0.76);
}

.professional-site-header .mobile-nav summary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.professional-site-header .mobile-nav summary span {
  background: var(--white);
}

.professional-page-shell {
  position: relative;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 183, 229, 0.12), transparent 28%),
    linear-gradient(135deg, #03113e 0%, #061b51 58%, #05265b 100%);
  color: var(--white);
}

.professional-page-shell::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 88%);
  pointer-events: none;
}

.professional-hero {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 116px);
  align-items: center;
}

.professional-hero-grid {
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  gap: clamp(3rem, 5.5vw, 5.75rem);
}

.professional-hero-copy .eyebrow {
  color: #65dfce;
}

.professional-hero-copy h1 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(3rem, 4.7vw, 4.35rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.professional-hero-copy h1 span {
  background: linear-gradient(110deg, #31d7e7, #36e4b4);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.professional-lead {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.7);
}

.professional-benefit-list {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.professional-benefit-list li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.professional-benefit-list strong {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.professional-benefit-list span {
  color: rgba(255, 255, 255, 0.58);
}

.professional-public-link {
  color: rgba(255, 255, 255, 0.78);
}

.professional-visual {
  display: flex;
  min-height: 590px;
  align-items: center;
  overflow: visible;
}

.professional-console {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem) 5.5rem;
  border: 1px solid rgba(112, 220, 228, 0.2);
  border-radius: 18px;
  background: rgba(246, 251, 254, 0.97);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.professional-console::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-wide);
  content: "";
}

.professional-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.professional-console-header > div {
  display: grid;
  gap: 0.2rem;
}

.professional-console-kicker {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.professional-console-header strong {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.professional-secure-status {
  position: relative;
  padding-left: 1rem;
  color: #18775e;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.professional-secure-status::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(35, 232, 169, 0.12);
  content: "";
}

.professional-console-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.professional-console-metrics article {
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 1rem 1.1rem;
  border: 1px solid #ddebee;
  border-radius: 12px;
  background: var(--white);
}

.professional-console-metrics span,
.professional-console-metrics small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.professional-console-metrics strong {
  margin-block: 0.15rem;
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.professional-console-activity > p {
  margin-bottom: 0.65rem;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.professional-console-activity ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.professional-console-activity li {
  display: grid;
  min-height: 66px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  padding-right: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.professional-console-activity i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 8px;
  background: #e8f7f7;
  color: var(--teal);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.professional-console-activity li > span {
  display: grid;
  min-width: 0;
}

.professional-console-activity strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.professional-console-activity small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.professional-console-activity em {
  color: var(--teal);
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.professional-console-character {
  position: absolute;
  z-index: 2;
  right: -1.2rem;
  bottom: -8.5rem;
  width: 178px;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(4, 21, 76, 0.16));
  pointer-events: none;
}

.professional-site-footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: #020c2b;
  color: rgba(255, 255, 255, 0.64);
}

.professional-site-footer .footer-grid nav a,
.professional-site-footer .footer-grid > p {
  color: rgba(255, 255, 255, 0.64);
}

.professional-site-footer .footer-grid > img {
  padding: 0.25rem 0.5rem;
  border-radius: 7px;
  background: var(--white);
}

@media (max-width: 940px) {
  .professional-header-mark {
    margin-right: auto;
  }

  .professional-hero-grid {
    grid-template-columns: 1fr;
  }

  .professional-visual {
    min-height: 0;
  }

  .professional-console {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .professional-header-mark {
    font-size: 0.58rem;
  }

  .professional-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 3.65rem);
  }

  .professional-console {
    padding: 1.15rem 1.05rem 4.8rem;
  }

  .professional-console-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .professional-console-metrics article {
    min-height: 104px;
    padding: 0.8rem;
  }

  .professional-console-activity li {
    grid-template-columns: 31px minmax(0, 1fr);
  }

  .professional-console-activity em {
    display: none;
  }

  .professional-console-character {
    right: -1.7rem;
    bottom: -7.6rem;
    width: 148px;
  }
}

.professional-visual#verification {
  scroll-margin-top: 8rem;
}

.professional-gate {
  width: 100%;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(112, 220, 228, 0.24);
  border-radius: 18px;
  background: rgba(248, 252, 254, 0.98);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.professional-gate-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.professional-gate-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  background: var(--gradient-wide);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.professional-gate-heading > div {
  display: grid;
  gap: 0.15rem;
}

.professional-gate-heading p {
  margin: 0;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.professional-gate-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  letter-spacing: -0.035em;
}

.professional-gate-intro {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pro-access-form {
  display: grid;
  gap: 1rem;
}

.pro-method-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin: 0;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #edf5f7;
}

.pro-method-switch legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pro-method-switch label {
  position: relative;
  cursor: pointer;
}

.pro-method-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pro-method-switch span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pro-method-switch input:checked + span {
  background: var(--white);
  box-shadow: 0 5px 16px rgba(4, 21, 76, 0.09);
  color: var(--navy);
}

.pro-method-switch input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.pro-contact-field {
  display: grid;
  gap: 0.4rem;
}

.pro-contact-field[hidden] {
  display: none;
}

.pro-contact-field label {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
}

.pro-contact-field input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border: 1px solid #cbdcdf;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.pro-contact-field input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(13, 213, 196, 0.1);
}

.pro-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.pro-consent input {
  width: 17px;
  height: 17px;
  margin: 0.1rem 0 0;
  accent-color: var(--teal);
}

.pro-access-form .button {
  width: 100%;
}

.pro-form-status {
  min-height: 1.45em;
  margin: 0;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
}

.professional-gate-note {
  margin: 0.9rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.professional-gate-note strong {
  color: var(--navy);
}

@media (max-width: 700px) {
  .professional-gate {
    padding: 1.25rem 1rem;
  }

  .pro-method-switch {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
