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

:root {
  --green: #5aad3a;
  --green-dim: #3d8526;
  --green-faint: rgba(90, 173, 58, 0.08);
  --green-faint2: rgba(90, 173, 58, 0.15);
  --purple: #7b6ef6;
  --purple-faint: rgba(123, 110, 246, 0.1);
  --bg: #0d0f0c;
  --bg2: #131510;
  --bg4: #1f231b;
  --surface: #1a1d17;
  --surface2: #222620;
  --text: #e8ead4;
  --text2: #8a9070;
  --text3: #5a6050;
  --border: rgba(90, 140, 58, 0.12);
  --border2: rgba(90, 140, 58, 0.22);
  --border3: rgba(90, 140, 58, 0.35);
  --page-max: 1200px;
  --text-max: 900px;
  --hero-max: 1080px;
}

[data-theme="light"] {
  --bg: #dedad2;
  --bg2: #d4d0c8;
  --bg4: #c6c2ba;
  --surface: #e4e0d6;
  --surface2: #dcd8ce;
  --text: #1a1d12;
  --text2: #5c6248;
  --text3: #8a9070;
  --border: rgba(60, 70, 35, 0.12);
  --border2: rgba(60, 70, 35, 0.22);
  --border3: rgba(60, 70, 35, 0.38);
}

html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.4s, color 0.4s;
}

h1, h2, h3, h4 {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

#geo-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 15, 12, 0.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}

[data-theme="light"] .site-nav { background: rgba(222, 218, 210, 0.9); }

.nav-inner {
  width: min(100%, calc(var(--page-max) + 5rem));
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
}

.nav-logo-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.nav-logo-text {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  font-size: 15px;
  color: var(--text2);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-links a:hover { color: var(--text); background: var(--bg4); }
.nav-links a.active { color: var(--green); background: var(--green-faint); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-theme {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: transparent;
  cursor: pointer;
  color: var(--text2);
}

.btn-theme:hover { background: var(--bg4); color: var(--text); }

.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}

.btn-primary:hover { background: var(--green-dim); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text2);
  border-radius: 1px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  color: var(--text2);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.page {
  display: none;
  padding-top: 60px;
  min-height: calc(100vh - 70px);
  position: relative;
  z-index: 1;
}

.page.active { display: block; animation: fadeUp 0.3s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.hero {
  padding: 5.5rem 2.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero-inner {
  position: relative;
  width: min(100%, var(--hero-max));
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-faint);
  border: 1px solid var(--green-faint2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: blink 2.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.eyebrow-enterprise { background: var(--purple-faint); border-color: rgba(123, 110, 246, 0.2); color: var(--purple); }
.enterprise-dot { background: var(--purple); animation: none; }

h1.hero-title { font-size: clamp(30px, 5vw, 58px); line-height: 1.05; margin-bottom: 1.25rem; max-width: 880px; }
h1.hero-title { font-size: clamp(36px, 5.4vw, 68px); }
h1.hero-title .accent { color: var(--green); }
.hero-sub { font-size: 19px; color: var(--text2); max-width: 860px; margin-bottom: 2rem; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border3);
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 13px;
  cursor: pointer;
}

.btn-large { padding: 11px 28px; font-size: 14px; }
.launch-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--text2);
  margin-top: 1.75rem;
}

.launch-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2.5s infinite; }
.launch-chip strong { color: var(--green); }

section { padding: 4.5rem 2.5rem; position: relative; }
section.alt { background: var(--bg2); }
.section-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
h2.section-title { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 0.75rem; max-width: 950px; }
.section-sub { font-size: 18px; color: var(--text2); max-width: 980px; line-height: 1.75; }

/* Center page-level content by default for all pages */
.page .hero { text-align: center; }
.page .hero-inner { text-align: center; }
.page .hero-inner > * {
  margin-left: auto;
  margin-right: auto;
}
.page .hero-ctas { justify-content: center; }
.page .launch-chip { margin-left: auto; margin-right: auto; }
.page section {
  text-align: center;
  display: grid;
  justify-items: center;
}
.page .section-label,
.page .section-title,
.page .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: min(100%, var(--text-max));
}
.page .section-label,
.page .section-title,
.page .section-sub,
.page .hero-sub {
  max-width: var(--text-max);
}

