/* ============================================================
   DSCVRBAR · Main Stylesheet
   Brand: Petrol 700 #00696B · Petrol 200 #CDE8E5 · Petrol 50 #EEF4F3
   Typeface: Poppins 400 / 600 / 700 / 800
============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Brand Colors */
  --p700:       #00696B;
  --p700-dark:  #005254;
  --p200:       #CDE8E5;
  --p50:        #EEF4F3;

  /* Dark Palette */
  --dark:       #061c1c;
  --dark-mid:   #0d2c2c;
  --dark-card:  #112828;

  /* Text */
  --white:      #ffffff;
  --text:       #0d1b1b;
  --text-2:     #3d5555;
  --text-3:     #6b8484;

  /* Borders */
  --border:      rgba(0, 105, 107, 0.15);
  --border-dark: rgba(255, 255, 255, 0.10);

  /* Border Radius */
  --r-xs:  8px;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  32px;
  --r-xl:  48px;

  /* Shadows */
  --sh-sm:   0  4px  20px rgba(0, 105, 107, 0.12);
  --sh-md:   0 12px  48px rgba(0, 105, 107, 0.18);
  --sh-lg:   0 24px  80px rgba(0, 105, 107, 0.25);
  --sh-dark: 0 24px  80px rgba(0, 0, 0, 0.40);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s var(--ease);

  /* Layout */
  --max-w: 1200px;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ============================================================
   3. TYPOGRAPHY SCALE  (matches design spec exactly)
============================================================ */

/* Display · Poppins 800 · 56/58 · -0.02em · UPPERCASE */
.t-display {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Headline H1 · Poppins 700 · 32/36 · -0.01em */
.t-h1 {
  font-size: clamp(26px, 3.5vw, 32px);
  line-height: 1.125;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Title H2 · Poppins 700 · 22/28 · UPPERCASE */
.t-h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.27;
  font-weight: 700;
  text-transform: uppercase;
}

/* Title Medium · Poppins 700 · 16/22 */
.t-title-m {
  font-size: 16px;
  line-height: 1.375;
  font-weight: 700;
}

/* Body · Poppins 400 · 15/22 */
.t-body {
  font-size: 15px;
  line-height: 1.467;
  font-weight: 400;
}

/* Label Button · Poppins 700 · 15 · UPPERCASE · 0.02em */
.t-label {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Label Small · Poppins 600 · 11 · UPPERCASE · 0.08em */
.t-label-s {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Caption / Meta · Poppins 400 · 13/18 */
.t-caption {
  font-size: 13px;
  line-height: 1.385;
  font-weight: 400;
}


/* ============================================================
   4. LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 48px; } }


/* ============================================================
   5. SHARED COMPONENTS
============================================================ */

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--p200);
  color: var(--p700);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-badge--dark {
  background: rgba(0, 105, 107, 0.15);
  color: var(--p200);
  border: 1px solid rgba(0, 105, 107, 0.30);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--p700);
  color: var(--white);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0, 105, 107, 0.40);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.btn-primary:hover {
  background: var(--p700-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 105, 107, 0.50);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background var(--t), color var(--t);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
}






/* ============================================================
   6. NAVIGATION
============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}

#nav.is-scrolled {
  background: rgba(6, 28, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo__img  { height: 32px; width: auto; }

.nav-logo__text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* Desktop Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-xs);
  transition: color var(--t), background var(--t);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Nav links get a subtle active-indicator on hover */
.nav-links li a {
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--p700);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--t);
}

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

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xs);
  overflow: hidden;
}

.lang-btn {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--t), background var(--t);
}

.lang-btn.is-active { color: var(--white); background: rgba(255, 255, 255, 0.14); }
.lang-btn:hover:not(.is-active) { color: rgba(255, 255, 255, 0.80); }

/* CTA in Nav */
.btn-nav-cta {
  display: none;
  padding: 9px 18px;
  background: var(--p700);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 10px;
  transition: background var(--t), transform var(--t);
}

@media (min-width: 900px) { .btn-nav-cta { display: block; } }

.btn-nav-cta:hover { background: var(--p700-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-xs);
}

@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px)  rotate(45deg);  }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   7. MOBILE MENU
============================================================ */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  padding: 96px 24px 40px;
  flex-direction: column;
  gap: 0;
}

#mobile-menu.is-open { display: flex; }

#mobile-menu a {
  display: block;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--t);
}

#mobile-menu a:hover { color: var(--p200); }

.mobile-menu__cta {
  margin-top: 28px;
  display: block;
  padding: 16px 32px;
  background: var(--p700);
  color: var(--white) !important;
  border-radius: var(--r-md);
  font-size: 16px !important;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-bottom: none !important;
  box-shadow: 0 4px 20px rgba(0, 105, 107, 0.40);
}


/* ============================================================
   8. HERO
============================================================ */
#hero {
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__glow--1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 105, 107, 0.22) 0%, transparent 68%);
  animation: glowDrift 8s ease-in-out infinite;
}

.hero__glow--2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 105, 107, 0.14) 0%, transparent 68%);
  animation: glowDrift 10s ease-in-out infinite reverse;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 105, 107, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 105, 107, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes glowDrift {
  0%,  100% { transform: translate(0,    0)    scale(1);    }
  33%        { transform: translate(20px, -20px) scale(1.05); }
  66%        { transform: translate(-10px, 15px) scale(0.97); }
}

/* Hero Layout */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Hero Content */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 105, 107, 0.20);
  border: 1px solid rgba(0, 105, 107, 0.40);
  border-radius: 100px;
  color: var(--p200);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p200);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero__headline {
  color: var(--white);
  white-space: pre-line;
  margin-bottom: 24px;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.60);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}




