/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ── */
html, body {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Teal accent ── */
.teal {
  color: #06678A;
}

/* ── Page wrapper ── */
.page-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #ffffff;
  min-height: 100vh;
}

/* ── Page container — box shadow from Figma effect_KMK410; max-width caps at 1920px ── */
.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}

/* ── Thematic grouping — subtle white gradient bg from fill_LOV0KW ── */
.thematic-grouping {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 15px 20px 35px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 1) 23%);
}

/* ═══════════════════════════
   HEADER  (layout_KGCG55)
   3-column grid: 1fr auto 1fr keeps the logo perfectly centered
   regardless of side-element widths.

   Rendered by the <evidensi-nav> Web Component — see assets/top-nav.js.
═══════════════════════════ */

evidensi-nav {
  display: block;
  align-self: stretch;
  width: 100%;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding-bottom: 10px;
  gap: 5px;
}

/* Burger menu (layout_C7QNRJ: width 56px) — icon style from xFIT */
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 56px;
  height: 28px;
  cursor: pointer;
  justify-self: start;
}

.burger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 1px;
}

/* Logo + slogan stack — slogo sits in the bottom padding of logo-frame */
.logo-slogo {
  position: relative;
  width: 220px;
  flex-shrink: 0;
}

/* Logo frame — widened from 146px to 220px so the larger slogan fits underneath */
.logo-frame {
  width: 220px;
  display: flex;
  justify-content: center;
  padding-bottom: 13px;
}

/* "evidensi" — Tilt Warp 26px, fill_XVJ1YM top-fill = #000000 */
.logo-text {
  font-family: 'Tilt Warp', cursive;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.262;
  text-align: center;
  color: #000000;
}

/* Slogan frame — anchored to the bottom of the logo-frame padding area */
.slogo-frame {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

/* "EVIDENCE STRENGTH INSIGHTS" — Inter 12px SemiBold; cap-height matches Tinos 13px
   Non-accent letters at 25% black; accent letters (.teal) keep full color. */
.slogo-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  color: rgba(0, 0, 0, 0.25);
}

/* SIGN UP button — ghost style, teal text (fill_9X2TGD = #06678A) */
.btn-signup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  text-decoration: none;
  justify-self: end;
}

.btn-signup-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: 0.8px;
  color: #06678A;
  text-align: center;
}

.btn-signup-icon {
  display: flex;
  align-items: center;
  padding: 4px 1px 4px 0;
}

/* ═══════════════════════════
   HERO SECTION (layout_T35NVC)
   — background image at 30% opacity via pseudo-element
═══════════════════════════ */
.hero-section {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(assets/hero-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

/* Heading wrapper — layout_RIM8B6: row, center, fill, padding 35px 0 0 */
.hero-heading-wrapper {
  display: flex;
  justify-content: center;
  align-self: stretch;
  flex-wrap: wrap;
  padding: 35px 0 0;
  width: 100%;
}

/* Fixed 340px text frame — layout_WNI7GF */
.hero-heading-inner {
  width: 340px;
  max-width: 100%;
}

/* H1 — Tinos 34px, fill_XVJ1YM top-fill = #000000; teal spans per character fills */
.hero-h1 {
  font-family: 'Tinos', serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.235;
  text-align: center;
  color: #000000;
}

/* Subtitle (layout_PS173S: padding 10px 0 30px) */
.hero-subtitle {
  display: flex;
  justify-content: center;
  align-self: stretch;
  padding: 10px 0 30px;
  width: 100%;
}

/* "*STARTING WITH NUTRITION RELATED HEALTH" — Tinos 15px */
.hero-subtitle-text {
  font-family: 'Tinos', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  color: #000000;
  width: 100%;
  max-width: 560px;
}

/* Description — layout_AUNZW7: padding 0 0 40px */
.hero-description {
  align-self: stretch;
  padding: 0 0 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Body copy — Inter 16px, fill_LKTFTI = #1E2939 */
.hero-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #1E2939;
  width: 100%;
  max-width: 560px;
}

/* ═══════════════════════════
   CTA BUTTON (layout_E08IDO)
   — fill_9X2TGD = #06678A
═══════════════════════════ */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  background: #06678A;
  border-radius: 3px;
  text-decoration: none;
  gap: 10px;
}

/* "GET EARLY ACCESS" — Inter SemiBold 14px, fill_6H5GCW = #FFFFFF */
.btn-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #ffffff;
  line-height: 1.714;
  text-align: center;
}

