/*
 * PinaParadise — Shared Styles
 * v1.1.0 — March 2026
 *
 * Single source of truth for all pages.
 * Page-specific styles remain in each HTML file's <style> block.
 *
 * Colour names reference Philippine culture:
 *   Dagat (ocean), Sampaguita (national flower), Tala (star),
 *   Halaman (garden), Perlas (pearl), Noche (night)
 */


/* ============================================================
   VARIABLES
   ============================================================ */

:root {
  /* Primary */
  --dagat: #317AF0;
  --dagat-deep: #0A3171;
  --dagat-light: #8EB6F6;
  --sampaguita: #D96B6B;
  --sampaguita-deep: #922626;
  --sampaguita-light: #E28D8D;
  --tala: #E2AD3E;
  --tala-deep: #7C5B13;
  --tala-light: #EED295;
  --halaman: #57A773;
  --halaman-deep: #2A5038;
  --halaman-light: #94C7A7;

  /* Neutrals */
  --perlas: #FAF9F6;
  --shell: #F3F0EC;
  --sand: #E5E1DB;
  --driftwood: #A09B95;
  --stone: #6B6660;
  --noche: #2B2D3A;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  background: var(--perlas);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--perlas);
  color: var(--noche);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle texture overlay — present on every page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

a { color: inherit; }
img { max-width: 100%; display: block; }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.text-dagat { color: var(--dagat); }
.text-sampaguita { color: var(--sampaguita); }
.text-tala { color: var(--tala); }
.text-halaman { color: var(--halaman); }
.hl-rose { color: var(--sampaguita); font-weight: 600; }
.hl-blue { color: var(--dagat); font-weight: 600; }


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* Scroll reveal — requires js/reveal.js */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   NAVIGATION — Fixed, all pages
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: var(--perlas);
  border-bottom: 1px solid rgba(229, 225, 219, 0.4);
}

.logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo-pina { color: var(--dagat); }
.logo-paradise { color: var(--sampaguita); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a.nav-link-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a.nav-link-text:hover {
  color: var(--dagat);
}

.nav-drawer-header { display: none; }

.nav-cta {
  background: var(--dagat) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-decoration: none;
  transition: all 0.2s !important;
  box-shadow: 0 2px 10px rgba(49, 122, 240, 0.2);
}
.nav-cta:hover {
  background: var(--dagat-deep) !important;
  transform: translateY(-1px);
}

/* Hamburger — hidden on desktop, shown on mobile */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 103;
  border-radius: 10px;
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(49, 122, 240, 0.06);
}
.hamburger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--noche);
  border-radius: 2px;
  position: absolute;
  left: 10px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger .bar:nth-child(1) { top: 12px; }
.hamburger .bar:nth-child(2) { top: 19px; width: 14px; }
.hamburger .bar:nth-child(3) { top: 26px; }
.hamburger.open .bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.hamburger.open .bar:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(43, 45, 58, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--dagat);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(49, 122, 240, 0.25);
}
.btn-primary:hover {
  background: var(--dagat-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49, 122, 240, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: transparent;
  color: var(--dagat);
  border: 1.5px solid rgba(49, 122, 240, 0.25);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-ghost:hover {
  background: rgba(49, 122, 240, 0.05);
  border-color: var(--dagat);
  transform: translateY(-2px);
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--sampaguita);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 18px rgba(217, 107, 107, 0.25);
}
.btn-warm:hover {
  background: var(--sampaguita-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 107, 107, 0.35);
}

.btn-small {
  padding: 10px 20px;
  font-size: 13px;
}


/* ============================================================
   SECTION LAYOUT — Reused across all content pages
   ============================================================ */

section {
  padding: 88px 24px;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dagat);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

/* Interior page wrapper — contact, privacy, terms, blog, join */
.page-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 100px 32px 80px; /* 100px top to clear fixed nav */
}

/* Narrower wrapper for reading content — blog posts, legal pages */
.page-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}


/* ============================================================
   FORMS — Contact, Join, Founding Member
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--noche);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--noche);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--dagat);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--driftwood);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-error {
  font-size: 12px;
  color: var(--sampaguita);
  margin-top: 4px;
}

.form-note {
  font-size: 12px;
  color: var(--driftwood);
  line-height: 1.5;
}

.form-submit {
  padding: 14px 32px;
  background: var(--dagat);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 3px 14px rgba(49, 122, 240, 0.2);
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--dagat-deep);
  transform: translateY(-1px);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}


/* ============================================================
   COUNTDOWN COMPONENT
   ============================================================ */

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--noche);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: center;
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--driftwood);
}

.countdown-sep {
  font-size: 20px;
  font-weight: 700;
  color: var(--sand);
  margin-top: -12px;
}

/* Compact variant for hero badge */
.countdown-compact {
  gap: 6px;
  font-size: 13px;
}
.countdown-compact .countdown-number {
  font-size: 14px;
  font-weight: 700;
  min-width: auto;
}
.countdown-compact .countdown-label {
  font-size: 9px;
}
.countdown-compact .countdown-sep {
  font-size: 14px;
  margin-top: -8px;
}

/* Countdown complete state */
.countdown-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--halaman);
  font-weight: 600;
  font-size: 14px;
}

.countdown-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--halaman);
  animation: pulse-soft 2s ease-in-out infinite;
}


/* ============================================================
   BLOG — Listing page + Post layout
   ============================================================ */

/* Blog listing */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
}

.blog-card {
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--sand);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(43, 45, 58, 0.07);
}

