@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,800&display=swap');

/* ========== GLOBAL TOKENS ========== */
:root {
  --page-pad: clamp(16px, 5vw, 80px);
  --rail: clamp(10px, 3vw, 28px);
  --dot-right: var(--rail);
  --header-height: 64px;

  /* Color system */
  --color-rose-700: #ac4974;
  --color-rose-500: #b24f73;
  --color-rose-400: #dd80c9;
  --color-rose-100: #ffdef8;
  --color-rose-050: #ffedfb;
  --color-cream-050: #fff9ea;
  --color-ice-050: #e9fcff;
  --color-ice-100: #c9e9ea;
  --color-teal-500: #4fa18a;
  --color-teal-600: #62a598;
  --color-teal-700: #2d8076;
  --color-ink: #2d2430;
  --color-white: #ffffff;
  --color-muted: #455055;
  --header-accent: var(--color-white);
  --menu-surface: #222;

  /* Radii & shadows */
  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 12px 12px 24px rgba(0,0,0,0.1);
  --shadow-float: 0 18px 40px rgba(0, 0, 0, 0.4);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 40px;

  /* Alpine Labs footer tokens */
  --alpine-blue: #6495ed;
  --alpine-blue-dark: #4f7dd7;
  --alpine-navy: #0f172a;
  --alpine-muted: #64748b;
  --alpine-border: #e5e7eb;
  --alpine-soft: #e3ecff;
  --al-footer-height: clamp(220px, 30vw, 320px);
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100%;
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  color: var(--color-white);
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page,
main {
  background-color: #ffffff;
}


.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main scroll container for scroll snap */
main {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

/* ============================================================
   SHARED CHECKBOX SIZING (keep boxes consistent across pages)
   ============================================================ */
.onboard-checkbox,
.onboard-option-checkbox,
.ea-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS: full-screen height + scroll snap
   ============================================================ */

.hero,
.info-section,
.portals-section,
.ai-section,
.vital-section,
.smart-section,
.audience-section,
.faq-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* ============================================================
   BUTTONS & UTILITIES
   ============================================================ */

.btn,
.btn-primary,
.btn-signup,
.thankyou-cta,
.awesome-cta,
.onboard-submit-btn,
.onboard-skip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.2s ease, color 0.2s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary,
.btn-signup {
  background-color: var(--color-teal-600);
  color: var(--color-white);
}

.btn-primary:hover,
.btn-signup:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(98, 165, 152, 0.25);
}

.btn-primary:active,
.btn-signup:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-rose {
  background-color: var(--color-rose-700);
  color: var(--color-white);
}

.btn-rose:hover {
  background-color: #933f65;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid currentColor;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.section-cta {
  margin-top: var(--space-xl);
}

.hidden {
  display: none !important;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
}


.header-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 14px var(--page-pad) 14px var(--page-pad);
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.35s ease;
}

.logo-mark {
  width: 32px;
  height: 32px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--header-accent, var(--color-rose-700));
  transition: color 0.35s ease;
}

.logo-text-white {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.logo-text-green {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-teal-500);
}

.header-right {
  position: absolute;
  top: 0;
  right: var(--dot-right);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.btn-signup {
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
}

.hamburger {
  position: relative;
  width: 32px;
  height: 22px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  color: var(--header-accent, var(--color-white));
  transform: translateY(0);
  transition: color 0.35s ease;
}

.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease, background-color 0.35s ease;
}

.hamburger span:nth-child(1) { top: 3px; transform: translateX(-50%); }
.hamburger span:nth-child(2) { transform: translate(-50%, -50%); }
.hamburger span:nth-child(3) { top: 17px; transform: translateX(-50%); }

.hamburger.open span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: var(--dot-right);
  background-color: var(--menu-surface, #222);
  color: var(--header-accent, var(--color-white));
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
  pointer-events: auto;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  cursor: pointer;
  color: inherit;
}

.mobile-menu a:hover {
  text-decoration: underline;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  background-color: var(--color-rose-700);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(48px, 6vw, 72px) var(--page-pad) clamp(40px, 6vw, 64px);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(32px, 12vw, 160px);
}

.hero-left {
  max-width: clamp(520px, 46vw, 720px);
  align-self: center;
  transform: translateY(10px); /* nudge text block slightly lower */
  margin-left: 0;
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.6rem);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-line { display: block; }