.btn-cta-icon {
  display: flex;
  align-items: center;
  padding: 0 1px 0 10px;
}

/* ═══════════════════════════
   METHODOLOGY EXPERT TEASER (layout_8REOJX, fill_3XVJIU = #F3F3F0)
═══════════════════════════ */
.frame-method-expert {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  background: #F3F3F0;
}

/* layout_CCGDKT: padding 40px 30px */
.method-expert-inner {
  width: 100%;
  padding: 40px 30px;
}

/* pixel-confirmed: Inter (not Tinos); Bold for "Methodology expert?", Regular for link */
.method-expert-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  color: #1E2939;
  text-align: center;
}

.method-expert-link {
  color: #1E2939;
  text-decoration: underline;
}

/* ═══════════════════════════
   EVIDENSI FRAMEWORK MODULE
═══════════════════════════ */
.module-framework {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 29px;
  padding: 30px 20px 45px;
  background: linear-gradient(136deg, rgba(2, 129, 145, 1) 11%, rgba(8, 90, 134, 1) 100%);
}

/* Pill + label stack */
.module-pill-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.pill-indev {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1px 15px;
  background: #B30377;
  border-radius: 12px;
}

.pill-text {
  font-family: 'ABeeZee', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}

.module-label {
  align-self: stretch;
  padding-top: 15px;
}

.module-label-text {
  display: block;
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.182;
  letter-spacing: 7px;
  color: #ffffff;
  text-align: center;
}

/* Heading */
.module-heading {
  align-self: stretch;
  width: 100%;
}

.module-h2 {
  font-family: 'Tinos', serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.387;
  color: #ffffff;
  text-align: center;
}

/* Body paragraph — centered block, left-aligned text, max-width matches 600px content area */
.module-body {
  width: 100%;
  max-width: 560px;
  padding: 0 10px;
}

.module-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #ffffff;
  text-align: left;
}

/* CTA copy — Tinos, centered; max width = 600px content area */
.module-cta-copy-wrap {
  width: 100%;
  max-width: 560px;
}

/* CTA copy: Inter 700 line1 + Inter 400 line2 — characterStyleOverrides confirmed by pixel inspection */
.module-cta-copy {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.module-cta-q {
  display: block;
  line-height: 1.625;
}

.module-cta-sub {
  display: block;
  font-weight: 400;
  line-height: 1.875;
}

/* Apply button — white with dark-teal text */
.btn-apply {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  background: #ffffff;
  border-radius: 3px;
  text-decoration: none;
  gap: 10px;
}

.btn-apply-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.714;
  color: #055E74;
  text-align: center;
}

.btn-apply-icon {
  display: flex;
  align-items: center;
  padding: 4px 1px 4px 12px;
}

/* ═══════════════════════════
   BUILT FOR BOTH MODULE
   layout_J0SZH7 / fill_A71ESJ
═══════════════════════════ */
.module-builtforboth {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 22px;
  padding: 40px 20px 45px;
  background: #F3F3F0;
}

/* Header + heading group — layout_WYYX53 */
.bfb-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 15px;
}

/* "BUILT FOR BOTH" — ABeeZee 12px, 7px letter-spacing, 2.5lh; layout_OWESJJ fixed 335px */
.bfb-label-text {
  display: block;
  width: 100%;
  max-width: 335px;
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 7px;
  color: #000000;
  text-align: center;
}

/* H2 — Tinos 32px 1.25lh; style_VC0DZQ */
.bfb-h2 {
  align-self: stretch;
  font-family: 'Tinos', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: #000000;
  text-align: center;
}

