* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --teal: #1d9e75;
  --teal-light: #e1f5ee;
  --teal-dark: #0d6e4f;
  --blue: #1a7fc1;
  --navy: #0e1d3a;
  --text: #1c2a22;
  --muted: #4a6358;
  --hint: #8ba898;
  --bg: #fafcf8;
  --white: #ffffff;
  --border: #d4e8dc;
  --radius: 14px;
  --radius-sm: 8px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2.5rem;
  background: rgba(250, 252, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal-dark);
}
.nav-cta {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.nav-cta:hover {
  background: #1a2f5e;
}
.page {
  display: none;
  padding-top: 66px;
}
.page.active {
  display: block;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.hero-title {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.3rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #1a7fc1, #1d9e75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-primary:hover {
  background: #1a2f5e;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--teal-light);
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.trust-avatars {
  display: flex;
}
.trust-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  color: #fff;
  margin-left: -8px;
}
.trust-avatars span:first-child {
  margin-left: 0;
}
.trust-text {
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: 0 4px 24px rgba(13, 110, 79, 0.07);
}
.app-card-title {
  font-size: 0.72rem;
  color: var(--hint);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.8rem;
}
.progress-bar {
  height: 8px;
  border-radius: 100px;
  background: var(--teal-light);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a7fc1, #1d9e75);
  border-radius: 100px;
}
.member-chip {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
}
.stat-row {
  display: flex;
  gap: 1rem;
}
.stat-box {
  flex: 1;
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #fff;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.73rem;
  opacity: 0.85;
  margin-top: 0.3rem;
}
.features-strip {
  background: var(--navy);
  padding: 4.5rem 2.5rem;
  text-align: center;
}
.features-strip h2 {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.features-strip > p {
  color: #7a9ebd;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem;
  text-align: left;
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.feat-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feat-card p {
  font-size: 0.85rem;
  color: #7a9ebd;
  line-height: 1.6;
}
.how {
  padding: 5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.section-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Fraunces", serif;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--navy);
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  padding: 1.8rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
}
.step-num {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  color: var(--teal-light);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.proof {
  background: var(--teal-light);
  padding: 4rem 2.5rem;
  text-align: center;
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
}
.proof h2 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.proof-stat .big {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: var(--teal-dark);
  font-weight: 600;
  line-height: 1;
}
.proof-stat .lbl {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.about {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}
.mv-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.mv-card.dark {
  background: var(--navy);
  border-color: var(--navy);
}
.mv-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--teal-dark);
}
.mv-card.dark .mv-tag {
  color: #5ecfac;
}
.mv-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.mv-card.dark h3 {
  color: #fff;
}
.mv-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.mv-card.dark p {
  color: #7a9ebd;
}
.uvp-section {
  background: linear-gradient(135deg, #1a7fc1, #1d9e75);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 3rem 0;
  color: #fff;
}
.uvp-section h3 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.uvp-section p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.92;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.val-item {
  padding: 1.3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.val-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a7fc1, #1d9e75);
  margin-bottom: 0.8rem;
}
.val-item h4 {
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.val-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* WAITLIST */
.waitlist {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}
.wl-top {
  text-align: center;
  margin-bottom: 3rem;
}
.wl-top h1 {
  font-family: "Fraunces", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.wl-top h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #1a7fc1, #1d9e75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wl-top p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.wl-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row {
  margin-bottom: 1.3rem;
}
.form-row label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
}
.form-row input[type="tel"] {
  -moz-appearance: textfield;
}
.form-row textarea {
  resize: vertical;
  min-height: 90px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.submit-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.95rem;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background: #1a2f5e;
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--hint);
  margin-top: 1rem;
}
.success-msg {
  display: none;
  background: var(--teal-light);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.success-msg .checkmark {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.success-msg h3 {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}
.success-msg p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* CONTACT */
.contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.5;
}
.contact-item a:hover {
  color: var(--teal);
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form h3 {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.cf-success {
  display: none;
  background: var(--teal-light);
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--teal-dark);
  margin-top: 1rem;
}

/* ADMIN LOGIN */
.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 29, 58, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}
.login-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.login-box img {
  height: 48px;
  margin-bottom: 1rem;
}
.login-box h2 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.login-box p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.login-box input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  margin-bottom: 0.8rem;
}
.login-box input:focus {
  border-color: var(--teal);
}
.login-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: 100px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0.75rem;
}
.login-btn:hover {
  background: #1a2f5e;
}
.login-error {
  display: none;
  color: #c0392b;
  font-size: 0.83rem;
  margin-top: 0.5rem;
}
.login-back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.83rem;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.login-back:hover {
  color: var(--navy);
}

/* ADMIN */
.admin {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-header h1 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--navy);
}
.logout-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--muted);
}
.logout-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.stat-card .s-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.stat-card .s-num {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 600;
}
.toolbar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.toolbar input,
.toolbar select {
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
}
.toolbar input {
  flex: 1;
  min-width: 180px;
}
.tbl-btn {
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  background: #fff;
  color: var(--text);
}
.tbl-btn:hover {
  background: var(--teal-light);
}
.tbl-btn.danger {
  border-color: #e74c3c;
  color: #e74c3c;
}
.tbl-btn.danger:hover {
  background: #fdf0f0;
}
.db-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.db-table th {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1.5px solid var(--border);
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.db-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.db-table tr:hover td {
  background: var(--teal-light);
}
.city-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 500;
}
.del-btn {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.del-btn:hover {
  background: #fdf0f0;
}
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 3rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: #7a9ebd;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.78rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #7a9ebd;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col p {
  font-size: 0.88rem;
  color: #7a9ebd;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #5a7a8a;
}

@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-visual,
  .nav-links {
    display: none;
  }
  .steps,
  .mv-grid,
  .two-col,
  .values-grid,
  .stats-row,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 0.7rem 1.2rem;
  }
  .about,
  .waitlist,
  .admin,
  .contact {
    padding: 2rem 1.2rem;
  }
}