.hero-light { color: #dd80c9; }
.hero-white { color: #ffffff; }

.hero-emphasis {
  color: #ffffff;
  font-weight: 700;
  margin-left: 8px;
}

/* Specific treatment for the first hero word */
.hero-take {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 400;
  color: #dd80c9;
  line-height: 1;
}

.hero-control {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.hero-of {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 400;
  color: #dd80c9;
  line-height: 1;
}

.hero-your {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
}

.hero-health {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 400;
  color: #dd80c9;
  line-height: 1;
}

.hero-data {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.btn-primary {
  min-width: 187px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: stretch;
  position: relative;
  height: 100%;
}

.hero-right img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  height: clamp(81vh, 94vh, 102vh);
  max-height: clamp(81vh, 94vh, 102vh);
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
}

/* standalone figure anchored to bottom of hero */
.hero-figure {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  padding-right: 30px;
}

.hero-figure img {
  height: clamp(60vh, 90vh, 102vh);
  max-height: clamp(60vh, 90vh, 102vh);
  width: auto;
  max-width: min(560px, 70vw);
  object-fit: contain;
  object-position: bottom right;
}

/* ============================================================
   DOT NAV
   ============================================================ */

.hero-dots,
.info-dots,
.portals-dots,
.ai-dots,
.vital-dots,
.smart-dots,
.audience-dots,
.faq-dots {
  position: absolute;
  right: var(--dot-right);
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.info-dots {
  right: var(--dot-right);
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #d0e3fc;
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background-color: #d0e3fc;
  border-color: #d0e3fc;
}

/* HOW IT WORKS section dots */
.info-section .dot {
  border-color: var(--color-rose-700) !important;
}

.info-section .dot.active {
  background-color: var(--color-rose-700) !important;
  border-color: var(--color-rose-700) !important;
}

/* PORTALS section dots */
.portals-section .dot {
  border-color: var(--color-rose-400) !important;
}

.portals-section .dot.active {
  background-color: var(--color-rose-400) !important;
  border-color: var(--color-rose-400) !important;
}

.info-dots .dot,
.portals-dots .dot,
.ai-dots .dot,
.vital-dots .dot,
.smart-dots .dot,
.audience-dots .dot,
.faq-dots .dot {
  border-color: #dd80c9;
}

.info-dots .dot.active,
.portals-dots .dot.active,
.ai-dots .dot.active,
.vital-dots .dot.active,
.smart-dots .dot.active,
.audience-dots .dot.active,
.faq-dots .dot.active {
  background-color: var(--color-rose-700);
  border-color: var(--color-rose-700);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.info-section {
  background-color: var(--color-rose-100);
  color: var(--color-ink);
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(64px, 8vw, 92px) var(--page-pad) clamp(56px, 7vw, 80px);
}

.info-layout {
  flex: 1;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.info-left {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.info-main-card {
  position: relative;
  background-color: #ffc4f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 12px 12px 24px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  min-height: 0;
}

.info-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-main-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 28px 26px;
  background-color: #ffc4f2;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.05);
}

.info-main-text h2 {
  color: #62a598;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.info-main-text p {
  font-size: 0.98rem;
  line-height: 1.45;
  color: #2b2b2b;
}

.info-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: clamp(360px, 32vw, 520px);
  align-self: stretch;
  height: auto;
  justify-content: flex-start;
}

.info-card {
  background-color: #ffc4f2;
  border-radius: 18px;
  padding: 26px 32px 26px;
  box-shadow: 12px 12px 24px rgba(0,0,0,0.1);
  max-width: 100%;
}

.info-card:first-child {
  min-height: 230px;
}

.info-card:nth-child(2) {
  min-height: 200px;
}

.info-card:nth-child(3) {
  min-height: 170px;
}

.info-card h3 {
  font-size: 1.65rem;
  color: var(--color-teal-600);
  font-weight: 800;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--color-ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================================
   PORTALS SECTION
   ============================================================ */

.portals-section {
  background-color: var(--color-rose-050);
  color: var(--color-rose-700);
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 clamp(56px, 8vw, 88px);
}

.portals-layout {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 0 var(--page-pad);
}

.portals-left {
  display: flex;
  justify-content: center;
  transform: none;
}

.portals-left img {
  width: min(520px, 90vw);
  max-width: 100%;
  position: relative;
  left: 0;
}

.portals-right {
  max-width: 560px;
  width: 100%;
  margin-left: auto;
  position: relative;
  left: 0;
  transform: none;
}

.portals-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--color-rose-700);
  line-height: 1.05;
  margin-bottom: 16px;
}

.portals-body {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-rose-700);
  max-width: 315px;
}

.portals-btn {
  background-color: var(--color-teal-600);
  color: var(--color-white);
}

/* ============================================================
   AI POWERED
   ============================================================ */

.ai-section {
  background-color: var(--color-cream-050);
  color: var(--color-ink);
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 clamp(56px, 8vw, 88px);
}

.ai-layout {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 0 var(--page-pad);
}

.ai-left { max-width: 640px; }

.ai-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

.ai-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-ink);
}

.ai-btn {
  background-color: var(--color-teal-600);
  color: var(--color-white);
}

.ai-right {
  display: flex;
  justify-content: center;
}

.ai-phone-wrapper {
  width: min(520px, 80vw);
  max-width: 100%;
  margin-left: 0;
  transform: none;
}

.ai-phone-img {
  width: 100%;
}

/* AI section text block */
.ai-text {
  max-width: 520px;
}

.ai-body,
.ai-disclaimer {
  margin-top: 12px;
  line-height: 1.6;
}

/* Bullets – desktop look */
.ai-list {
  margin: 16px 0 20px;
  padding-left: 1.4rem;    /* keeps the desktop indent you like */
  list-style-position: outside;
}

.ai-list li {
  margin-bottom: 6px;
}

/* ============================================================
   VITAL TRACKING
   ============================================================ */

.vital-section {
  background-color: var(--color-ice-050);
  color: var(--color-ink);
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 clamp(56px, 8vw, 88px);
}

.vital-left {
  display: flex;
  justify-content: center;
  transform: none;
}

.vital-layout {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 0 var(--page-pad);
}

.vital-left img {
  width: min(520px, 90vw);
  max-width: 100%;
  position: relative;
  left: 0;
}

.vital-right {
  max-width: 560px;
  margin-left: auto;
  position: relative;
  left: 0;
}

.vital-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-family: "Roboto", sans-serif;
  color: var(--color-rose-700);
  font-weight: 900;
  line-height: 1;
}