/* Cards column — layout_MK4DGE: column, gap 20px, padding 0 28px */
.bfb-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 20px;
  padding: 0 28px;
}

/* Card outer — white, 20px radius; max-width pixel-confirmed at 600px from 1024px+ renders */
.bfb-card {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
}

/* Card body — background image + padding; layout_M0CIJ2: padding 25px 20px 40px */
.bfb-card-body {
  width: 100%;
  padding: 25px 20px 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.bfb-card--public .bfb-card-body {
  background-image: url(assets/bfb-public-bg.png);
}

.bfb-card--professionals .bfb-card-body {
  background-image: url(assets/bfb-professionals-bg.png);
}

/* Card content column — layout_I0JXHN: column, gap 25px */
.bfb-card-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

/* Title wrapper — layout_XEBJMJ: padding 20px 0 0 */
.bfb-card-title-wrap {
  align-self: stretch;
  padding: 20px 0 0;
}

/* Card title — Tinos 400 26px ~1.15lh centered; style_5LCLVL */
.bfb-card-title {
  font-family: 'Tinos', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  color: #000000;
  text-align: center;
}

/* Quote — Tinos 400 italic 18px 1.333lh; style_6T129P — italic pixel-confirmed from render */
.bfb-card-quote {
  font-family: 'Tinos', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.333;
  color: #6B6B6B;
  text-align: left;
}

/* Bullet list — Inter 400 16px 1.625lh; style_2TQ378 */
.bfb-card-bullets {
  margin: 0;
  padding-left: 18px;
}

.bfb-card-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #000000;
  text-align: left;
}

/* CTA wrapper — layout_01GRE0: column, center, padding 15px 0 0 */
.bfb-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 15px 0 0;
}

/* GET EARLY ACCESS button — white bg, teal text; layout_TL8UIM */
.btn-bfb {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  background: #FFFFFF;
  border-radius: 3px;
  text-decoration: none;
}

/* style_4RQ8BK: Inter 600 14px 1.714lh 0.8px letter-spacing #055E74 */
.btn-bfb-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.714;
  letter-spacing: 0.8px;
  color: #055E74;
  text-align: center;
}

/* layout_PCOJUB: padding 0 1px 0 10px */
.btn-bfb-icon {
  display: flex;
  align-items: center;
  padding: 0 1px 0 10px;
}

/* ═══════════════════════════
   HOW IT WORKS MODULE
   layout_B41I9P / fill_96AQKA
═══════════════════════════ */
.module-howitworks {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 22px;
  padding: 40px 20px 45px;
  background: linear-gradient(136deg, rgba(4, 153, 177, 1) 11%, rgba(104, 199, 199, 1) 100%);
}

/* Header group — layout_KPTVAV: column, center, gap 15px */
.hiw-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 15px;
}

/* Label container — layout_O6FLC9: fixed 335px */
.hiw-label-frame {
  width: 335px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* "HOW IT WORKS" — ABeeZee 12px 2.5lh 7px letter-spacing; style_EN2Q52 */
.hiw-label-text {
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 7px;
  color: #FFFFFF;
  text-align: center;
}

/* H2 — Tinos 32px 1.25lh white; style_F2716L */
.hiw-h2 {
  align-self: stretch;
  font-family: 'Tinos', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: #FFFFFF;
  text-align: center;
}

/* Description wrapper — fill + padding 10px; max-width matches cards so it centers at wide viewports */
.hiw-desc-wrap {
  width: 100%;
  max-width: 600px;
  padding: 10px;
}

/* Description — Inter 16px 1.625lh left white; style_RBLLWI */
.hiw-desc-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #FFFFFF;
  text-align: left;
}

/* Card wrapper — layout_BJAC0J / layout_LSKVS8: column, center, padding 0 28px */
.hiw-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 0 28px;
}

/* Card — white 20px radius; max-width pixel-confirmed at 600px from 1024px render (x=212..811) */
.hiw-card {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
}

