:root {
  /* Neutrals */
  --n01-black: #282525;
  --n02-white: #FFFFFF;
  --n03-light-grey: #D4D4D4;
  --n04-grey: #72796F;

  /* Base */
  --b01-home: #393029;
  --b02-background: #FCFDF6;
  --b03-accent-green: #E5EBE1;

  /* Primary */
  --p-green02: #1C6129;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--b02-background);
  color: var(--n01-black);
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,253,246,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(57,48,41,0.08);
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--n04-grey);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.18s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--b01-home);
  background: rgba(57,48,41,0.07);
}
.nav-cta {
  background: var(--b01-home);
  color: var(--b02-background) !important;
  margin-left: 4px;
}
.nav-cta:hover {
  background: var(--n01-black) !important;
}
/* ── HERO ── */
.hero {
  display: flex;
  align-items: center;
  padding: 40px 40px 40px;
  position: relative;
  overflow: hidden;
}
.brand-logo {
  display: block;
  /* width: 216px; */
  width: 350px;
  height: auto;
  margin-left: -12px;
  margin-bottom: 10px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(229,235,225,0.4) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(57,48,41,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  top: -100px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(229,235,225,0.35) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--n01-black);
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--n01-black);
}
.hero-text p {
  font-size: 1.3rem;
  color: var(--n04-grey);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 500;
}
.hero-text p strong {
  color: var(--b01-home);
  font-weight: 700;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  align-items: center;
  position: relative;
}
.hero-mascot {
  height: 100%;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
  display: block;

}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.store-badge {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}
.store-badge img {
  height: 44px;
  width: auto;
  display: block;
}
.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
.web-app-link {
  font-size: 0.85rem;
  color: var(--n04-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 600;
}
.web-app-link:hover { color: var(--b01-home); }




/* ── SECTION SHARED ── */
section { padding: 80px 40px; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  background: var(--b03-accent-green);
  color: var(--b01-home);
  /* font-size: 1rem; */
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 0px;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.15rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.008em;
  color: var(--b01-home);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--n04-grey);
  line-height: 1.7;
  font-weight: 500;
  max-width: 720px;
}

/* ── CREDIBILITY BRIDGE ── */
.credibility { background: var(--b01-home); }
.credibility .section-title { color: var(--b03-accent-green); }
.credibility .section-label { color: var(--b03-accent-green); background: none; padding: 0; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pain-card {
  background: var(--n01-black) url("images/Ponic%20-%20painPoint1.webp") center / cover no-repeat;
  border: 1px solid var(--b03-accent-green);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pain-card:nth-child(2) {
  background-image: url("images/Ponic%20-%20painPoint2.webp");
}
.pain-card:nth-child(3) {
  background-image: url("images/Ponic%20-%20painPoint3.webp");
}
.pain-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--n01-black);
  /* opacity: 0.72; */
  opacity: 0.5;
  z-index: 0;
}
.pain-card:hover {
  border-color: var(--b03-accent-green);
  transform: translateY(-4px);
}
.pain-card > * {
  position: relative;
  z-index: 1;
}
.pain-quote {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--n02-white);
  margin-bottom: 0;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(40, 37, 37, 0.75);
  text-align: center;
}
.pain-answer {
  font-size: 1rem;
  color: var(--b03-accent-green);
  line-height: 1.7;
  font-weight: 600;
  text-shadow: 0 2px 8px var(--n01-black);
}