.vital-body {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 315px;
}

.vital-btn {
  background-color: var(--color-teal-600);
  color: var(--color-white);
}

/* ============================================================
   SMART DEVICES
   ============================================================ */


.smart-section {
  background-color: var(--color-ice-100);   /* updated light aqua */
  color: var(--color-ink);
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0 clamp(56px, 8vw, 88px);
}



.smart-layout {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 0 var(--page-pad);
}

.smart-left {
  max-width: 640px;
}

.smart-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-family: "Roboto", sans-serif;
  line-height: 1.05;
  font-weight: 900;
  color: var(--color-rose-700);
  margin-bottom: 28px;
}

.smart-callouts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.smart-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Smart Devices – icon circles */
.smart-icon-circle {
  width: 56px;
  height: 56px;
  background-color: var(--color-rose-400); /* pink from screenshot */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smart-icon-circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.smart-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.smart-callout-text h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--color-rose-400);
}

.smart-callout-text p {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.55;
  color: #37434a;
}

.smart-btn {
  padding: 10px 28px;
  background-color: var(--color-teal-600);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.smart-right {
  display: flex;
  justify-content: center;
}

.smart-watch-img {
  width: min(520px, 80vw);
  max-width: 100%;
  max-height: 60vh;
  margin: clamp(8px, 3vw, 24px) auto 0;
  transform: none;
  object-fit: contain;
}

/* ============================================================
   AUDIENCE & FAQ
   ============================================================ */

.audience-section,
.faq-section {
  background-color: var(--color-cream-050);
  color: var(--color-ink);
  padding: clamp(56px, 8vw, 88px) var(--page-pad) clamp(56px, 7vw, 80px);
  position: relative;
}

.audience-inner,
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 0;
}

.faq-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.audience-inner h2,
.faq-inner h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
}

.audience-list {
  margin: 16px 0 18px;
  padding-left: 20px;
}