/* ============================================================
   9. FEATURES INTRO
============================================================ */
#features-intro {
  padding: 100px 0 60px;
  background: var(--dark);
  text-align: center;
}

.features-intro__title {
  color: var(--white);
  white-space: pre-line;
  max-width: 600px;
  margin: 0 auto 20px;
}

.features-intro__sub {
  color: rgba(255, 255, 255, 0.50);
  max-width: 480px;
  margin: 0 auto;
}

/* App Nav Pills */
.app-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.app-nav__pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.60);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--t);
}

.app-nav__pill:hover,
.app-nav__pill.is-active {
  background: var(--p700);
  border-color: var(--p700);
  color: var(--white);
}

.app-nav__num {
  font-size: 10px;
  font-weight: 800;
  opacity: 0.60;
}


/* ============================================================
   10. FEATURE SECTIONS
============================================================ */
.feature-section { padding: 100px 0; }
.feature-section:nth-child(odd)  { background: var(--white); }
.feature-section:nth-child(even) { background: var(--p50);   }

.feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .feature__grid                    { grid-template-columns: 1fr 1fr; }
  .feature__grid--reverse .feature__content  { order: 2; }
  .feature__grid--reverse }

.feature__step {
  color: var(--p700);
  margin-bottom: 12px;
}

.feature__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--p200);
  color: var(--p700);
  border-radius: 100px;
  margin-bottom: 16px;
}

.feature__headline {
  white-space: pre-line;
  margin-bottom: 20px;
  color: var(--text);
}

.feature__body {
  color: var(--text-2);
  max-width: 440px;
  margin-bottom: 32px;
}









/* ============================================================
   PROTO IFRAME — direct grid child, zero wrappers
   iframe sits directly inside .hero__inner or .feature__grid.
   No showcase div = no rectangular boundary = no frame.
   CSS mask on the iframe fades the prototype page header out.
============================================================ */
.proto-iframe {
  display: block;
  border: 0;
  outline: none;
  width: 100%;          /* fills the grid column */
  align-self: center;   /* vertical centering in grid cell */
  /* Fade top ~15% so prototype page header melts into dark section bg */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
}

/* Reverse grid: iframe goes to column 1, content to column 2 */
.feature__grid--reverse .proto-iframe { order: 1; }

/* ============================================================
   11. FAQ
============================================================ */
#faq {
  padding: 100px 0;
  background: var(--dark);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__title { color: var(--white); }

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq__item {
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--dark-card);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  transition: background var(--t);
}

.faq__question:hover                   { background: rgba(255, 255, 255, 0.04); }
.faq__question[aria-expanded="true"]   { color: var(--p200); }

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t), background var(--t);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--p700);
}

.faq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--t);
}

.faq__answer.is-open {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq__answer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
}


/* ============================================================
   12. CONTACT
============================================================ */
#contact {
  padding: 100px 0;
  background: var(--p50);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact__title { white-space: pre-line; margin-bottom: 20px; }
.contact__sub   { color: var(--text-2); max-width: 380px; }

/* Form Card */
.contact__form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.form__input,
.form__textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--p50);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  padding: 12px 16px;
  outline: none;
  width: 100%;
  transition: border-color var(--t), background var(--t);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--p700);
  background: var(--white);
}

.form__textarea   { resize: vertical; min-height: 120px; }
.form__honeypot   { display: none; }   /* spam trap */

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--p700);
  color: var(--white);
  border-radius: var(--r-md);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0, 105, 107, 0.30);
  transition: background var(--t), transform var(--t);
}

.btn-submit:hover    { background: var(--p700-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.60; cursor: not-allowed; transform: none; }

/* Form Status Messages */
.form__message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.form__message--success {
  display: block;
  background: rgba(0, 105, 107, 0.10);
  color: var(--p700);
  border: 1px solid rgba(0, 105, 107, 0.20);
}

.form__message--error {
  display: block;
  background: rgba(220, 50, 50, 0.08);
  color: #c0392b;
  border: 1px solid rgba(220, 50, 50, 0.20);
}


/* ============================================================
   13. FOOTER
============================================================ */
#footer {
  background: var(--dark);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.40);
  margin-top: 12px;
  font-size: 14px;
}

.footer__col-title {
  color: rgba(255, 255, 255, 0.30);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer__links a,
.footer__legal-btn {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t);
  display: block;
  text-align: left;
}

.footer__links a:hover,
.footer__legal-btn:hover { color: var(--p200); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer__rights,
.footer__made {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}


/* ============================================================
   14. MODALS
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.is-open { display: flex; }

.modal-overlay__box {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-dark);
}

.modal-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}

.modal-overlay__title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.modal-overlay__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r-xs);
  color: rgba(255, 255, 255, 0.60);
  font-size: 20px;
  line-height: 1;
  transition: background var(--t), color var(--t);
}

.modal-overlay__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.modal-overlay__body {
  padding: 28px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  line-height: 1.7;
}

.modal-overlay__body h3 {
  color: rgba(255, 255, 255, 0.90);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 24px 0 10px;
}

.modal-overlay__body h3:first-child { margin-top: 0; }
.modal-overlay__body p              { margin-bottom: 8px; }
.modal-overlay__body a              { color: var(--p200); text-decoration: underline; }


/* ============================================================
   15. SCROLL ANIMATIONS
============================================================ */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim--left  { transform: translateX(-32px); }
.anim--right { transform: translateX(32px);  }

.anim.in-view { opacity: 1; transform: translate(0); }

.anim-d1 { transition-delay: 0.10s; }
.anim-d2 { transition-delay: 0.20s; }
.anim-d3 { transition-delay: 0.30s; }
.anim-d4 { transition-delay: 0.40s; }


/* ============================================================
   16. UTILITIES
============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
