/* ================================================
   Dormie Landing Page — styles.css
   All-dark design with nightlight glow (brand deck p.1-6)
   Mobile-first, breakpoints at 768px and 1024px
   ================================================ */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'OptimaProRoman';
  src: url('/assets/fonts/OptimaProRoman.woff2') format('woff2'),
    url('/assets/fonts/OptimaProRoman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --earth-black: #141212;
  --accent-orange: #d05937;
  --burnt-orange: #903412;
  --stone: #d3cfbb;
  --sand: #d1bb93;
  --warm-white: #f5f2ed;
  --mocha: #6c5650;
  --cloud: #9babb9;
  --slate: #2d3540;
  --warm-black: #1e1b17;
  --mocha-light: #a89690;

  --font-heading: 'OptimaProRoman', 'Optima', 'Palatino Linotype',
    'Book Antiqua', Palatino, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;

  --container-max: 960px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;

  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--stone);
  background-color: var(--earth-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent-orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--warm-white);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 18px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 16px;
  text-align: center;
}

strong,
b {
  font-weight: 600;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NIGHTLIGHT GLOW ----------
   Shared glow element used as section divider.
   Each content section gets a glow at the top via ::before.
   Matches brand deck pages 4-6: small radial glow, top-center.
   ---------------------------------------- */
.problem,
.different,
.how-it-works,
.domains,
.partners,
.trust,
.signup {
  position: relative;
  padding: 80px 0 72px;
}

.problem::before,
.different::before,
.how-it-works::before,
.domains::before,
.partners::before,
.trust::before,
.signup::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    rgba(208, 89, 55, 0.24) 0%,
    rgba(144, 52, 18, 0.09) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* ================================================
   HEADER — sticky, with lockup logo
   ================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108, 86, 80, 0.15);
}

.site-header .logo-lockup {
  height: 52px;
  width: auto;
}

/* ================================================
   HERO — Earth Black, large nightlight glow
   ================================================ */
.hero {
  background-color: var(--earth-black);
  padding: calc(var(--header-height) + 40px) 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero nightlight — larger, bottom-center like brand deck cover */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(
    ellipse at 50% 90%,
    rgba(208, 89, 55, 0.22) 0%,
    rgba(144, 52, 18, 0.1) 30%,
    rgba(108, 86, 80, 0.04) 55%,
    transparent 75%
  );
  pointer-events: none;
}

/* Hero top glow — centered on "It's 3:17am" heading.
   Hero is 100vh with flex centering. */
.hero::after {
  content: '';
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(208, 89, 55, 0.5) 0%,
    rgba(144, 52, 18, 0.24) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero .hook {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--warm-white);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 18px;
}

.hero .pain-list {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 32px;
  padding: 0;
}

.hero .pain-list li {
  color: var(--stone);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 1.05rem;
}

.hero .pain-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

.hero .meet-dormie {
  margin-top: 44px;
}

.hero .meet-dormie h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.hero .meet-dormie p {
  font-size: 1.05rem;
  color: var(--stone);
}

.hero .closing-line {
  font-style: italic;
  color: var(--accent-orange);
  margin-top: 4px;
  font-size: 1.05rem;
}

.hero-image {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ---------- CTA BUTTON ---------- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  background: var(--accent-orange);
  padding: 16px 44px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(208, 89, 55, 0.2);
  margin-top: 32px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(208, 89, 55, 0.3);
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(0);
}

/* ================================================
   PROBLEM
   ================================================ */
.problem {
  text-align: center;
}

.problem-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 28px auto;
  text-align: left;
}

.problem-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  color: var(--stone);
}

.problem-list li::before {
  content: '\00d7';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.55;
}

.problem .closer {
  max-width: 540px;
  margin: 28px auto 0;
  font-size: 1.1rem;
  color: var(--sand);
  line-height: 1.75;
}