.blog-card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--noche);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--driftwood);
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

/* Blog post */
.post-header {
  margin-bottom: 40px;
}

.post-title {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--noche);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.post-meta {
  font-size: 13px;
  color: var(--driftwood);
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--sand);
}

.post-body {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.85;
}

.post-body h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--noche);
  margin: 40px 0 16px;
}

.post-body h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--noche);
  margin: 32px 0 12px;
}

.post-body p {
  margin-bottom: 20px;
}

.post-body strong {
  color: var(--noche);
  font-weight: 600;
}

.post-body blockquote {
  border-left: 3px solid var(--dagat);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(49, 122, 240, 0.03);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--noche);
}

.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.post-body li {
  margin-bottom: 8px;
}

.post-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--shell);
  border-radius: 16px;
  text-align: center;
}

.post-cta h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.post-cta p {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 20px;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dagat);
  text-decoration: none;
  margin-top: 32px;
  transition: gap 0.2s;
}
.post-back:hover {
  gap: 10px;
}


/* ============================================================
   JOIN PAGE — Multi-step signup
   ============================================================ */

.join-container {
  max-width: 480px;
  margin: 0 auto;
  padding: 120px 24px 80px; /* nav clearance */
}

.join-header {
  text-align: center;
  margin-bottom: 36px;
}

.join-header h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.join-header p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.6;
}

/* Step indicator */
.join-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.join-step {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--sand);
  transition: background 0.3s;
}
.join-step.active {
  background: var(--dagat);
}
.join-step.done {
  background: var(--halaman);
}

/* Step panels */
.join-panel {
  display: none;
}
.join-panel.active {
  display: block;
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Photo upload area */
.photo-upload {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  cursor: pointer;
  transition: all 0.2s;
  overflow: hidden;
  position: relative;
}
.photo-upload:hover {
  border-color: var(--dagat);
  background: rgba(49, 122, 240, 0.03);
}
.photo-upload img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-upload-icon {
  color: var(--driftwood);
  font-size: 28px;
}

/* Confirmation state */
.join-confirmation {
  text-align: center;
  padding: 40px 0;
}

.join-confirmation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(87, 167, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.join-confirmation h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.join-confirmation p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 12px;
}


/* ============================================================
   FOUNDING MEMBER PAGE
   ============================================================ */

.founding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.founding-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--sand);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.founding-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(43, 45, 58, 0.07);
}

.founding-card-popular {
  border-color: var(--dagat);
  box-shadow: 0 4px 20px rgba(49, 122, 240, 0.12);
}
.founding-card-popular::before {
  content: 'Best Value';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dagat);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.founding-card-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--driftwood);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.founding-card-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--noche);
  margin-bottom: 4px;
}

.founding-card-access {
  font-size: 14px;
  font-weight: 600;
  color: var(--dagat);
  margin-bottom: 6px;
}

.founding-card-compare {
  font-size: 12px;
  color: var(--driftwood);
  margin-bottom: 20px;
}

.founding-counter {
  text-align: center;
  margin: 32px 0;
  font-size: 15px;
  color: var(--stone);
}

.founding-counter strong {
  color: var(--noche);
  font-weight: 700;
}


/* ============================================================
   GATED / COMING SOON OVERLAY
   ============================================================ */

.gated-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.gated-page h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}

.gated-page p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 20px;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  padding: 40px 24px;
  border-top: 1px solid var(--sand);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-left .logo {
  font-size: 18px;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--driftwood);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--dagat);
}

.footer-copy {
  font-size: 11px;
  color: var(--driftwood);
}

.footer-version {
  font-size: 11px;
  color: var(--driftwood);
  opacity: 0.5;
  margin-top: 8px;
}


/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */

@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--perlas);
    padding: 0;
    box-shadow: -12px 0 48px rgba(43, 45, 58, 0.12);
    z-index: 102;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateX(0);
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--sand);
    margin-bottom: 8px;
  }
  .nav-drawer-header .logo {
    font-size: 19px;
  }

  .nav-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--shell);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--stone);
  }
  .nav-drawer-close:hover {
    background: var(--sand);
    color: var(--noche);
  }
  .nav-drawer-close svg {
    width: 18px;
    height: 18px;
  }

  .nav-links a.nav-link-text {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: var(--stone);
    border: none;
    position: relative;
    transition: all 0.2s;
  }
  .nav-links a.nav-link-text:hover,
  .nav-links a.nav-link-text:active {
    color: var(--dagat);
    background: rgba(49, 122, 240, 0.04);
  }
  .nav-links a.nav-link-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 24px;
    background: var(--dagat);
    border-radius: 0 3px 3px 0;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links a.nav-link-text:hover::before,
  .nav-links a.nav-link-text:active::before {
    transform: translateY(-50%) scaleY(1);
  }

  .nav-cta {
    margin: 16px 24px 0 !important;
    text-align: center;
    display: block !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  section {
    padding: 64px 20px;
  }

  .page-inner {
    padding: 80px 20px 60px;
  }

  .page-narrow {
    padding: 80px 20px 60px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

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

  .countdown {
    gap: 10px;
  }

  .countdown-number {
    font-size: 20px;
  }

  .join-container {
    padding: 100px 20px 60px;
  }
}

@media (max-width: 480px) {
  .countdown-compact {
    gap: 4px;
  }
  .countdown-compact .countdown-number {
    font-size: 13px;
  }
  .countdown-compact .countdown-sep {
    font-size: 12px;
  }
}
