/* Gecko — marketing site */

:root {
  --bg: #1a1a1c;
  --bg-elevated: #242426;
  --surface: #2a2a2c;
  --surface-elevated: #323234;
  --border: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --text-secondary: #9aa396;
  --text-muted: #5c6658;
  --accent: #72d13b;
  --accent-muted: #4fa82e;
  --accent-fill: rgba(114, 209, 59, 0.14);
  --accent-border: rgba(114, 209, 59, 0.32);
  --secondary: #e8943f;
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --max: 1120px;
  --nav-h: 72px;
  --font: 'Rajdhani', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, backdrop-filter 0.2s;
}

.nav.scrolled {
  background: rgba(26, 26, 28, 0.88);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.brand-nav {
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-nav img {
  width: 52px;
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #0a1208;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.25rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-fill);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-bullets svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  min-width: 168px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.store-badge:hover {
  transform: translateY(-1px);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge-text small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.store-badge-text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.store-badge-ios {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  color: #0a0a0a;
}

.store-badge-ios:hover {
  background: #f2f2f2;
}

.store-badge-ios svg {
  color: #0a0a0a;
}

.store-badge-ios .store-badge-text small {
  color: #555;
}

.store-badge-android {
  border-color: var(--accent-border);
  background: var(--accent-fill);
}

.store-badge-android:hover {
  border-color: var(--accent);
  background: rgba(114, 209, 59, 0.22);
}

.store-badge-android svg {
  color: var(--accent);
}

.store-badge-android .store-badge-text strong {
  color: var(--accent);
}

.store-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.store-launch {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 600;
}

/* Trust strip */
.trust-strip {
  padding: 0 0 64px;
  margin-top: -24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-item {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
}

.trust-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.trust-item strong {
  color: var(--text);
  font-weight: 700;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.trust-item p:first-of-type {
  margin-bottom: 4px;
}

/* Phone mock */
.phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone {
  width: min(100%, 330px);
  aspect-ratio: 9 / 19.5;
  background: var(--surface);
  border-radius: 36px;
  border: 3px solid #3a3a3c;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
  transform: rotateY(-6deg) rotateX(2deg);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-screen.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.phone-screen.empty span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.4;
}

.phone-screen.empty code {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-fill);
  padding: 4px 8px;
  border-radius: 6px;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.feature-icon.green {
  background: var(--accent-fill);
  color: var(--accent);
}

.feature-icon.amber {
  background: rgba(232, 148, 63, 0.12);
  color: var(--secondary);
}

.feature-icon.violet {
  background: rgba(139, 92, 246, 0.14);
  color: var(--violet);
}

.feature-icon.cyan {
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  text-align: center;
  padding: 24px 16px;
}

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a1208;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Screenshots */
.screenshots-bg {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.screenshot-slot {
  aspect-ratio: 9 / 19.5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.screenshot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.screenshot-slot.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
  border-style: dashed;
  border-color: rgba(114, 209, 59, 0.25);
  background: var(--accent-fill);
}

.screenshot-slot.empty::before {
  content: attr(data-label);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.screenshot-slot.empty::after {
  content: 'Drop image in assets/screenshots/';
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.screenshot-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.screenshot-item {
  display: flex;
  flex-direction: column;
}

.screenshots-note {
  text-align: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.screenshots-note code {
  color: var(--accent);
  font-size: 0.9rem;
}

/* Session types */
.session-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.session-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
}

.session-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.session-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.session-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-tag.regular {
  background: var(--accent-fill);
  color: var(--accent);
}

.session-tag.projecting {
  background: rgba(90, 158, 79, 0.15);
  color: #5a9e4f;
}

.session-tag.training {
  background: rgba(232, 148, 63, 0.12);
  color: var(--secondary);
}

/* Pricing */
.pricing-bg {
  background: linear-gradient(180deg, transparent 0%, rgba(114, 209, 59, 0.04) 50%, transparent 100%);
}

.pricing-trial {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-border);
  background: var(--accent-fill);
}

.pricing-trial-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(114, 209, 59, 0.2);
  color: var(--accent);
  font-size: 1.1rem;
}

.pricing-trial strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-trial p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(114, 209, 59, 0.08) 0%, var(--surface-elevated) 100%);
  box-shadow: 0 0 0 1px rgba(114, 209, 59, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-muted));
  color: #0a1208;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-amount {
  margin-bottom: 4px;
}

.pricing-amount span {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-amount small {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-equiv {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}

.pricing-btn:hover {
  border-color: var(--accent-border);
  background: var(--accent-fill);
}

.pricing-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-muted));
  border-color: transparent;
  color: #0a1208;
}

.pricing-btn.primary:hover {
  filter: brightness(1.05);
}

.pricing-note {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-elevated);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  max-height: 280px;
}

.faq-a-inner a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* CTA */
.cta-band {
  margin: 0 20px 80px;
  max-width: calc(var(--max) + 40px);
  margin-inline: auto;
  padding: 56px 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(114, 209, 59, 0.12), rgba(79, 168, 46, 0.06));
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 480px;
  margin-inline: auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-bullets,
  .store-row {
    justify-content: center;
  }

  .hero-bullets li {
    justify-content: center;
  }

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

  .phone-wrap {
    order: -1;
  }

  .phone {
    transform: none;
    width: 260px;
  }

  .features-grid,
  .steps,
  .session-types,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    order: -1;
  }

  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(26, 26, 28, 0.98);
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

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

  .nav-cta-desktop {
    display: none;
  }
}

@media (min-width: 901px) {
  .nav-cta-mobile {
    display: none;
  }
}

@media (max-width: 520px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }
}

/* Subpages — contact, legal */
.page-main {
  padding: calc(var(--nav-h) + 48px) 0 80px;
  min-height: calc(100vh - var(--nav-h));
}

.page-main.no-nav {
  padding-top: 48px;
  min-height: 100vh;
}

.page-narrow {
  max-width: 720px;
}

.page-header {
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 540px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  transition: border-color 0.15s;
}

a.contact-card:hover {
  border-color: var(--accent-border);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-fill);
  font-size: 1.2rem;
}

.contact-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-border);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.legal-prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}

.legal-prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

.legal-prose p {
  margin-bottom: 16px;
}

.legal-prose ul {
  margin: 0 0 16px 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-prose li {
  padding-left: 4px;
}

.legal-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-prose a:hover {
  color: var(--text);
}

.footer-bottom a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Auth pages (password reset) */
.auth-header {
  text-align: center;
}

.auth-logo {
  margin: 0 auto 20px;
  border-radius: 18px;
}

.auth-card {
  margin-top: 8px;
}

.auth-status {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.auth-status-success {
  background: var(--accent-fill);
  border-color: var(--accent-border);
}

.auth-status-error {
  background: rgba(248, 113, 113, 0.08);
  border-color: rgba(248, 113, 113, 0.28);
}

.auth-status-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: var(--surface-elevated);
}

.auth-status strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.auth-status p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.auth-error {
  color: #f87171;
  font-weight: 600;
  font-size: 0.95rem;
}

.auth-btn-link {
  display: block;
  text-align: center;
  margin-top: 8px;
}