.audience-list li {
  margin-bottom: 6px;
}

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

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.faq-item p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq-inner .section-cta {
  align-self: flex-start;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.faq-footer {
  margin-top: auto;
  margin-left: calc(-1 * var(--page-pad));
  margin-right: calc(-1 * var(--page-pad));
  padding-top: clamp(20px, 3vw, 36px);
}

/* ============================================================
   FOOTER (Alpine Labs layout)
   ============================================================ */

.al-footer {
  padding: 48px 0;
  border-top: 1px solid var(--alpine-border);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.al-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.al-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: #111827;
}

.al-logo img {
  height: 34px;
  width: auto;
  border-radius: 10px;
  display: block;
}

.al-footer .al-logo,
.al-footer .al-logo:visited {
  color: #111827;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}

.al-footer .al-logo img {
  height: 34px;
}

.al-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.al-footer h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--alpine-navy);
  font-weight: 700;
}

.al-footer a {
  color: var(--alpine-muted);
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
}

.al-footer a:visited {
  color: var(--alpine-muted);
}

.al-footer a:hover {
  color: var(--alpine-navy);
}

.al-footer button {
  padding: 0;
  border: none;
  background: none;
  color: var(--alpine-muted);
  font-size: 14px;
  cursor: pointer;
}

.al-footer button:hover {
  color: var(--alpine-navy);
}

.al-privacy-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  font-family: "Inter", "Roboto", system-ui, -apple-system, sans-serif;
}

.al-privacy-modal.open {
  display: flex;
}

.al-privacy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.al-privacy-dialog {
  position: relative;
  width: min(1100px, 92vw);
  height: 82vh;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--alpine-border);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.al-privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--alpine-border);
  background: #f8fafc;
}