/* ================================================
   DIFFERENTIATORS
   ================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.diff-card {
  background: var(--warm-black);
  border: 1px solid rgba(108, 86, 80, 0.4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.diff-card .yes {
  color: var(--sand);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 6px;
}

.diff-card .not {
  color: var(--stone);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how-it-works > .container > h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.step-content p {
  color: var(--stone);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.step-image {
  max-width: 260px;
}

.step-image img {
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ================================================
   DOMAINS
   ================================================ */
.domains h2 {
  text-align: center;
  margin-bottom: 36px;
}

.domain-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 36px;
}

.domain-card {
  background: var(--warm-black);
  border: 1px solid rgba(108, 86, 80, 0.4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.domain-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.domain-card .pain-points {
  color: var(--sand);
  font-size: 1rem;
  line-height: 1.7;
}

.domain-expansion {
  text-align: center;
  margin-top: 36px;
}

.domain-expansion .grows-label {
  font-style: italic;
  color: var(--sand);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.domain-expansion .future-domains {
  color: var(--stone);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

.domain-expansion .closer {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--warm-white);
}

.cross-domain-proof {
  max-width: 560px;
  margin: 28px auto 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent-orange);
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--sand);
}

.domain-image {
  max-width: 280px;
  margin: 40px auto 0;
}

.domain-image img {
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ================================================
   TRUST
   ================================================ */
/* ── For Consultants & Organizations ───────────────────────────── */

.partners h2 {
  text-align: center;
  margin-bottom: 36px;
}

.partner-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 28px;
}

.partner-card {
  background: var(--warm-black);
  border: 1px solid rgba(108, 86, 80, 0.4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.partner-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.partner-list li {
  padding: 14px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--sand);
  border-bottom: 1px solid rgba(108, 86, 80, 0.3);
}

.partner-list li:last-child {
  border-bottom: none;
}

.partner-list strong {
  color: var(--warm-white);
}

/* Partner enquiry — collapsed by default. It sits with the partner value
   proposition rather than in the signup grid, so it doesn't compete with the
   two parent CTAs. */
.partner-enquiry {
  max-width: 640px;
  margin: 0 auto;
}

.partner-enquiry > summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  font-size: 1.05rem;
  color: var(--accent-orange);
  padding: 12px 0;
}

.partner-enquiry > summary::-webkit-details-marker {
  display: none;
}

.partner-enquiry > summary::after {
  content: ' →';
}

.partner-enquiry[open] > summary::after {
  content: ' ×';
}

.partner-enquiry-body {
  background: var(--warm-black);
  border: 1px solid rgba(108, 86, 80, 0.4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-top: 12px;
}

.partner-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 16px;
  margin-bottom: 16px;
}

.btn-compact {
  width: auto;
  min-width: 200px;
  padding-left: 32px;
  padding-right: 32px;
}

.trust {
  text-align: center;
}

.trust h2 {
  margin-bottom: 36px;
}

.trust-list {
  list-style: none;
  padding: 0;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}

.trust-list li {
  padding: 18px 0;
  padding-left: 36px;
  position: relative;
  font-size: 1.05rem;
  color: var(--stone);
  border-bottom: 1px solid rgba(108, 86, 80, 0.3);
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.15rem;
}

.trust .privacy-link {
  margin-top: 28px;
  font-size: 1rem;
}

/* ================================================
   SIGNUP
   ================================================ */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.signup-card {
  background: var(--warm-black);
  border: 1px solid rgba(108, 86, 80, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.signup-card.primary {
  border-color: var(--accent-orange);
}

.signup-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.signup-card .card-description {
  color: var(--sand);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.beta-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.beta-benefits li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--sand);
  font-size: 1rem;
}

.beta-benefits li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

/* ---------- FORM ELEMENTS ---------- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--warm-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(108, 86, 80, 0.5);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--mocha-light);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(208, 89, 55, 0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23D3CFBB' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--earth-black);
  color: var(--warm-white);
}

.btn-submit {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: var(--accent-orange);
  padding: 15px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(208, 89, 55, 0.2);
  margin-top: 12px;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(208, 89, 55, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.turnstile-container {
  margin: 20px 0 0;
  display: flex;
  justify-content: center;
}

/* ---------- FORM MESSAGES ---------- */
.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  text-align: center;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  background: rgba(208, 89, 55, 0.12);
  color: var(--warm-white);
  border: 1px solid rgba(208, 89, 55, 0.3);
  display: block;
}

.form-message.error {
  background: rgba(208, 89, 55, 0.08);
  color: var(--sand);
  border: 1px solid rgba(208, 89, 55, 0.2);
  display: block;
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  padding: 64px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(108, 86, 80, 0.2);
  position: relative;
}

/* Footer glow — matching hero bottom glow */
.site-footer::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(
    ellipse at 50% 90%,
    rgba(208, 89, 55, 0.22) 0%,
    rgba(144, 52, 18, 0.1) 30%,
    rgba(108, 86, 80, 0.04) 55%,
    transparent 75%
  );
  pointer-events: none;
}