/* Card body — layout_Y7ZP7X: fill, padding 25px 20px 30px */
.hiw-card-body {
  width: 100%;
  padding: 25px 20px 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hiw-card--does .hiw-card-body {
  background-image: url(assets/hiw-does-bg.png);
}

.hiw-card--doesnot .hiw-card-body {
  background-image: url(assets/hiw-doesnot-bg.png);
}

/* Card content — layout_H0095U: column, center, gap 15px */
.hiw-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

/* Title wrapper — layout_PZNDZC: fill, padding 20px 0 0 */
.hiw-card-title-wrap {
  align-self: stretch;
  padding: 20px 0 0;
}

/* Card title — Tinos 400 26px 1.15lh center #055E74; style_8076VB */
/* pixel-confirmed: "does" / "does NOT do" are bold (characterStyleOverride) */
.hiw-card-title {
  font-family: 'Tinos', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  color: #055E74;
  text-align: center;
}

.hiw-card-title strong {
  font-weight: 700;
}

/* Bullets — Inter 400 16px 1.625lh left black; style_RBLLWI */
.hiw-card-bullets {
  align-self: stretch;
  margin: 0;
  padding-left: 18px;
}

.hiw-card-bullets li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #000000;
  text-align: left;
}

/* Bottom link — layout_1H5RFH: row, justify-center, align-center, padding 10px 0 */
.hiw-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 10px 0;
}

/* Bottom text — Inter 400 16px 1.625lh center white; fixed 335px; style_4JMRRB */
/* pixel-confirmed both lines are Inter (no serifs at 4× zoom) */
.hiw-bottom-text {
  width: 335px;
  max-width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #FFFFFF;
  text-align: center;
}

.hiw-bottom-text strong {
  font-weight: 700;
}

.hiw-bottom-link {
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 400;
}

/* ═══════════════════════════
   GOVERNANCE MODULE
   layout_5N7WZ4 / fill_10F3AZ
═══════════════════════════ */

/* Module — column, center, stretch, gap 29px, padding 30px 20px 45px, white */
.module-governance {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 29px;
  padding: 30px 20px 45px;
  background: #FFFFFF;
}

/* Header group — layout_XC7HV9: column, center, stretch, gap 15px */
.gov-header-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 15px;
}

/* Label frame — layout_QMMCIK: fixed 335px, column center */
.gov-label-frame {
  width: 335px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* "GOVERNANCE" — ABeeZee 12px 2.5lh 7px letter-spacing center black; style_BBQZCF */
.gov-label-text {
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 7px;
  color: #000000;
  text-align: center;
}

/* H2 — Tinos 32px 1.25lh center black; style_N3WR7M */
.gov-h2 {
  align-self: stretch;
  font-family: 'Tinos', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: #000000;
  text-align: center;
}

/* Text body — layout_MR3DMC: column, stretch, gap 29px; max-width centers at wide viewports */
.gov-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  gap: 29px;
}

/* Para/list wrappers — layout_1YICFY: fill, padding 0 10px */
.gov-para-wrap,
.gov-list-wrap {
  align-self: stretch;
  width: 100%;
  padding: 0 10px;
}

/* Body text — Inter 400 16px 1.625lh left black; style_T93Q6Y */
.gov-para-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #000000;
  text-align: left;
}

/* List */
.gov-list {
  margin: 0;
  padding-left: 20px;
}

.gov-list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: #000000;
  text-align: left;
}

/* CTA wrapper — layout_PESPFU → WIZKII: full-width, centered, 20px top padding */
.gov-cta-wrap {
  display: flex;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  padding-top: 20px;
}

/* CTA text — Inter 16px center teal; bold line1 (1.625lh), regular line2 (1.875lh); style_LBB0DY */
/* characterStyleOverride: pixel-confirmed Inter not Tinos */
.gov-cta-text {
  width: 335px;
  max-width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #056B8B;
  text-align: center;
}

.gov-cta-q {
  display: block;
  font-weight: 700;
  line-height: 1.625;
}