.al-privacy-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.al-privacy-frame {
  flex: 1;
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Medium: stack how-it-works and match widths */
@media (max-width: 1100px) {
  .info-layout {
    grid-template-columns: 1fr;
    max-width: 980px;
    gap: 24px;
    justify-items: center;
  }

  .info-main-card,
  .info-right {
    width: 100%;
    max-width: 980px;
  }

  .info-right {
    height: auto;
    justify-content: flex-start;
  }

  .info-card {
    width: 100%;
  }
}

/* Large-ish screens: keep hero text padded from edges */
@media (max-width: 1400px) {
  .hero-inner {
    padding: clamp(56px, 6vw, 72px) var(--page-pad) clamp(40px, 6vw, 60px);
  }

  .hero-left {
    margin-left: 0;
    max-width: min(740px, 100%);
    width: 100%;
    padding: 0 12px;
    text-align: left;
  }

  .portals-layout {
    padding: 0 var(--page-pad);
    max-width: 1200px;
  }

  .vital-layout {
    padding: 0 var(--page-pad);
    max-width: 1200px;
  }

  .portals-left img {
    width: min(520px, 90vw);
    left: 0;
    max-width: 100%;
  }

  .vital-left img {
    width: min(520px, 90vw);
    left: 0;
    max-width: 100%;
  }

  .header-right {
    gap: 16px;
  }
}

/* Medium hero padding to keep text off the edges */
@media (max-width: 1200px) {
  .hero-inner {
    padding: clamp(52px, 6vw, 68px) var(--page-pad) clamp(40px, 6vw, 56px);
  }

  .hero-left {
    margin-left: 0;
    max-width: min(720px, 100%);
    width: 100%;
    padding: 0 24px;
    text-align: left;
  }

  .portals-layout {
    max-width: 1100px;
    gap: clamp(24px, 4vw, 40px);
  }

  .vital-layout {
    max-width: 1100px;
    gap: clamp(24px, 4vw, 40px);
  }

  .portals-right {
    margin-left: 0;
  }
}

@media (max-width: 900px) {

  :root { --dot-right: clamp(8px, 2vw, 16px); }

  body { overflow: auto; }

  main {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }

  .site-header {
    height: var(--header-height);
    position: sticky;
    top: 0;
    background-color: rgba(178, 94, 129, 0.92);
    backdrop-filter: blur(6px);
  }

  .header-inner {
    padding: 14px 16px;
    height: var(--header-height);
    position: relative;
  }

  .hero,
  .info-section,
  .portals-section,
  .ai-section,
  .vital-section,
  .smart-section,
  .audience-section,
  .faq-section {
    min-height: auto;
    scroll-snap-align: none;
  }

  .hero-inner,
  .info-layout,
  .portals-layout,
  .ai-layout,
  .vital-layout,
  .smart-layout {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .info-layout {
    max-width: 960px;
    justify-items: center;
    gap: 22px;
  }

  .info-main-card,
  .info-right,
  .info-card {
    width: 100%;
    max-width: 960px;
  }

  .info-right {
    height: auto;
    justify-content: flex-start;
  }

  .portals-layout {
    max-width: 960px;
    padding: 0 20px;
    gap: 24px;
  }

  .vital-layout {
    max-width: 960px;
    padding: 0 20px;
    gap: 24px;
  }

  .portals-left {
    justify-content: center;
  }

  .portals-left img {
    width: 100%;
    max-width: 760px;
    left: 0;
    position: relative;
  }

  .vital-left {
    justify-content: center;
    transform: none;
  }

  .vital-left img {
    width: 100%;
    max-width: 760px;
    left: 0;
    position: relative;
    transform: none;
  }

  .portals-left {
    transform: none;
  }

  .portals-right {
    left: 0;
    transform: none;
  }

  .hero-inner {
    flex-direction: column;
    min-height: auto;
    height: auto;
    padding: 72px 16px 48px;
    gap: 32px;
  }

  .hero-left {
    margin-left: 0;
    max-width: clamp(480px, 42vw, 640px);   /*max-width: min(640px, 100%); */
    width: 100%;
    padding: 0 28px;
    text-align: left;
  }

  .hero-right {
    justify-content: center;
    align-items: center;
    position: static;
    height: auto;
  }

  .hero-figure {
    position: absolute;
    inset: 0 0 0 auto;                       /* fill full height of the hero */
    display: flex;
    align-items: flex-end;                   /* pin image to bottom of section */
    justify-content: flex-end;
    pointer-events: none;
    padding-right: clamp(16px, 4vw, 40px);   /* responsive right padding */
    width: min(48vw, 720px);                 /* let her occupy that whole right region */
  }

  .hero-figure img {
    width: 100%;                             /* fill the hero-figure width */
    height: auto;
    max-height: 100%;                        /* never taller than the section */
    object-fit: contain;
    object-position: bottom right;           /* bottom edge locked to bottom */
  }

  .portals-right,
  .ai-left,
  .vital-right,
  .smart-left {
    margin: 0 auto;
  }

  .vital-right {
    left: 0;
  }

  .smart-callout {
    justify-content: center;
  }

  .ai-heading {
    font-size: 48px;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .ai-layout {
    grid-template-columns: 1fr;
    text-align: center; /* section as a whole */
  }

  .ai-left {
    margin: 0 auto;
  }

  /* Keep heading centered with some breathing room */
  .ai-heading {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  /* Body + bullets: left-aligned but constrained so they do not sprawl */
  .ai-text {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
  }

  .ai-body {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .ai-list {
    margin: 8px auto 16px;
    padding-left: 1.1rem;   /* slightly tighter indent on small screens */
    font-size: 0.95rem;
  }

  .ai-list li {
    margin-bottom: 4px;
    line-height: 1.5;
  }

  .ai-disclaimer {
    margin-top: 10px;
  }

  .mobile-menu {
    right: 16px;
    top: 60px;
  }

  /* Center buttons on narrow screens for AI, Who it is for, and FAQ */
  .ai-section .btn-primary,
  .audience-section .btn-primary,
  .faq-section .btn-primary {
    display: block;              /* make the button a block element */
    margin: 32px auto 0; /* center horizontally and keep top spacing */
    text-align: center;          /* center the label inside */
  }
}
/* Hero body copy and bullets */

.hero-subcopy {
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 14px;
  color: #ffe4f7;
}

.hero-points {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
  max-width: 480px;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ffe4f7;
  margin-bottom: 4px;
}

/* simple custom bullet dot */
.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

/* small caption-style reassurance line */
.hero-tagline {
  margin-top: 18px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 460px;
  color: #ffd3f1;
  opacity: 0.9;
}

/* Consistent spacing below section headings */
.portals-heading,
.ai-heading,
.vital-heading,
.smart-heading {
  margin-bottom: 20px;
}

/* AI section body and list spacing */
.ai-left p {
  margin-bottom: 10px;
}

.ai-left ul {
  margin: 10px 0 18px 1.25rem;   /* indent bullets slightly */
  padding-left: 1.25rem;
}

.ai-left li {
  margin-bottom: 6px;           /* vertical spacing between bullets */
}

@media (max-width: 768px) {
  .hero-dots,
  .info-dots,
  .portals-dots,
  .ai-dots,
  .vital-dots,
  .smart-dots {
    display: none;
  }
}

@media (max-width: 600px) {
  .ai-heading {
    font-size: 42px;
  }
}

/* ============================================================
   ONBOARDING (KNOW YOU BETTER)
   ============================================================ */

body.onboard-page-b {
  background-color: var(--color-cream-050);
  color: var(--color-teal-600);
  overflow: auto;
  --header-accent: var(--color-teal-600);
  --menu-surface: #f1e0b9;
}

main.onboard-main-b {
  height: auto;
  min-height: 100vh;
  overflow-y: visible;
  scroll-snap-type: none;
}

.onboard-page-b .page,
.onboard-page-b main {
  background-color: var(--color-cream-050);
}

.onboard-page-b .site-header {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.onboard-page-b .logo-text-white {
  color: var(--header-accent, var(--color-teal-600));
}

.onboard-page-b .hamburger {
  color: var(--color-teal-600);
}

.onboard-page-b .mobile-menu {
  background-color: var(--menu-surface, #f1e0b9);
  color: var(--header-accent, var(--color-teal-600));
}

.onboard-step-b {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 70px 80px 40px;
}

.onboard-inner-b {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 640px);
  grid-template-areas:
    "left right"
    "submit right";
  column-gap: 120px;
  row-gap: 18px;
  align-items: flex-start;
}

.onboard-left-b {
  grid-area: left;
  max-width: 620px;
  margin-top: 50px;
}

.onboard-eyebrow-b {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--color-rose-700);
  margin-bottom: 18px;
}

.onboard-heading-b {
  font-size: 2.6rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--color-teal-700);
}

.onboard-role-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  margin-left: 3px;
}

.onboard-role-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.onboard-role-option.offset-right { margin-left: 20px; }

.onboard-checkbox {
  border-radius: 3px;
  border: 2px solid var(--color-teal-600);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.onboard-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--color-rose-700);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.onboard-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-teal-600);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.onboard-radio:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: var(--color-rose-700);
}

.wizard-step {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 16px 18px 18px;
  margin-bottom: 16px;
}

.wizard-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}