.footer-signature {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--warm-white);
  font-style: italic;
  margin-bottom: 8px;
}

.footer-tagline {
  font-style: italic;
  color: var(--sand);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.footer-disclaimers {
  max-width: 560px;
  margin: 0 auto 40px;
}

.footer-disclaimers p {
  font-size: 0.85rem;
  color: var(--mocha-light);
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-links a {
  color: var(--stone);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-logo {
  width: 140px;
  margin: 0 auto 20px;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--mocha);
}

/* ================================================
   LEGAL PAGES (privacy.html, terms.html)
   ================================================ */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--warm-white);
  color: var(--earth-black);
}

.legal-header {
  background-color: var(--earth-black);
  padding: 24px 28px;
}

.legal-header .logo {
  width: 140px;
}

.legal-content {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}

.legal-content h1 {
  margin-bottom: 8px;
  color: var(--earth-black);
}

.legal-content .last-updated {
  color: var(--mocha);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal-content h2 {
  margin-top: 36px;
  font-size: 1.3rem;
  color: var(--earth-black);
}

.legal-content h3 {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--earth-black);
}

.legal-content p {
  color: var(--earth-black);
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: var(--earth-black);
}

/* ================================================
   RESPONSIVE — Mobile-first with 768px + 1024px
   ================================================ */

/* ---------- Tablet and up (768px) ---------- */
@media (min-width: 768px) {
  :root {
    --header-height: 96px;
  }

  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .site-header {
    padding: 16px 40px;
  }

  .site-header .logo-lockup {
    height: 64px;
  }

  .hero {
    padding: calc(var(--header-height) + 60px) 40px 80px;
  }

  .hero .hook {
    font-size: 3rem;
  }

  .hero::before {
    width: 1000px;
    height: 550px;
  }

  .hero::after {
    width: 600px;
    height: 280px;
  }

  .hero .meet-dormie h2 {
    font-size: 2rem;
  }

  .hero-image {
    max-width: 320px;
  }

  /* Larger glows on desktop */
  .problem::before,
  .different::before,
  .how-it-works::before,
  .domains::before,
  .trust::before,
  .signup::before {
    width: 600px;
    height: 280px;
  }

  .site-footer::before {
    width: 1000px;
    height: 500px;
  }

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

  .step {
    flex-direction: row;
    text-align: left;
    gap: 40px;
    align-items: flex-start;
  }

  .step:nth-child(even) {
    flex-direction: row-reverse;
  }

  .step-content {
    flex: 1;
    padding-top: 20px;
  }

  .step-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .step-image {
    max-width: 300px;
    flex-shrink: 0;
  }

  .domain-cards {
    grid-template-columns: 1fr 1fr;
  }

  .partner-cards {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .domain-image {
    max-width: 320px;
  }

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

  .partner-fields {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    width: 160px;
  }
}

/* ---------- Desktop (1024px) ---------- */
@media (min-width: 1024px) {
  :root {
    --container-max: 1040px;
  }

  body {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 3.25rem;
  }
  h2 {
    font-size: 2.15rem;
  }

  .hero .hook {
    font-size: 3.25rem;
  }

  .hero p {
    font-size: 1.15rem;
  }

  .hero .meet-dormie h2 {
    font-size: 2.15rem;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }
}