.gov-cta-sub {
  display: block;
  font-weight: 400;
  line-height: 1.875;
}

/* Button — teal bg, white text + arrow, border-radius 3px; layout_A8C9VL / style_KX9LRG */
.btn-gov {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 9px 20px;
  background: #06678A;
  border-radius: 3px;
  text-decoration: none;
}

.btn-gov-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.714;
  color: #FFFFFF;
  text-align: center;
}

.btn-gov-icon {
  display: flex;
  align-items: center;
  padding: 4px 1px 4px 12px;
}

/* ═══════════════════════════
   FOOTER
   layout_PZ87OA / fill_V2KZ83
═══════════════════════════ */

/* Footer — column, stretch, gap 10px, padding 45px 30px; dark gradient bg */
.footer {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
  gap: 10px;
  padding: 45px 30px;
  background: linear-gradient(152deg, rgba(102, 102, 102, 0) 0%, rgba(29, 29, 29, 1) 100%), #323232;
}

/* Footer content — layout_E6OW8B: column, center, stretch, gap 25px */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
  gap: 25px;
}

/* Note wrapper — layout_Z5ISLX: fill, stretch */
.footer-note-wrap {
  align-self: stretch;
  width: 100%;
}

/* Note text — Inter 400 14px 1.21lh center white; style_OISQY6 */
.footer-note-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  color: #FFFFFF;
  text-align: center;
}

/* Links row — layout_OKNSPR: row, center, center, gap 10px, padding 10px 0 */
.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

/* Link — Inter 400 14px 1.21lh white underlined; matches footer-note-text */
.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  color: #FFFFFF;
  text-decoration: underline;
}

/* Separator pipe — same font, no underline */
.footer-sep {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
}

/* Copyright row — layout_XKN9PY: row, center */
.footer-copy {
  display: flex;
  justify-content: center;
}

/* Copyright text — Inter 400 14px 1.21lh white; style_RHLZ82 */
.footer-copy-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  color: #FFFFFF;
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */

/* 320px: heading scales down to fit 3 lines; button gap tightened to prevent header wrap */
@media (max-width: 359px) {
  .hero-h1 {
    font-size: 28px;
  }
  .btn-signup {
    gap: 5px;
  }
}

/* ═══════════════════════════
   FORM PAGES (Subscribe / Apply)
═══════════════════════════ */

/* Spacing scale (form pages):
   xs 8 · sm 12 · md 16 · lg 24 · xl 32 · 2xl 40 */

.form-page {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 80px;
}

.form-page-header {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 0 40px;
  text-align: center;
}

.form-page-label {
  font-family: 'ABeeZee', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 7px;
  color: #06678A;
}

.form-page-h1 {
  font-family: 'Tinos', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
}

.form-page-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #1E2939;
}

.form-page-helper {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: #6B6B6B;
  font-style: italic;
  padding-top: 4px;
}

