/* Poolzy — shared site theme (all pages) */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
  --primary: #0F7A3D;
  --primary-dark: #0A5A2C;
  --primary-light: #D1FAE5;
  --primary-soft: #F4FCF7;
  --hero-mid: #22A55D;
  --accent: #2DBE60;
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --text: #101828;
  --muted: #667085;
  --border: #E7EDF2;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 18px 48px rgba(15, 122, 61, 0.10);
  --shadow-soft: 0 8px 24px rgba(16, 24, 40, 0.06);
  --max: 1080px;
  --content: 720px;
  --space-section-y: 56px;
  --space-section-y-lg: 72px;
  --space-page-bottom: 64px;
  --space-card: 24px;
  --space-stack: 16px;
  --space-stack-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.65;
  color: var(--text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
}

body > * {
  position: relative;
  z-index: 1;
}

.site-header,
.site-footer {
  z-index: 100;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  width: 100%;
  z-index: 2;
  min-height: 52px;
  overflow: visible;
}

.brand {
  min-width: 0;
  flex-shrink: 0;
  order: 1;
}

.nav-toggle {
  order: 3;
  flex-shrink: 0;
}

.site-header,
.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  overflow: visible;
}

.site-header .wrap.site-header-bar {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  display: block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.brand,
.site-top a:first-child {
  display: inline-flex;
  align-items: center;
}

.brand img,
.site-top img {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.nav,
.site-top nav {
  display: flex;
  align-items: center;
  gap: 4px 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: 0;
  flex: 0 1 auto;
  max-width: 100%;
  overflow: visible;
}

.site-header-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 6px;
  margin-left: auto;
  flex: 0 1 auto;
  min-width: 0;
}

.site-nav-home,
.nav a:not(.btn),
.site-top nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav-home:hover,
.nav a:not(.btn):hover,
.site-top nav a:hover {
  color: var(--text);
  background: transparent;
  text-decoration: none;
}

.site-nav-home[aria-current="page"],
.nav a[aria-current="page"],
.site-top nav a[aria-current="page"] {
  color: var(--text);
  background: transparent;
  font-weight: 600;
}

@media (min-width: 901px) {
  .site-header-nav {
    display: flex;
    order: 2;
    margin-left: auto;
    align-items: center;
    gap: 4px 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav,
  .site-top nav {
    display: flex !important;
    position: static;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-left: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    flex: 0 1 auto;
    justify-content: flex-end;
  }

  .nav a:not(.btn),
  .site-top nav a,
  .site-nav-home {
    font-size: 0.8rem;
    padding: 8px 10px;
  }

  .nav-toggle {
    display: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .nav a:not(.btn),
  .site-top nav a,
  .site-nav-home {
    font-size: 0.78rem;
    padding: 8px 8px;
  }

  .brand img,
  .site-top img {
    height: 34px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(15, 122, 61, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn-outline {
  background: white;
  color: var(--primary) !important;
  border: 1.5px solid rgba(15, 122, 61, 0.28);
}

.btn-outline:hover {
  background: var(--primary-soft);
  text-decoration: none !important;
}

/* ── Layout system (shared across marketing pages) ── */
.site-hero,
.page-hero,
.why-hero,
.about-hero {
  padding: var(--space-section-y-lg) 0 var(--space-section-y);
  text-align: center;
}

.site-hero__inner,
.page-hero-inner,
.about-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.content-wrap {
  max-width: var(--content);
  margin: 0 auto;
}

.site-section,
.why-section,
.about-section {
  padding: var(--space-section-y) 0;
}

.site-section--alt,
.why-section-alt {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-section--soft,
.about-section-alt {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-section--brand {
  background: linear-gradient(160deg, #06361b 0%, #0a5a2c 42%, #0f7a3d 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section-head {
  max-width: var(--content);
  margin-bottom: var(--space-stack-lg);
}

.section-head.center,
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head--narrow {
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 58ch;
}

.section-head.center p,
.section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.section-head .page-eyebrow {
  margin-bottom: var(--space-stack);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-stack);
}

.cta-band,
.why-cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band h2,
.why-cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-band > p,
.why-cta-band p {
  opacity: 0.92;
  max-width: 48ch;
  margin: 0 auto 24px;
  line-height: 1.65;
  font-size: 0.98rem;
}

.cta-actions,
.why-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-band .btn-primary,
.why-cta-band .btn-primary {
  background: white;
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cta-band .btn-primary:hover,
.why-cta-band .btn-primary:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none !important;
}

.cta-band .btn-ghost,
.why-cta-band .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.cta-band .btn-ghost:hover,
.why-cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
}

.cta-band .btn-outline,
.why-cta-band .btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.cta-band .btn-outline:hover,
.why-cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.24);
  text-decoration: none !important;
}

/* ── Pre-footer CTA ── */
.pre-footer-cta {
  padding: var(--space-section-y) 0 calc(var(--space-section-y-lg) - 8px);
  background: #ffffff;
}

.pre-footer-cta .cta-band {
  margin: 0;
}

.cta-band--compact {
  padding: 32px 28px;
}

.cta-band--compact h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin-bottom: 8px;
}

.cta-band--compact > p {
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.pre-footer-trust {
  padding: var(--space-section-y) 0;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.pre-footer-trust-line {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pre-footer-trust-line a {
  font-weight: 600;
}

/* ── Subpage shell ── */

.page-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.page-hero .meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.page {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 20px var(--space-page-bottom);
}

.page h2 {
  font-size: 1.12rem;
  margin-top: var(--space-stack-lg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.page h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
  color: var(--text);
}

.page p,
.page li,
.page td,
.page th {
  font-size: 0.95rem;
  color: #334155;
}

.page ul,
.page ol {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.page li { margin-bottom: 0.35rem; }

.meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.brand-line {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}

.brand-line strong {
  color: var(--primary-dark);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.poolzy-brand-line,
.footer-tagline em {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.eyebrow .poolzy-brand-line,
.eyebrow em.poolzy-brand-line {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.cta-band h2 .poolzy-brand-line,
.cta-band h2 em,
.why-cta-band h2 .poolzy-brand-line,
.why-cta-band h2 em {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.brand-line .poolzy-brand-line {
  color: var(--primary-dark);
}

.page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-card) calc(var(--space-card) - 4px);
  box-shadow: var(--shadow-soft);
}

.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: 0.9rem;
}

.page th,
.page td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.page th {
  background: var(--primary-soft);
  color: var(--text);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0.75rem 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.table-scroll table {
  margin: 0;
  min-width: 520px;
}

/* ── Footer ── */
.site-footer,
.page-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 52px 20px 40px;
  min-height: 440px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(160deg, #06361b 0%, #0a5a2c 50%, #0f7a3d 100%);
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-wada-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("/assets/footer-shaniwar-wada-filled.png") center bottom / cover no-repeat;
  background-position: center bottom;
  opacity: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 28%, #000 52%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.35) 28%, #000 52%);
}

.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #0a5a2c 0%,
    #0a5a2c 8%,
    rgba(6, 54, 27, 0.96) 22%,
    rgba(6, 54, 27, 0.88) 40%,
    rgba(6, 54, 27, 0.72) 62%,
    rgba(6, 54, 27, 0.55) 100%
  );
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.site-footer .wrap {
  padding: 0;
  width: min(100%, var(--max));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 24px 24px;
  margin-bottom: 20px;
}

.footer-brand-col {
  padding-right: 12px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.footer-grid h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(2px);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  text-decoration: none;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.footer-social-link--placeholder {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.footer-tagline {
  margin: 0;
  max-width: 28ch;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.footer-tagline em,
.footer-tagline .poolzy-brand-line {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  color: inherit;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  padding: 18px 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.footer-made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.footer-heart {
  color: #ff8fab;
  font-size: 0.95rem;
  line-height: 1;
  animation: footer-heart-pulse 2.4s ease-in-out infinite;
}

@keyframes footer-heart-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}

.page-footer {
  max-width: var(--content);
  margin: 0 auto;
  text-align: center;
  font-size: 0.84rem;
  color: var(--muted);
  padding-bottom: 40px;
}

.page-footer .footer-grid {
  text-align: left;
  max-width: var(--max);
  margin: 0 auto 28px;
}

.site-section--soft .page {
  padding-top: 0;
}

@media (max-width: 640px) {
  .pre-footer-cta {
    padding: calc(var(--space-section-y) - 16px) 0 calc(var(--space-section-y) - 8px);
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .site-header,
  .site-top {
    padding: 12px 16px;
  }

  .site-header .wrap.site-header-bar,
  .site-header .wrap {
    width: 100%;
    max-width: var(--max);
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    flex-shrink: 0;
  }

  .site-header-nav {
    display: contents;
  }

  .brand {
    order: 1;
  }

  .site-nav-home {
    order: 2;
    margin-left: auto;
    margin-right: 4px;
  }

  .nav,
  .site-top nav {
    order: 4;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  body.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.38);
    z-index: 90;
  }

  .nav,
  .site-top nav {
    display: none;
    order: 4;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px 0 10px;
    background: white;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    z-index: 101;
    max-height: min(50dvh, 280px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.is-open,
  .site-top nav.is-open {
    display: flex;
  }

  .nav a:not(.btn),
  .site-top nav a {
    width: 100%;
    padding: 12px 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  .site-hero,
  .page-hero,
  .why-hero,
  .about-hero {
    padding: var(--space-section-y) 0 calc(var(--space-section-y) - 16px);
  }

  .page {
    padding: 0 16px calc(var(--space-page-bottom) - 16px);
  }

  .page-card {
    padding: calc(var(--space-card) - 2px) 18px;
  }

  .site-section,
  .why-section,
  .about-section {
    padding: calc(var(--space-section-y) - 16px) 0;
  }

  .cta-band,
  .why-cta-band {
    padding: 32px 22px;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }

  .site-footer {
    min-height: 480px;
    padding: 40px 16px 32px;
  }

  .footer-wada-bg {
    background-position: center bottom;
    background-size: cover;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .site-header .wrap.site-header-bar,
  .site-header .wrap {
    width: 100%;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img, .site-top img { height: 32px; }

  .site-footer {
    min-height: 520px;
    padding: 36px 12px 28px;
  }

  .footer-wada-bg {
    background-position: center bottom;
    background-size: 180% auto;
  }

  .footer-overlay {
    background: linear-gradient(
      180deg,
      #0a5a2c 0%,
      #0a5a2c 6%,
      rgba(6, 54, 27, 0.96) 20%,
      rgba(6, 54, 27, 0.88) 38%,
      rgba(6, 54, 27, 0.72) 58%,
      rgba(6, 54, 27, 0.5) 100%
    );
  }

  .page-hero h1 {
    font-size: 1.65rem;
  }

  .btn {
    min-height: 48px;
  }

  .hero-actions .btn,
  .cta-band .btn,
  .cta-actions .btn,
  .soon-banner-actions .btn {
    width: 100%;
  }

  .page-card .btn,
  .join-waitlist .join-cta {
    width: auto;
    min-width: min(100%, 280px);
  }
}

@supports (padding: env(safe-area-inset-bottom)) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .site-footer,
  .page-footer {
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}