/* Keep detailed content blocks readable */
.product-card,
.service-card,
.method-card,
.price-card,
.contact-form,
.contact-info,
.blog-item,
.blog-empty,
.footer-branding,
.footer-col,
.comparison-table th,
.comparison-table td {
  text-align: left;
}

.services-cta {
  text-align: left;
}

.home-centered { text-align: center; margin: 0 auto; max-width: 1200px; }
.home-centered .hero-ctas { justify-content: center; }
.home-centered .launch-chip { margin-left: auto; margin-right: auto; }
.home-path-section { text-align: center; }
.home-path-section .section-title,
.home-path-section .section-sub { margin-left: auto; margin-right: auto; }

.product-split,
.methods-grid,
.pricing-grid,
.comparison-wrap,
.lifecycle,
.services-grid,
.services-cta,
.contact-grid,
.blog-list,
.blog-empty {
  width: min(100%, var(--page-max));
  margin-left: auto;
  margin-right: auto;
}

.contact-grid.one-col {
  max-width: 560px;
}

.services-cta,
.comparison-wrap,
.blog-empty {
  justify-self: center;
}

.product-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2.5rem; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; position: relative; }
.product-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.gaia-card::after { background: var(--green); }
.go-card::after { background: var(--purple); }
.product-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; margin-bottom: 1rem; }
.tag-gaia { background: var(--green-faint); color: var(--green); border: 1px solid var(--green-faint2); }
.tag-go { background: var(--purple-faint); color: var(--purple); border: 1px solid rgba(123, 110, 246, 0.2); }
.feature-list { list-style: none; margin: 1rem 0 1.25rem; }
.feature-list li { font-size: 15px; color: var(--text2); padding: 7px 0; border-bottom: 1px solid var(--border); }
.link-arrow { font-size: 15px; color: var(--green); font-weight: 500; cursor: pointer; background: none; border: none; }

