/* =============== Reset & Base =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: "Inter", sans-serif;
    background: transparent;
    color: #fff;
    line-height: 1.6;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    overflow-x: hidden;
  }
  
  /* Global blurred-hero background (all pages) */
  body:not(.custom-bg)::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #fefefe;
    /* red rocks background: url("../assets/SouthernUtahPhotos/background-supersmaller.webp")
                center/cover no-repeat; 
                filter: blur(6px); 
    */
   
    opacity: 1;
    z-index: -2;
    pointer-events: none;
  }
  /* red rocks way of tinting background had opacity 0.65 here */
  body:not(.custom-bg)::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: -1;
  }
  
  /* Global typography */
  h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
  }
  p {
    font-size: 1.1em;
    color: #222;
    margin-bottom: 1.5em;
    line-height: 1.5;
  }
  

  /* =============== Layout & Structure =============== */

/* Wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header & Navigation */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    border-bottom: 1px solid #222;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  /* Ensure the logo link stays white with no underline */
  .logo-container a,
  .logo-container a:visited,
  .logo-container a:hover,
  .logo-container a:focus {
    color: #fff;
    text-decoration: none;
  }
  nav a {
    margin: 0 1em;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  nav a:hover {
    color: #888;
  }
  nav a.active {
    border-bottom: 2px solid #888;
    padding-bottom: 2px;
  }
  
  /* Generic sections */
  section {
    flex: 1;
    max-width: 1000px;
    margin: 1em auto;
    padding: 1em;
    text-align: center;
  }
  section.featurebox{
    flex: 0 0 auto;     /* shrink-wrap to content, keep normal flow */
  }
  /* Footer */
  footer {
    margin-top: 3rem;
    text-align: center;
    padding: 2em 0;
    border-top: 1px solid #222;
    font-size: 0.9em;
    color: #222;
  }
  /* --- site-wide flex layout --- */
body{
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

main{           /* whatever you call the central wrapper */
  flex:1 0 auto;
}

footer{
  flex-shrink:0;   /* stays below main; no overlap */
}
/* --- tiny gray footer links --- */
.footer-links{
  margin-top:0.35rem;
  font-size:0.75rem;   /* smaller text */
  color:#222;
}
.footer-links a{
  color:#222;
  font-size:0.75rem;
  text-decoration:underline;
}
.footer-links a:hover{
  color:#aaa;
}
  /* Responsive tweaks */
  @media (max-width: 768px) {
    nav a {
      margin: 0 0.5em;
    }
    h2 {
      font-size: 1.8em;
    }
  }


  .logo-container .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  display: block;
  width: 22px;   /* tweak: 20–26 */
  height: 22px;
  object-fit: contain;
}

/* Apps dropdown final override */
header nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

header nav .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

header nav .nav-dropdown-button {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-decoration: none;
}

header nav .nav-dropdown-button:hover,
header nav .nav-dropdown-button:focus-visible {
  color: #888;
}

header nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  padding: 0.45rem;
  border-radius: 12px;
  background: rgba(10, 10, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
}

header nav .nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

header nav .nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  white-space: nowrap;
  text-align: left;
  text-decoration: none;
  line-height: 1.2;
}

header nav .nav-dropdown-menu a:hover,
header nav .nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* =============== Reusable Components =============== */

/* Feature box */
.featurebox {
    background: rgba(109, 109, 109, 0.8);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 2rem auto;
    height:auto;        /* explicit reset */
    max-height:none;
  }
  .featurebox h1{
    margin: 0;             /* kill the bottom margin */
    padding-bottom: .75rem; /* space you actually want */
  }
  .featurebox ul{
    list-style: none;   /* no bullets */
    padding-left: 0;    /* pull text flush with the heading */
  } 
  /* services list – extra gap under each bold header */
.featurebox li strong{
  display:block;        /* puts it on its own line */
  margin-bottom:.35rem; /* tweak gap size to taste */
}
  .featurebox li{ margin: .75rem 0; } 
  /* Button-row (legal links) */
  .button-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2em 0;
  }
  .button-row a {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 0.75em 1.5em;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .button-row a:hover {
    background: #fff;
    color: #000;
  }
  
  /* Forms */
  form {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    margin: 0 auto;
  }
  form input,
  form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 1em;
    background: #000;
    color: #fff;
  }
  form input:focus,
  form textarea:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 5px rgba(255,255,255,0.2);
  }

  
  /* Email & phone links */
  
  
  
  /* Social icons */
  

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  background: #f3f3f3;
}