/* ── SETUP SELECTOR ── */
.setup-section { background: var(--b03-accent-green); }
.setup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.setup-btn {
  background: var(--b02-background);
  border: 2px solid var(--n03-light-grey);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--n01-black);
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  min-width: 0;
}
.setup-btn:hover {
  border-color: var(--b01-home);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(57,48,41,0.15);
}
.setup-btn.active {
  background: var(--b02-background);
  border-color: var(--p-green02);
  color: var(--n01-black);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(28,97,41,0.22);
}
.setup-icon-wrap {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid var(--n03-light-grey);
  background: var(--n02-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.setup-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.setup-label {
  display: block;
  line-height: 1.25;
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.setup-result {
  background: var(--n02-white);
  border-radius: 24px;
  padding: 36px 40px;
  border: 1.5px solid var(--p-green02);
  /* box-shadow: 0 4px 12px rgba(28,97,41,0.2); */
  display: none;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 4px 24px rgba(57,48,41,0.08);
}
.setup-result.visible { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.setup-result h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: -0.006em;
  color: var(--b01-home);
  margin-bottom: 10px;
}
.setup-result-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.setup-result-head {
  display: block;
  margin-bottom: 12px;
}
.setup-result-head .setup-result-title {
  margin-bottom: 4px;
}
.setup-result p {
  font-size: 1rem;
  /* color: var(--n04-grey); */
  color: var(--b01-home);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}
.setup-result-badge {
  font-size: 0.8rem !important;
  color: var(--n04-grey) !important;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin: 0 0 6px;
  opacity: 0.9;
}

.setup-result-badge-support-text {
  font-size: 0.9rem !important;
  color: var(--n04-grey) !important;
  font-style: italic;
}

.setup-result-corner-img {
  float: right;
  height: 200px;
  width: auto;
  object-fit: contain;
  margin: 0 0 14px 26px;
}
.setup-result .download-buttons {
  clear: both;
}
.setup-result .email-note {
  font-size: 0.9rem;
  color: var(--n04-grey);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.inline-email {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.inline-email input {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 2px solid var(--n03-light-grey);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.inline-email input:focus { border-color: var(--b03-accent-green); }
.inline-email #starting-email-input {
  flex: 0 1 420px;
  max-width: 420px;
}
.inline-email button {
  background: var(--b01-home);
  color: var(--b02-background);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.inline-email button:hover {
  background: var(--n01-black);
  color: var(--b02-background);
}
.inline-email button:disabled,
.email-form button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.mc-honeypot {
  position: absolute;
  left: -5000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup-status {
  min-height: 1.2em;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--n04-grey);
}
.signup-status.is-pending {
  color: var(--n04-grey);
}
.signup-status.is-success {
  color: var(--b01-home);
}
.signup-status.is-error {
  color: var(--b04-accent-pink);
}
.signup-status-light {
  color: rgba(255,255,255,0.75);
}
.signup-status-light.is-pending {
  color: rgba(255,255,255,0.75);
}
.signup-status-light.is-success {
  color: var(--b03-accent-green);
}
.signup-status-light.is-error {
  color: var(--b04-accent-pink);
}

/* ── COMMUNITY ── */
.community-section {
  position: relative;
  overflow: hidden;
  background: var(--b01-home) url("images/Community_bg_multichars.webp") 2% 45% / 150% auto no-repeat;
  padding: 100px 40px;
  min-height: 420px;
}
.community-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(40, 37, 37, 0.82) 0%,
    rgba(40, 37, 37, 0.6) 30%,
     rgba(40, 37, 37, 0.5) 45%,
     rgba(40, 37, 37, 0.25) 55%,
    rgba(40, 37, 37, 0.25) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.community-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.community-content .section-title {
  font-family: 'Fraunces', serif;
  color: var(--n02-white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(40, 37, 37, 0.6);
}
.community-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--b03-accent-green);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 580px;
  text-shadow: 0 1px 6px rgba(40, 37, 37, 0.5);
}
.community-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 580px;
  text-shadow: 0 1px 4px rgba(40, 37, 37, 0.45);
}
.community-content p:last-child {
  margin-bottom: 0;
}
.community-content em {
  font-style: italic;
  color: var(--b03-accent-green);
  font-weight: 700;
}
.community-mobile-break {
  display: inline;
  margin-left: 0.25em;
}
.mobile-break {
  display: none;
}
.community-legend-item {
  display: block;
}
.community-legend-header {
  display: block;
  margin-bottom: 0.25rem;
}
.community-legend-detail {
  display: inline;
  margin-left: 0.35rem;
}

/* ── SCREENSHOTS ── */
.screenshots-section { background: var(--b02-background); }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  align-items: stretch;
}
.screenshot-card {
  background: var(--n02-white);
  border-radius: 28px;
  padding: 18px 18px 16px;
  box-shadow: 0 8px 40px rgba(57,48,41,0.08);
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(57,48,41,0.15);
}
.screenshot-img {
  width: 100%;
  border-radius: 16px;
  background: var(--b03-accent-green);
  display: block;
}
.screenshot-caption {
  font-size: 0.85rem;
  color: var(--n04-grey);
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  margin-top: auto;
  padding-top: 14px;
}

/* ── EMAIL CAPTURE ── */
.email-section {
  background: linear-gradient(135deg, var(--n01-black) 0%, var(--b01-home) 100%);
  text-align: center;
}
.email-section .section-label { color: var(--n02-white); background: none; padding: 0; }
.email-section .section-title { color: rgba(255,255,255,0.65); }

.email-section .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.email-form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 22px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--n01-black);
}
.email-form button {
  background: var(--b03-accent-green);
  color: var(--b01-home);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.email-form button:hover {
  background: var(--b02-background);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.email-note-small {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--b03-accent-green);
  text-align: center;
  padding: 120px 40px;
}
.final-cta .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.final-cta p {
  font-size: 1.1rem;
  color: var(--n04-grey);
  margin-bottom: 40px;
  font-weight: 500;
}
.final-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.final-web-link {
  font-size: 0.85rem;
  color: var(--n04-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--n01-black);
  padding: 28px 40px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.footer-sep {
  color: rgba(255,255,255,0.3);
}
.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin: 0;
}
.footer-disclaimer {
  max-width: 1100px;
  margin: 16px auto 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  text-align: center;
}
footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
footer a:hover { color: var(--b03-accent-green); }

/* ── LEGAL PAGES (privacy, terms of use) ── */
body.legal-page {
  background: var(--b02-background);
  color: var(--n01-black);
}
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.legal-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--b01-home);
  line-height: 1.2;
  letter-spacing: -0.008em;
  margin-bottom: 28px;
}
.legal-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--b01-home);
  line-height: 1.3;
  letter-spacing: -0.006em;
  margin: 40px 0 12px;
}
.legal-content h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--b01-home);
  margin: 24px 0 8px;
}
.legal-content p {
  font-size: 1rem;
  color: var(--n01-black);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 28px;
}
.legal-content li {
  font-size: 1rem;
  color: var(--n01-black);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-content strong {
  font-weight: 700;
  color: var(--b01-home);
}
.legal-content a {
  color: var(--p-green02);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .hero { padding: 48px 24px 44px; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { justify-content: center; justify-self: center; }
  .hero-mascot { max-width: 320px; }
  .brand-logo { width: 180px; margin-left: auto; margin-right: auto; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .download-buttons { justify-content: center; }
  .pain-grid { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .community-section {
    padding: 80px 24px 100px;
    background-position: 35% 40%;
    background-size: 250% auto;
  }
  .community-bg {
    background: rgba(40, 37, 37, 0.4);
  }
  .community-content .section-title,
  .community-lead,
  .community-content p {
    max-width: 600px;
  }
  .community-content p:last-child { margin-bottom: 0; }
  .community-legend-detail {
    display: block;
    margin-left: 0;
    padding-left: 0.5rem;
  }
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  nav { padding: 0 10px; gap: 2px; justify-content: flex-start; }
  .nav-link { font-size: 0.68rem; padding: 4px 8px; }
  .nav-cta { margin-left: auto; }
  section { padding: 64px 20px; }
  .community-section {
    padding: 64px 20px;
    background-position: 38% center;
    background-size: 280% auto;
    min-height: auto;
  }
  .community-bg {
    background: rgba(40, 37, 37, 0.4);
  }
  .community-lead {
    max-width: 60% !important;
  }
  .community-mobile-break {
    display: block;
    margin-left: 0;
  }
  .mobile-break {
    display: block;
  }
  .final-cta { padding: 80px 20px; }
  .final-cta .section-label {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }
  .final-buttons {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .setup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .setup-btn {
    padding: 10px;
    gap: 8px;
    min-height: 74px;
    border-radius: 12px;
  }
  .setup-icon-wrap {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .setup-label {
    font-size: 0.82rem;
    line-height: 1.2;
  }
  .screenshots-grid { grid-template-columns: 1fr; }
  .setup-result { padding: 28px 24px; }
  .setup-result h3 {
    font-size: 1.18rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .setup-result-head {
    margin-bottom: 8px;
  }
  .setup-result-head .setup-result-title {
    margin-bottom: 2px;
  }
  .setup-result-title span {
    white-space: nowrap;
  }
  .setup-result .download-buttons {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
  }
  .setup-result .store-badge img {
    height: 38px;
  }
  .setup-result-badge {
    font-size: 0.68rem !important;
    line-height: 1.2;
    white-space: nowrap;
  }
  .setup-result-corner-img {
    height: 110px;
    margin: 0 0 8px 8px;
  }
  .hero-mascot { max-width: 260px; }
  .hero-visual {
    justify-content: center;
    justify-self: center;
  }
  .footer-main {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .legal-content {
    padding: 40px 20px 60px;
  }
  .legal-content h2 {
    font-size: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMING SOON MODAL — REMOVE AT LAUNCH
   See docs/updates/2026-04-16-prelaunch-modifications.md for removal steps.
   ═══════════════════════════════════════════════════════════════════════════ */
.coming-soon-modal {
  max-width: 480px;
  width: calc(100% - 32px);
  /* Explicit centering: the global `* { margin: 0 }` reset kills the UA's
     default margin:auto on <dialog>, so we re-apply it alongside inset:0 to
     center the modal in the viewport's top layer. */
  inset: 0;
  margin: auto;
  border: none;
  border-radius: 24px;
  padding: 40px 36px 32px;
  background: var(--b02-background);
  box-shadow: 0 20px 60px rgba(40, 37, 37, 0.3);
}
html.coming-soon-open,
html.coming-soon-open body {
  overflow: hidden;
}
.coming-soon-modal::backdrop {
  background: rgba(40, 37, 37, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.coming-soon-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--n04-grey);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.15s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-close:hover {
  background: rgba(57, 48, 41, 0.08);
  color: var(--b01-home);
}
.coming-soon-state h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--n01-black);
  line-height: 1.15;
  margin-bottom: 12px;
}
.coming-soon-state p {
  font-size: 1rem;
  color: var(--n04-grey);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}
.coming-soon-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.coming-soon-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 12px 18px;
  border: 2px solid var(--n03-light-grey);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.coming-soon-form input[type="email"]:focus {
  border-color: var(--p-green02);
}
.coming-soon-form button {
  background: var(--b01-home);
  color: var(--b02-background);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: inherit;
}
.coming-soon-form button:hover:not(:disabled) {
  background: var(--n01-black);
}
.coming-soon-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.coming-soon-state[data-state="confirmation"] {
  text-align: center;
  padding: 20px 0;
}
.coming-soon-state[data-state="confirmation"] h2 {
  color: var(--p-green02);
  margin-bottom: 12px;
}
.coming-soon-state[data-state="confirmation"] p {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .coming-soon-modal {
    padding: 32px 24px 24px;
    border-radius: 20px;
  }
  .coming-soon-state h2 {
    font-size: 1.6rem;
  }
  .coming-soon-form {
    flex-direction: column;
  }
  .coming-soon-form input[type="email"],
  .coming-soon-form button {
    width: 100%;
    /* Reset flex so the desktop's flex-basis:200px doesn't become the height
       in column direction. */
    flex: 0 0 auto;
  }
}
/* ═══ END COMING SOON MODAL ════════════════════════════════════════════════ */