.methods-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 16px; margin-top: 2rem; }
.method-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.method-head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.75rem; }
.method-code { font-size: 10px; letter-spacing: 0.1em; color: var(--text2); text-transform: uppercase; }
.method-title { font-size: 24px; margin-bottom: 0.5rem; }
.method-desc { font-size: 13px; color: var(--text2); margin-bottom: 0.8rem; }
.method-desc { font-size: 15px; }
.method-status {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.status-live { background: rgba(22, 184, 120, 0.2); color: #7ff2cf; border: 1px solid rgba(22, 184, 120, 0.45); }
.status-coming { background: rgba(255, 187, 87, 0.17); color: #ffd790; border: 1px solid rgba(255, 187, 87, 0.35); }
.status-dev { background: rgba(148, 162, 184, 0.2); color: #dbe4f4; border: 1px solid rgba(148, 162, 184, 0.36); }
.method-action { margin-top: 1rem; }
.method-btn { width: 100%; border-radius: 8px; padding: 9px 10px; border: 1px solid var(--border2); background: transparent; color: var(--text); font-size: 12px; font-weight: 600; }
.method-btn.live { border: none; color: white; background: linear-gradient(90deg, #0a81c5 0%, #20b6a1 100%); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2.5rem; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.75rem; position: relative; }
.price-card.popular { border-color: var(--green); }
.popular-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 8px 8px; }
.tier-name { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text2); margin: 0.5rem 0 0.6rem; }
.price-amount { font-family: "Syne", sans-serif; font-size: 34px; font-weight: 700; }
.price-amount sub { font-size: 16px; font-weight: 400; color: var(--text2); font-family: "DM Sans", sans-serif; }
.price-desc { font-size: 15px; color: var(--text2); margin-top: 0.5rem; margin-bottom: 1.25rem; line-height: 1.6; }
.price-features { list-style: none; border-top: 1px solid var(--border); padding-top: 1.25rem; margin-bottom: 1.5rem; }
.price-features li { font-size: 14px; color: var(--text2); padding: 5px 0; }
.price-btn { width: 100%; padding: 11px; border-radius: 8px; font-size: 15px; font-weight: 500; cursor: pointer; }

.comparison-wrap {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.comparison-table th {
  font-family: "Syne", sans-serif;
  font-size: 20px;
}

.comparison-table td:nth-child(n + 2),
.comparison-table th:nth-child(n + 2) {
  text-align: center;
  white-space: nowrap;
}
.price-btn.outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.price-btn.filled { background: var(--green); color: #fff; border: none; }

.lifecycle { display: flex; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.lifecycle-step { flex: 1; padding: 1.25rem 0.75rem; border-right: 1px solid var(--border); text-align: center; background: var(--surface); }
.lifecycle-step:last-child { border-right: none; }
.lifecycle-num { font-size: 10px; font-weight: 600; color: var(--green); letter-spacing: 0.08em; margin-bottom: 4px; }
.lifecycle-name { font-size: 11px; color: var(--text2); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2.5rem; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; text-align: center; }
.service-card h3,
.service-card p {
  margin-left: auto;
  margin-right: auto;
}
.service-card p {
  max-width: 28ch;
}
.services-grid > .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 8px);
  max-width: none;
  justify-self: center;
}
.services-cta { margin-top: 2rem; background: var(--green-faint); border: 1px solid var(--green-faint2); border-radius: 12px; padding: 1.75rem; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.one-col { grid-template-columns: 1fr; max-width: 560px; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
.contact-form h3 { font-size: 24px; margin-bottom: 1.5rem; }
.contact-form textarea { min-height: 120px; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-size: 14px; color: var(--text2); margin-bottom: 5px; font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
}

.form-field textarea { height: 110px; resize: vertical; }
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.45;
  margin: 0.4rem 0 1rem;
  cursor: pointer;
}
.checkbox-field input {
  width: 17px;
  height: 17px;
  margin-top: 0.1rem;
  accent-color: var(--green);
  flex: 0 0 auto;
}
.form-submit { width: 100%; margin-top: 0.25rem; }
.form-feedback { margin-top: 0.75rem; min-height: 1.2rem; font-size: 12px; color: var(--text2); }
.form-feedback.error { color: #f49ea9; }
.form-feedback.success { color: #9ff0c7; }

.contact-info { padding-top: 0.25rem; }
.info-item { margin-bottom: 1rem; }
.info-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 3px; }
.info-value { font-size: 13px; color: var(--text2); }
.info-value a { color: var(--green); text-decoration: none; }

.blog-controls {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 1fr) minmax(220px, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: end;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.blog-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)), var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem;
  overflow: hidden;
  display: grid;
  gap: 0.8rem;
}
.blog-cover { width: 100%; height: 180px; object-fit: cover; border-radius: 9px; border: 1px solid var(--border); }
.blog-content { text-align: left; }
.blog-item h3 { font-size: 18px; line-height: 1.25; margin-bottom: 0.35rem; }
.blog-item .blog-meta { font-size: 11px; color: var(--text2); margin-bottom: 0.55rem; text-transform: uppercase; letter-spacing: 0.08em; }
.blog-item p { color: var(--text2); font-size: 14px; line-height: 1.65; }
.blog-empty { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
.blog-tag { background: var(--green-faint); border: 1px solid var(--green-faint2); color: var(--green); border-radius: 999px; padding: 0.24rem 0.58rem; font-size: 11px; }
.blog-item-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.9rem; }
.blog-read-link,
.blog-action-link { color: var(--green); text-decoration: none; font-size: 14px; font-weight: 600; cursor: pointer; }
.blog-pagination {
  width: min(100%, var(--page-max));
  margin: 1.4rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.blog-page-btn {
  min-width: 42px;
  height: 40px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.blog-page-btn:hover:not(:disabled) {
  background: var(--bg4);
  border-color: var(--border3);
}
.blog-page-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.blog-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.blog-page-nav {
  min-width: 92px;
}
.blog-article-shell { width: min(100%, 900px); margin: 0 auto; display: grid; gap: 1rem; }
.blog-back-btn { justify-self: start; }
.blog-article { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.25rem; }
.blog-article-cover { width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); margin-bottom: 1rem; }
.blog-article-excerpt { font-size: 18px; line-height: 1.7; color: var(--text); margin-bottom: 1rem; }
.blog-article-body { color: var(--text2); line-height: 1.85; }
.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 { color: var(--text); margin: 1.3rem 0 0.7rem; }
.blog-article-body p,
.blog-article-body ul,
.blog-article-body ol,
.blog-article-body blockquote { margin-bottom: 1rem; }
.blog-article-body blockquote { border-left: 3px solid var(--green); padding-left: 1rem; color: var(--text); }

.auth-hero {
  padding-bottom: 2.6rem;
}

.auth-shell,
.dashboard-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.auth-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.single-panel-shell {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.single-auth-shell {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-panel,
.stack-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.auth-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
}

.auth-panel h3,
.stack-panel h3,
.blog-editor-card h3 {
  font-size: 24px;
  margin-bottom: 0.4rem;
}

.auth-copy {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}

.auth-card-form {
  padding: 0;
  background: transparent;
  border: none;
}

.google-slot {
  margin-top: 0.9rem;
  min-height: 40px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
}

.meta-grid .full {
  grid-column: 1 / -1;
}

.dashboard-shell {
  display: grid;
  gap: 1rem;
}

.superadmin-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  align-items: start;
}

.blog-editor-card {
  display: grid;
  gap: 1rem;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.editor-toolbar button {
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.editor-toolbar button:hover {
  background: var(--bg4);
}

.rich-editor {
  min-height: 260px;
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 1rem;
  background: var(--bg);
  color: var(--text);
  text-align: left;
  line-height: 1.8;
}

.rich-editor:focus {
  outline: 1px solid var(--green);
  border-color: var(--green);
}

.upload-preview {
  min-height: 1px;
}

.upload-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.invite-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.invite-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: var(--bg);
}

.invite-item strong,
.app-link-output strong {
  display: block;
  margin-bottom: 0.3rem;
}

.invite-item span,
.app-link-output span {
  display: block;
  color: var(--text2);
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}

.app-link-output {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: var(--bg);
  min-height: 1px;
}

.blog-manager-card {
  margin-top: 1rem;
}

.blog-manager-list {
  display: grid;
  gap: 0.85rem;
}

.blog-manager-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: var(--bg);
  display: grid;
  gap: 0.5rem;
}

.blog-manager-item h4 {
  font-size: 18px;
  margin: 0;
}

.blog-manager-item p {
  color: var(--text2);
  margin: 0;
}

.blog-manager-meta {
  font-size: 12px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.btn-small {
  padding: 0.55rem 0.9rem;
  font-size: 13px;
}

.cta-band {
  padding: 4rem 2.5rem;
  text-align: center;
  display: grid;
  justify-items: center;
}
.cta-band > * {
  width: min(100%, var(--text-max));
  margin-left: auto;
  margin-right: auto;
}
.cta-band .hero-ctas {
  width: auto;
  justify-content: center;
}
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); color: #fff; margin-bottom: 0.75rem; }
.cta-band p { font-size: 15px; color: rgba(255, 255, 255, 0.72); margin-bottom: 2rem; }
.btn-white { background: #fff; border: none; border-radius: 8px; padding: 11px 26px; font-size: 14px; cursor: pointer; }
.btn-white-outline { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 8px; padding: 11px 26px; font-size: 14px; cursor: pointer; }
.enterprise-btn { background: var(--purple); }

.site-footer {
  background:
    linear-gradient(180deg, rgba(90, 173, 58, 0.06), rgba(90, 173, 58, 0)) ,
    var(--bg2);
  border-top: 1px solid var(--border);
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.footer-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 2rem 0 0.85rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(0, 1.8fr);
  gap: 1.75rem;
  align-items: start;
}

.footer-branding {
  padding-right: 1rem;
  max-width: 380px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.footer-brand span {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.footer-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.footer-branding p {
  color: var(--text2);
  font-size: 14px;
  max-width: 380px;
  margin-bottom: 0;
}

.footer-email {
  display: inline-block;
  color: var(--green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  word-break: break-word;
}

.footer-email:hover,
.footer-col a:hover {
  color: var(--text);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 1.4rem;
  padding: 0.4rem 0 0;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 0.45rem;
}

.footer-col a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 1.2rem;
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text3);
  font-size: 12px;
  flex-wrap: wrap;
}

.legal-wrap {
  width: min(100%, 860px);
  display: grid;
  gap: 1rem;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
}

.legal-card h3 {
  font-size: 22px;
  margin-bottom: 0.65rem;
}

.legal-card p {
  color: var(--text2);
}

.legal-card a {
  color: var(--green);
  text-decoration: none;
}

@media (max-width: 900px) {
  .blog-controls { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-text { display: none; }
  .nav-inner { padding: 0 1.5rem; }
  section, .hero, .cta-band, .site-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .product-split, .services-grid, .contact-grid, .methods-grid, .auth-shell, .single-auth-shell, .superadmin-grid, .meta-grid { grid-template-columns: 1fr; }
  .lifecycle { flex-wrap: wrap; }
  .lifecycle-step { flex-basis: 33%; border-bottom: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, minmax(120px, 1fr)); }
  .footer-branding { padding-right: 0; }
  .footer-bottom { flex-direction: column; }
  .services-cta { flex-direction: column; text-align: center; }
  .dashboard-head { flex-direction: column; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-nav { height: 56px; }
  .page { padding-top: 56px; }
  .hero { padding: 4.5rem 1.25rem 3.5rem; }
  section, .cta-band, .site-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  h1.hero-title { font-size: clamp(28px, 9vw, 44px); }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas > * { width: 100%; }
  .btn-large { width: 100%; }
  .launch-chip { width: fit-content; max-width: 100%; flex-wrap: wrap; justify-content: center; }
  .product-card, .service-card, .method-card, .price-card, .contact-form, .blog-item { padding: 1.5rem; }
  .services-grid > .service-card:last-child:nth-child(odd) { width: 100%; }
  .lifecycle-step { flex-basis: 50%; }
  .comparison-table { min-width: 620px; }
  .blog-cover { height: 190px; }
  .mobile-menu { padding: 1rem 1.25rem 1.25rem; }
}

@media (max-width: 560px) {
  .footer-columns { grid-template-columns: 1fr; }
  .hero-inner,
  .product-split,
  .methods-grid,
  .pricing-grid,
  .comparison-wrap,
  .lifecycle,
  .services-grid,
  .services-cta,
  .contact-grid,
  .blog-list,
  .blog-empty,
  .auth-shell,
  .dashboard-shell {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .nav-inner { padding: 0 1rem; }
  .hero { padding: 4rem 1rem 3rem; }
  .section-label { font-size: 11px; }
  h2.section-title { font-size: clamp(24px, 7vw, 34px); }
  .section-sub { font-size: 15px; }
  .btn-outline, .btn-primary, .btn-white, .btn-white-outline { width: 100%; }
  .blog-article { padding: 1rem; }
  .blog-article-cover { max-height: 280px; }
}