.social-links a img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.social-links .linkedin-link img {
  width: 24px;
  height: 24px;
}

.social-links .youtube-link img {
  width: 23px;
  height: 23px;
}

.social-links .x-link img {
  width: 21px;
  height: 21px;
}
  /* ----------  BLOG LIST & BLOG POST ONLY  ---------- */

/* UL wrapper on blog.html */


/* Each entry square */



/* Ensure the whole card is clickable & stays white */


/* Better contrast just for full-length blog posts */


/* ===== BLOG-POST fine-tuning (only .html pages that load <body class="blog-post">) ===== */

/* 1. Feature box breathing room & ideal width */


/* 2. Comfortable paragraph leading */


/* 3. Stronger title hierarchy */


/* 4. Slightly brighter footer copy so it’s legible over dark bg */


/* 5. Mobile tweak – back off the padding a bit on small screens */


a,
a:visited,
a:hover,
a:active {
  color: white;
  text-decoration: none; /* optional */
}

footer a,
footer a:visited,
footer a:active {
  color: #222;
  text-decoration: underline; /* optional */
}

footer a:hover{
  color: #333;
}

/* =============== Page-Specific Styles =============== */

/* Dream.Me landing page */












/* Hero section (generic) */
.hero {
  background: #555;
  padding: 3rem 2rem 2rem 2rem;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.hero-cards {
  background: #555;
  border-radius: 28px;
  padding: 2rem 1rem 1rem 1rem;
}
.hero-image {
  display: block;
  margin: 0 auto 1em;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}
.hero-card h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25), 0 1px 0 #222;
  margin-bottom: 1rem;
  margin-top: 0.3rem;
  padding-left: 2rem;
}
.hero-content p {
  font-size: 1.2em;
  color: #ccc;
  max-width: 600px;
  line-height: 1.5;
}


/* Apple-inspired hero styling for Zephyr front page */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  width: 100%;
  max-width: 1600px; /* Looser, less boxy. You can set this wider if you want! */
  margin: 3rem auto 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  align-items: center; /* Center the cards in the column */
}
@media (min-width: 1800px){    /* ultrawide monitors */
  .hero-cards{ max-width: 1800px; }
}
.hero-card {
  width: 100%;                      /* Use most of the container width */
  max-width: none;                /* or set 1000px for even wider */
  background: #555;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  padding: 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s cubic-bezier(.39,.44,.53,.96), box-shadow 0.2s;
  text-align: left;
  align-items: flex-start;
}

/* Center caption inside hero cards on the home page */
.hero-caption{
  width: 100%;          /* let it span the full card */
  text-align: center;   /* center its contents */
}

