.nothole-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;  
  box-sizing: border-box;
  padding: 32px 30px;
  background: #183f32;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.nothole-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.nothole-logo {
  display: block;
  width: auto;
  height: 72px;
  border-radius: 30px;
  object-fit: contain;
}
.nothole-byline {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.nothole-nav {
  display: flex;
  align-items: center;
}
.nothole-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;  
}
.nothole-nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.nothole-nav-links a:hover,
.nothole-nav-links a:focus-visible,
.nothole-nav-links a[aria-current="page"] {
  color: #d9ee64;
}
.nothole-hamburger {
  display: none;
  padding: 6px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
/* Mobile NotHole navigation */
@media (max-width: 800px) {
  .nothole-header {
    position: relative;
    padding: 10px 20px;
  }
  .nothole-logo {
    height: 36px;
  }
  .nothole-hamburger {
    display: block;
  }
  .nothole-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: #183f32;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  }
  .nothole-nav-links.active {
    display: flex;
  }
  .nothole-nav-links a {
    display: block;
    padding: 12px 0;
  }
}
/*NOTHOLE MAIN CSS*/
html {
  overflow-y: scroll;
}
/* Hero */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-bottom: 100px;
      padding-left: 30px;
    }
  .hero h1 {
      font-size: 48px;
      margin-bottom: 16px;
    }
  .hero p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    }
  .cta {
      display: inline-block;
      padding: 12px 24px;
      background: var(--accent);
      color: #000;
      border-radius: 6px;
      font-weight: 600;
    }
  .cta:focus-visible,
  .primary-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
  }
  .hero-image {
    position: relative;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
  }
  
  .hero-image-row {
    display: flex;
    gap: 16px;
    height: 100%;
    width: max-content;
    
  }
  .hero-image-row img {
    height: 100%;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
  }
  .contact-link {
    display: inline-block;
    margin-bottom: 32px;
    font-weight: 600;
  }
  .contact-large {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: var(--text);
    text-align: center;
  }
  section {
    margin-bottom: 80px;
  }
  section h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }
    section p {
      max-width: 700px;
      color: var(--muted);
    }
    /* Screenshots */
    .screenshots {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 100px;
      margin-top: 32px;
    }
    .screenshot {
      background: var(--card);
      border-radius: 16px;
      overflow: hidden;
      width: min(355px, 100%);
      aspect-ratio: 355 / 740;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      justify-self: center;
    }
    .screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* fills nicely */
      display: block;
    }  
    /* Responsive */
    @media (max-width: 800px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .hero h1 {
        font-size: 36px;
      }
    }
    .store-downloads {
      margin-top: 24px;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .store-badge {
      height: 56px;
      width: auto;
      display: block;
      transition: transform 0.15s ease;
    }
    .store-badge:hover {
      transform: translateY(-2px);
    }
/* NotHole page layout */
main {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.nothole-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 64px;
  padding: 72px 0;
  margin-bottom: 80px;
  border-radius: 16px;
}
.nothole-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px;
  background: #183f32;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.nothole-hero-logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}
.nothole-tagline {
  max-width: 340px;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}
.eyebrow {
  margin-bottom: 12px;
  color: #34745e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nothole-hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
}
.nothole-introduction {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.secondary-cta {
  display: inline-block;
  padding: 12px 20px;
  color: #183f32;
  border: 2px solid #183f32;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.hazards-section {
  margin-bottom: 90px;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-heading p {
  margin-right: auto;
  margin-left: auto;
}
.hazard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.hazard-card {
  overflow: hidden;
  background: var(--card, #fff);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}
/*
  Every frame has exactly the same proportions.
  The actual frame width changes with the browser,
  but its shape remains consistent.
*/

.hazard-image-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d8ddd9;
  flex-shrink: 0;
}
.hazard-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hazard-card-content {
  flex: 1;
  padding: 24px;
}
.hazard-card-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.hazard-card-content p {
  margin: 0;
  line-height: 1.6;
}
/* Tablet */
@media (max-width: 900px) {
  .nothole-hero {
    gap: 36px;
  }
  .nothole-hero-brand {
    padding: 24px;
    border-radius: 16px;
  }
}
/* Phone */
@media (max-width: 700px) {
  main {
    width: min(100% - 28px, 600px);
  }
  .nothole-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0;
    margin-bottom: 60px;
  }
  .nothole-hero-brand {
    padding: 24px;
    border-radius: 16px;
    }
  .nothole-hero-logo {
    width: min(80%, 280px);
    border-radius: 30px;
  }
  .nothole-hero-content {
    text-align: center;
  }
  .nothole-introduction {
    margin-right: auto;
    margin-left: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hazard-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hazard-card-content {
    padding: 20px;
  }
}
/* PRIVACY & TERMS PAGE */
.page-header {
      margin: 80px 0 48px;
    }
    .page-header h1 {
      font-size: 40px;
      margin-bottom: 12px;
    }
    .page-header p {
      color: var(--muted);
      max-width: 760px;
    }    
    details {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 24px;
      cursor: pointer;
    }
    details[open] {
      border-color: var(--accent);
    }
    summary {
      list-style: none;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    summary::-webkit-details-marker {
      display: none;
    }
    summary::after {
      content: "+";
      font-size: 22px;
      color: var(--muted);
      transition: transform 0.2s ease;
    }
    details[open] summary::after {
      content: "–";
      color: var(--accent);
    }
    .collapsible-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .collapsible-body {
        margin-top: 16px;
        color: var(--muted);
        max-width: 760px;
      }
    .collapsible-body ul {
      margin: 12px 0 16px 24px;
      padding-left: 16px;
    }

    .collapsible-body li {
      margin-bottom: 8px;
      list-style-type: disc;
    }  
    .content-narrow {
        max-width: 760px;
        margin: 0 auto;
      }  
    @media (max-width: 900px) {
      .page-header h1 {
        font-size: 32px;
      }
    }
    @media (max-width: 700px) {
      .faq-page {
        width: min(100% - 28px, 760px);
        padding: 42px 0 60px;
      }
      .faq-page-header {
        margin-bottom: 30px;
      }
      .faq summary {
        padding: 17px 18px;
        font-size: 16px;
      }
      .faq-answer {
        padding: 0 18px 19px;
      }
    }
    /* FAQ page */
      .faq-page {
      width: min(760px, calc(100% - 40px));
      margin: 0 auto;
      padding: 64px 0 80px;
    }
    .faq-page-header {
      margin-bottom: 40px;
      text-align: center;
    }
    .faq-page-header .eyebrow {
      margin: 0 0 10px;
      color: #34745e;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .faq-page-header h1 {
      margin: 0 0 16px;
      font-size: clamp(36px, 6vw, 56px);
      line-height: 1.1;
    }
    .faq-page-header p {
      max-width: 620px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.7;
    }
    .faq {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq details {
      overflow: hidden;
      padding: 0;      
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    }
    .faq details[open] {
      border-color: #34745e;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .faq summary {      
      gap: 20px;
      padding: 20px 24px;      
      font-weight: 600;
      line-height: 1.4;
      cursor: pointer;
    }    
    .faq summary::after {
      content: "+";
      flex: 0 0 auto;
      color: #34745e;
      font-size: 26px;
      font-weight: 400;
      line-height: 1;
    }
    .faq details[open] summary::after {
      content: "−";
    }
    .faq summary:focus-visible {
      outline: 3px solid rgba(52, 116, 94, 0.35);
      outline-offset: -3px;
    }
    .faq-answer {
      padding: 0 24px 22px;
      color: var(--muted);
      line-height: 1.7;
    }
    .faq-answer p {
      margin: 0;
    }
    .faq-answer p + p {
      margin-top: 14px;
    }
    .faq-answer a {
      color: #34745e;
      font-weight: 600;
    }
    .faq-notice {
      margin-top: 36px;
      padding: 22px 24px;
      background: rgba(52, 116, 94, 0.08);
      border-left: 4px solid #34745e;
      border-radius: 8px;
    }
    .faq-notice h2 {
      margin: 0 0 8px;
      font-size: 20px;
    }
    .faq-notice p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }
    .faq-contact {
      margin-top: 48px;
      text-align: center;
    }
    .faq-contact h2 {
      margin-bottom: 10px;
    }
  .faq-contact p {
    margin: 0 auto 22px;
    color: var(--muted);
  }
  .faq-contact .cta {
    display: inline-block;
  }    
  /* CONTACT PAGE */
  .contact-page .cta-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 16px;
    max-width: 520px;
    margin: 32px auto;
  }
  .contact-page .cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    text-align: center;
  }
  .contact-page .cta,
  .contact-page .primary-button {
    transition:
      background-color 0.2s ease,
      transform 0.15s ease,
      box-shadow 0.15s ease;
  }
  .contact-page .cta:hover,
  .contact-page .primary-button:hover {
    background-color: #43a047;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  }
  .contact-page .cta:focus-visible,
  .contact-page .primary-button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
  }
  .contact-page .cta:active,
  .contact-page .primary-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }
  .contact-page .collage-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    height: 100%;
  }
  .contact-page .collage-track img {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
  }
  .contact-page .store-downloads {
    margin-top: 12px;
  }
  @media (max-width: 700px) {
  .contact-page .cta-group {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
 