.wizard-step-title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.wizard-role-block { margin-bottom: 10px; }

.wizard-subgroup {
  margin-top: 6px;
  margin-left: 28px;
  border-left: 2px solid rgba(47, 128, 118, 0.2);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.onboard-right-b {
  grid-area: right;
  margin-top: 50px;
}

.onboard-right-b form {
  margin-top: 120px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  row-gap: 8px;
}

.conditions-step {
  max-width: 640px;
  margin-top: 0;
}

.condition-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.condition-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.conditions-grid .condition-column:first-child .condition-item,
.conditions-grid .condition-column:nth-child(2) .condition-item {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.onboard-submit-row {
  grid-area: submit;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 56px;
  margin-top: 8px;
}

.onboard-submit-btn {
  padding: 8px 38px;
  background-color: var(--color-teal-600);
  font-weight: 600;
}

.onboard-submit-btn:hover {
  background-color: #3f8d77;
  transform: translateY(-1px);
}

.onboard-submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.onboard-footer-note-b {
  position: static;
  margin: 18px auto 8px;
  padding: 0 14px;
  font-size: 10px;
  color: var(--color-teal-700);
  text-align: center;
  line-height: 1.35;
  max-width: 900px;
  white-space: normal;
}

.onboard-skip-btn {
  position: static;
  display: block;
  margin: 6px auto 24px 0;
  padding: 8px 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-teal-700);
  background: transparent;
  color: var(--color-teal-700);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.onboard-skip-btn:hover {
  background-color: rgba(47, 128, 118, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.onboard-skip-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (min-width: 1200px) and (min-height: 820px) {
  .onboard-step-b { padding-bottom: 260px; }

  .onboard-footer-note-b {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    max-width: calc(100% - 240px);
    white-space: nowrap;
    z-index: 30;
    pointer-events: none;
  }

  .onboard-skip-btn {
    position: fixed;
    left: 56px;
    bottom: 24px;
    margin: 0;
    z-index: 35;
  }
}

@media (min-width: 901px) and (max-width: 1199px) and (min-height: 820px) {
  .onboard-step-b { padding-bottom: 220px; }

  .onboard-footer-note-b {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    max-width: calc(100% - 200px);
    white-space: nowrap;
    z-index: 30;
    pointer-events: none;
  }

  .onboard-skip-btn {
    position: fixed;
    left: 56px;
    bottom: 24px;
    margin: 0;
    z-index: 35;
  }
}

@media (max-width: 1100px) {
  .onboard-inner-b {
    column-gap: 64px;
  }

  .onboard-submit-row {
    padding-right: 28px;
  }
}

@media (max-width: 900px) {
  .onboard-step-b {
    padding: 70px 20px 40px;
  }

  .onboard-inner-b {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "submit";
    row-gap: 20px;
    column-gap: 0;
  }

  .onboard-left-b { margin-top: 20px; }
  .onboard-right-b { margin-top: 0; }
  .onboard-right-b form { margin-top: 0; }
  .conditions-step { margin-top: 8px; }

  .onboard-submit-row {
    justify-content: center;
    padding-right: 0;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .onboard-skip-btn {
    width: 100%;
    max-width: 340px;
    margin: 6px auto 24px;
  }
}

/* ============================================================
   THANK YOU (FINAL-CHRONIC)
   ============================================================ */

body.thankyou-page {
  background-color: var(--color-ice-100);
  color: #2c6666;
  overflow-x: hidden;
  overflow-y: auto;
  --header-accent: var(--color-teal-500);
  --menu-surface: #3f9b9e;
}

main.thankyou-main {
  height: auto;
  min-height: 100vh;
  overflow-y: visible;
  scroll-snap-type: none;
}

.thankyou-page .site-header {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.thankyou-page .header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.thankyou-page .hamburger {
  color: var(--color-teal-500);
}

.thankyou-page .mobile-menu {
  background-color: #3f9b9e;
  color: var(--color-white);
}

.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(96px, 8vw, 140px) var(--page-pad) clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.thankyou-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 10;
}

.thankyou-left {
  max-width: 620px;
  align-self: center;
  z-index: 10;
}

.thankyou-heading {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--color-teal-700);
  margin-bottom: 24px;
  z-index: 10;
}

.thankyou-body {
  font-size: clamp(1rem, 0.3vw + 0.9rem, 1.25rem);
  line-height: 1.55;
  color: #31656a;
  max-width: 560px;
  margin-bottom: 20px;
  z-index: 10;
}

.thankyou-cta {
  padding: 9px 40px;
  background-color: var(--color-rose-700);
  color: var(--color-white);
}

.thankyou-cta:hover {
  background-color: #933f65;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(147, 63, 101, 0.25);
}

.thankyou-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.thankyou-doctor-img {
  justify-self: end;
  width: 100%;
  max-width: clamp(420px, 45vw, 760px);
  height: auto;
  position: static;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

.thankyou-footer-note {
  display: none;
}

@media (max-width: 1299px) and (min-width: 900px) {
  body.thankyou-page {
    overflow-y: auto;
  }

  .thankyou-section {
    padding: clamp(96px, 7vw, 124px) clamp(40px, 5vw, 70px) clamp(64px, 7vw, 96px);
    align-items: center;
  }

  .thankyou-inner {
    max-width: 1180px;
    gap: clamp(28px, 5vw, 80px);
  }

  .thankyou-left {
    max-width: 720px;
    z-index: 10;
  }

  .thankyou-heading {
    font-size: clamp(42px, 4.5vw + 6px, 58px);
  }

  .thankyou-body {
    font-size: 19px;
    max-width: 640px;
  }

  .thankyou-doctor-img {
    max-width: 820px;
  }

  .thankyou-page .mobile-menu {
    right: 24px;
    top: 64px;
  }
}

@media (max-width: 899px) {
  body.thankyou-page {
    overflow-y: auto;
  }

  .thankyou-section {
    padding: 120px 20px 72px;
  }

  .thankyou-inner {
    max-width: 100%;
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
    justify-items: center;
    gap: 28px;
  }

  .thankyou-left {
    margin: 0 auto;
    text-align: center;
  }

  .thankyou-doctor-img {
    order: -1;
    display: block;
    max-width: 520px;
    margin: 0 auto 24px;
  }

  .thankyou-footer-note {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    text-align: left;
    background: transparent;
    padding: 0;
    z-index: 10;
  }

  .thankyou-page .mobile-menu {
    right: 16px;
    top: 60px;
  }

  .thankyou-cta {
    display: inline-flex;
    margin: 16px auto 0;
  }

  .thankyou-heading,
  .thankyou-body {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 900px) {
  .thankyou-inner {
    grid-template-columns: 1fr;
    padding-right: clamp(260px, 32vw, 480px);
  }

  .thankyou-doctor-img {
    position: fixed;
    right: 0;
    bottom: 0;
    width: clamp(680px, 70vw, 1380px);
    max-height: clamp(90vh, 115vh, 130vh);
    height: auto;
    max-width: none;
    object-position: bottom right;
    justify-self: end;
  }
}

@media (min-width: 900px) and (max-width: 1299px) {
  .thankyou-left {
    max-width: min(520px, 40vw);
  }

  .thankyou-heading {
    max-width: min(520px, 40vw);
  }

  .thankyou-body {
    max-width: min(520px, 40vw);
  }

  .thankyou-inner {
    padding-right: clamp(240px, 34vw, 420px);
  }
}

/* ============================================================
   AWESOME (FINAL-HEALTHY)
   ============================================================ */

body.awesome-page {
  background-color: #ffe5f5;
  color: #3f2b4a;
  overflow-x: hidden;
  overflow-y: hidden;
  --header-accent: var(--color-rose-500);
  --menu-surface: #8f3f63;
}

main.awesome-main {
  height: auto;
  min-height: 100vh;
  overflow-y: visible;
  scroll-snap-type: none;
}

.awesome-page .site-header {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.awesome-page .logo-text {
  color: var(--color-rose-500);
}

.awesome-page .hamburger {
  color: var(--color-rose-700);
}

.awesome-page .mobile-menu {
  background-color: #8f3f63;
  color: var(--color-white);
}

.awesome-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.awesome-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 760px);
  column-gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.awesome-left {
  position: relative;
}

.awesome-left img {
  position: fixed;
  left: clamp(12px, 6vw, 80px);
  bottom: 0;
  width: auto;
  max-width: clamp(520px, 60vw, 960px);
  height: auto;
  object-fit: contain;
  object-position: bottom left;
  display: block;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}

.awesome-right {
  max-width: 760px;
  position: relative;
  z-index: 10;
}

.awesome-heading {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--color-rose-500);
  margin-bottom: 18px;
}

.awesome-subtitle {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--color-rose-500);
  margin-bottom: 14px;
}

.awesome-body {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: #4d3458;
  margin-bottom: 26px;
  max-width: 900px;
  white-space: normal;
}

.awesome-cta {
  padding: 9px 40px;
  background-color: var(--color-teal-500);
  color: var(--color-white);
}

.awesome-cta:hover {
  background-color: #3f8d77;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(10, 86, 67, 0.25);
}

.awesome-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.awesome-footer-note {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #ba7fa6;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 900px) {
  body.awesome-page {
    overflow-y: auto;
  }

  .awesome-hero {
    padding: 80px 18px 64px;
  }

  .awesome-inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
    text-align: center;
  }

  .awesome-right {
    max-width: 100%;
    text-align: center;
  }

  .awesome-body {
    white-space: normal;
    max-width: 100%;
  }

  .awesome-footer-note {
    white-space: normal;
    max-width: 90%;
  }

  .awesome-left img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
    max-width: 520px;
    margin: 0 auto 28px;
    z-index: 0;
    pointer-events: none;
  }

  .awesome-left {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 1299px) and (min-width: 900px) {
  body.awesome-page {
    overflow-y: auto;
  }

  .awesome-hero {
    padding: 120px 60px 80px;
  }

  .awesome-inner {
    max-width: 1180px;
    column-gap: 60px;
  }

  .awesome-left img {
    left: clamp(8px, 5vw, 48px);
    max-width: clamp(520px, 64vw, 880px);
  }
}