.hero-caption p{
  margin-left: auto;    /* keep text truly centered */
  margin-right: auto;
}
.hero-card img {
  border-radius: 20px;
  margin-bottom: 1.2rem;
  max-width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.13);
}
.hero-card h1 {
  text-align: left;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25), 0 1px 0 #222;
  margin-bottom: 1rem;
  margin-top: 0.3rem;
}
.hero-caption p,
.hero-card p,
.hero-card .hero-caption {
  color: #fff;
  font-size: 1.15em;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.16);
  text-align: center;
}
@media (max-width: 900px) {
  .hero-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* Landing page animated logo */
.logo-wave {
  width: 100%;
  height: 140px;
  margin-bottom: 1rem;
  overflow: visible;
}
.logo-wave text {
  font-size: 120px;
  font-weight: 700;
  fill: #fff;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
/* Features list */



/* Primary CTA */
.primary-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75em 1.5em;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.primary-btn:hover,
.button-row a:hover{
  background:#d9d9d9;   /* slightly darker grey on hover */
  border-color:#d9d9d9;
}
.primary-btn,
.button-row a{
  background:#fff;      /* white all the time */
  color:#000;
  border:1px solid #fff;
  transition:background .25s ease, color .25s ease;
}
/* Dream.Me download button */



/* Portfolio page */
/* ----- horizontal carousel ----- */


 /* Chrome/Safari */
















/* give the carousel a positioning context */


/* arrow placement */


/* 2 ─ truly centre the description box */











      /* highlight */



/* Contact page */


 




.social-links {
  margin-top: 2rem;
}
.social-links a {
  margin: 0 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.social-links a:hover {
  text-decoration: underline;
}
/*  contact-page tweaks  ─ drop this in pages.css  */

/* 1 ─ make both buttons equal-width & keep the row perfectly centred */
.button-row .primary-btn{
  min-width: 110px;        /* identical widths → optical centre is true centre   */
  text-align: center;      /* keeps the label centred inside                     */
}

/* 2 ─ shave the extra air off the bottom of the card */



/* ----------  SERVICES PAGE (clean) ---------------------------- */


/* responsive two-column list on ≥700 px, falls back to one column */








 
/* ===== Portfolio cover cards ===== */
.app-card{
  width: 95%;
  max-width: 1600px;
  margin: 4rem auto;
  background: #555;
  border-radius: 28px;
  padding: 3rem 3rem 3.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.32);
  text-align: center;
}

.app-card .cover{
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  margin-bottom: 2rem;
  object-fit: cover;
}

.app-card .app-title{
  width: 80%;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.app-card .tagline{
  font-size: 1.15rem;
  color: #eee;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.tagline2 {
  font-size: 1.15rem;
  color: #eee;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: left;
}
.store-btn{
  display: inline-block;
  padding: .9rem 2.2rem;
  background: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s ease;
}
.store-btn,
.store-btn:visited,
.store-btn:active,
.store-btn:focus {
  display: inline-block;
  padding: .9rem 2.2rem;
  background: #fff;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background .25s ease;
}

.store-btn:hover {
  background: #d9d9d9;
  color: #000;
  text-decoration: none;
}



/* Portfolio app-card hero header style */
.app-card h1.app-hero {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  margin-top: 0.1rem;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18), 0 1px 0 #222;
  text-align: left;
  padding-left: 2rem;
}














.role-tag {
  color: #bbb;
  font-size: 1.18rem;
  margin-bottom: 1.7rem;
  font-weight: 500;
}

/* --- Contact Card Styling --- */
.contact-card {
  background: #555;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  width: 98%;
  max-width: 600px;
  margin: 4rem auto 0 auto;
  padding: 3.5rem 2.2rem 3rem 2.2rem;
  text-align: center;
}
.contact-card h1 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -1.1px;
  margin-bottom: 1.7rem;
  color: #fff;
  line-height: 1.08;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.contact-card .lead {
  font-size: 1.18rem;
  color: #ccc;
  margin-bottom: 2.2rem;
}



.button-row {
  justify-content: center;
  gap: 1.3rem;
}




.logo-banner {
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 3.5rem auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;

  background: #555;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 600;
  padding: 3.6rem 2.8rem 2.2rem 2.8rem;

  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  margin-bottom: 0;
}


@media (max-width: 600px) {
  .logo-box {
    font-size: 1.2rem;
    padding: 1.1rem 1.2rem;
  }
  
}
/* Make the YouTube embed behave like .app-card .cover */




/* About page: make the hero image a small circular profile photo */
.hero-image.profile-photo {
  width: 180px;
  height: 180px;
  max-width: none;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Slightly smaller on phones */
@media (max-width: 600px) {
.hero-image.profile-photo {
    width: 140px;
    height: 140px;
  }
}

/* About page: make the hero match your other cards */
body.about-page .hero {
  background: #444;              /* matches your cards */
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  width: 95%;
  max-width: 640px;
  margin: 3.5rem auto 0 auto;
  padding: 2.25rem 2rem 2rem 2rem;
}

.peel-download-block {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 0;
  text-align: center;
}



.peel-download-copy {
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.peel-download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.peel-primary-btn {
  margin: 0;
}
.peel-primary-btn:hover{
  background: #0a84ff;
  color: #fff;
}


/* ===== Peel landing page fixes ===== */



/* Peel page should not inherit weird portfolio/carousel layout behavior */
.lander-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

.lander-section .logo-banner,
.lander-section .ios-apps-static,
.lander-section footer {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* keep cards centered cleanly on Peel page */
.lander-section .app-card {
  width: min(95%, 1000px);
  margin-left: auto;
  margin-right: auto;
}

/* requirements list: stop mobile li padding from making this feel shoved right */
.lander-section ul {
  padding-left: 0;
  list-style-position: inside;
}

.lander-section .tagline2 {
  text-align: left;
}

@media (max-width: 600px) {
  

  .lander-section .logo-banner {
    margin: 1.25rem auto 2rem;
    padding: 0 1rem;
  }

  .lander-section .app-card {
    width: calc(100% - 2rem);
    padding: 2rem 1.25rem 2.25rem;
  }

  .lander-section .app-card h1.app-hero {
    padding-left: 0;
    text-align: center;
    font-size: 1.9rem;
  }

  .lander-section .peel-download-copy,
  .lander-section .tagline {
    max-width: 100%;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  

  .lander-section .logo-banner {
    padding: 0 1.5rem;
  }

  .lander-section .app-card {
    width: calc(100% - 3rem);
    padding: 2.5rem 2rem 2.75rem;
  }
}

/* ===============================
   Cohesion Pass — Safe Overrides
   Scope: targeted visual consistency only
   =============================== */

/* Shared card surface consistency without changing page structure */
.featurebox,
body.about-page .hero,
body.about-page .logo-box,
.lander-section .app-card {
  background: #555;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
}

/* Shared card text rhythm */
.featurebox h2,
body.about-page .hero h1,
body.about-page .hero-card h2,
.lander-section .app-card h1.app-hero {
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.featurebox h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.featurebox h3 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 2rem 0 0.65rem;
}

.featurebox p,
.featurebox li {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #222;
}

/* About page: keep the profile card in the same visual family as every other card */
body.about-page .hero {
  max-width: 640px;
  margin: 3.5rem auto 0 auto;
  padding: 2.25rem 2rem 2rem 2rem;
}

body.about-page .hero h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.18);
}

body.about-page .role-tag {
  color: #eee;
  font-size: 1.15rem;
  margin-bottom: 1.7rem;
  font-weight: 500;
}

/* About page: make capability cards use the same text language as app cards */
body.about-page .hero-card h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18), 0 1px 0 #222;
}

body.about-page .hero-caption p,
body.about-page .hero-card p {
  color: #eee;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 400;
}

/* Mac Mechanic landing: fix hierarchy without affecting homepage cards */
.lander-section .app-card h1.app-hero {
  padding-left: 0;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Mac Mechanic landing: make the first hero card read more deliberately */
.lander-section .app-card:first-of-type .tagline:first-of-type {
  font-size: 1.25rem;
  color: #ddd;
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.lander-section .app-card:first-of-type .tagline:last-of-type {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

/* About page: reduce the giant logo hero without touching product cards */
body.about-page .logo-box {
  max-width: 900px;
  min-height: 180px;
  padding: 2.75rem 2rem;
}

body.about-page .logo-wave {
  height: 120px;
}

body.about-page .logo-wave text {
  font-size: 96px;
}

/* Header nav spacing: use flex gap only */
header nav a {
  margin: 0;
}

header nav {
  gap: 2rem;
}

/* ===============================
   Readability fixes
   Scope: legal feature boxes + Peel landing/download card
   =============================== */

/* Legal pages use .featurebox on a dark card; keep global paragraphs dark elsewhere. */
.featurebox,
.featurebox p,
.featurebox li,
.featurebox strong {
  color: #f5f5f7;
}

.featurebox p,
.featurebox li {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.featurebox a,
.featurebox a:visited,
.featurebox a:active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.featurebox a:hover,
.featurebox a:focus-visible {
  color: #e6e6e6;
}

/* Peel download copy was inheriting the global p { color: #222; }. */
.lander-section .peel-download-copy,
.lander-section .waitlist,
.lander-section .waitlist p,
.lander-section .waitlist label {
  color: #f5f5f7;
}

.lander-section .peel-download-copy {
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.lander-section .waitlist h1 {
  color: #fff;
}