.form-card {
  width: 100%;
  max-width: 600px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row label,
.form-fieldset-legend {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1E2939;
  line-height: 1.45;
  letter-spacing: 0.1px;
}

.form-row .req {
  color: #B30377;
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1E2939;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #D7D7D2;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Custom-styled native select: kill default chevron, draw our own. */
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231E2939' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.form-select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2306678A' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.form-select::-ms-expand { display: none; }

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9C9C97;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #06678A;
  box-shadow: 0 0 0 3px rgba(6, 103, 138, 0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row[data-invalid="true"] .form-input,
.form-row[data-invalid="true"] .form-select,
.form-row[data-invalid="true"] .form-textarea {
  border-color: #B30377;
  box-shadow: 0 0 0 3px rgba(179, 3, 119, 0.12);
}

.form-error {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #B30377;
  display: none;
  padding-top: 2px;
}

.form-row[data-invalid="true"] .form-error {
  display: block;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #1E2939;
  cursor: pointer;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background-color 0.12s ease;
}

.form-check:hover {
  background-color: rgba(6, 103, 138, 0.05);
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #06678A;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check-other {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px dashed #EDEDE8;
}

.form-check-other .form-check {
  padding: 8px 4px;
}

.form-check-other .form-input {
  flex: 1;
  min-width: 200px;
}

.form-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  background: #06678A;
  color: #FFFFFF;
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.8px;
  cursor: pointer;
  margin-top: 8px;
  align-self: stretch;
}

.form-submit:hover {
  background: #055E74;
}

.form-submit:disabled {
  background: #6B6B6B;
  cursor: not-allowed;
}

.form-consent {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: #6B6B6B;
  text-align: center;
  padding-top: 4px;
}

.form-crosslink {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #1E2939;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #EDEDE8;
  margin-top: 4px;
}

.form-crosslink-lead {
  display: block;
  font-weight: 600;
  color: #1E2939;
}

.form-crosslink a {
  display: inline-block;
  color: #06678A;
  text-decoration: underline;
  font-weight: 400;
}

.form-success {
  display: none;
  background: #E8F4F1;
  border: 1px solid #06678A;
  color: #055E74;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.form-success[data-active="true"] {
  display: block;
}

.form-card[data-submitted="true"] form {
  display: none;
}

@media (max-width: 600px) {
  .form-page {
    padding: 32px 16px 64px;
  }
  .form-card {
    padding: 28px 20px 24px;
    gap: 24px;
  }
  .form-card form {
    gap: 22px;
  }
  .form-page-header {
    padding: 0 0 28px;
    gap: 12px;
  }
  .form-page-h1 {
    font-size: 28px;
  }
}

/* ═══════════════════════════
   NAV TRAY (burger menu slide-out)
   Matches footer gradient. Locks body scroll when open.
═══════════════════════════ */

.nav-tray {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.nav-tray[data-open="true"] {
  visibility: visible;
  pointer-events: auto;
}

.nav-tray-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-tray[data-open="true"] .nav-tray-scrim {
  opacity: 1;
}

.nav-tray-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: linear-gradient(152deg, rgba(102, 102, 102, 0) 0%, rgba(29, 29, 29, 1) 100%), #323232;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 94px 32px 32px;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.25);
}

/* Brand button — visually overlaps the burger menu position so the user's
   cursor lands on it after opening. Clicking it closes the tray. */
.nav-tray-brand {
  position: absolute;
  top: 14px;
  left: 16px;
  background: transparent;
  padding: 6px 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Tilt Warp', cursive;
  font-size: 22px;
  line-height: 1;
  color: #FFFFFF;
  transition: background 0.15s ease, transform 0.1s ease;
}

.nav-tray-brand:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.nav-tray[data-open="true"] .nav-tray-panel {
  transform: translateX(0);
}

.nav-tray-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: transparent;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-tray-close:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.35);
  outline-offset: -4px;
}

.nav-tray-close svg {
  display: block;
}

.nav-tray-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.nav-tray-list a {
  display: block;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-tray-list a:hover,
.nav-tray-list a:focus-visible {
  color: rgba(255, 255, 255, 0.6);
  outline: none;
}

/* Lock everything beneath the tray. Body becomes position:fixed; JS captures
   and restores scrollY so the page stays exactly where the user left it. */
body.nav-tray-open {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

/* ═══════════════════════════
   LEGAL PAGES (Privacy)
═══════════════════════════ */

.legal-page {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 80px;
}

.legal-content {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6B6B6B;
  text-align: center;
  margin-bottom: 8px;
}

.legal-h1 {
  font-family: 'Tinos', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  text-align: center;
  margin-bottom: 8px;
}

.legal-h2 {
  font-family: 'Tinos', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  padding-top: 16px;
}

.legal-p,
.legal-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1E2939;
}

.legal-content ul {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-content li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1E2939;
}

.legal-content strong {
  font-weight: 600;
  color: #000000;
}

.legal-content address {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1E2939;
}

.legal-content a {
  color: #06678A;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-page {
    padding: 32px 16px 64px;
  }
  .legal-h1 {
    font-size: 28px;
  }
  .legal-h2 {
    font-size: 19px;
  }
}

