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

:root {
  --bg-0:    #f1f3f4;
  --bg-1:    #ffffff;
  --bg-2:    #ffffff;
  --bg-3:    #f1f3f4;
  --border:  #e8eaed;
  --border-2:#dadce0;
  --text:    #202124;
  --text-2:  #3c4043; /* body-copy gray; the lighter #5f6368 meta gray is applied inline where needed (e.g. .pp-app) */
  --text-3:  #9aa0a6;
  --teal:    #128f83; /* text/icon-safe darker teal for light backgrounds; decorative raw #2EC4B6 stays hardcoded in gradients/SVG */
  --orange:  #F4A142;
  --amber:   #b45309;
  --red:     #d93025;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 13px;
  background: var(--bg-0);
  color: var(--text);
  min-height: 100vh;
}

/* ── Sticky Header ───────────────────────────────────────────────────────────── */
.about-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.ah-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ah-logo { width: 28px; height: 28px; flex-shrink: 0; }

.ah-brand {
  font-size: 16px;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.ah-tesbo {
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}
.ah-locsy {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1877F2;
}

.ah-version {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 2px 6px;
}

.ah-close {
  width: 32px; height: 32px;
  border: 1px solid var(--border-2);
  background: transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.12s;
}
.ah-close:hover { background: rgba(217,48,37,0.1); border-color: var(--red); color: var(--red); }

/* ── Page wrapper ────────────────────────────────────────────────────────────── */
.page {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 52px 24px 44px;
  overflow: hidden;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,196,182,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,196,182,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Radial glow behind logo */
.hero-glow {
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 200px;
  background: radial-gradient(ellipse, rgba(46,196,182,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-wrap {
  position: relative;
  width: 88px; height: 88px;
  background: var(--bg-2);
  border: 2px solid var(--border-2);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow:
    0 0 0 6px rgba(46,196,182,0.06),
    0 12px 40px rgba(46,196,182,0.14);
}
.hero-logo-wrap svg { width: 56px; height: 56px; }

.hero-title {
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 8px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.ht-tesbo {
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}
.ht-locsy {
  font-weight: 900;
  color: #1877F2;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

/* ── FREE FOR EVERYONE pill (flat, no animation — matches the redesign's
   no-motion-on-marketing-chrome rule) ────────────────────────────────────── */
.free-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: rgba(19,115,51,0.07);
  border: 1px solid rgba(19,115,51,0.22);
  border-radius: 50px;
}
.free-banner svg { flex-shrink: 0; }

.free-text {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #137333;
}

/* ── Sections ────────────────────────────────────────────────────────────────── */
.about-section {
  padding: 28px 24px;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 14px;
}

.section-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-2);
}

/* ── Feature Grid ────────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.feature-item:hover {
  border-color: var(--border-2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.fi-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fi-icon svg { width: 17px; height: 17px; }
.fi-label { font-size: 11px; font-weight: 600; color: var(--text-2); text-align: center; }

.fi-icon.c-blue   { background: rgba(26,115,232,0.10); color: #1a73e8; }
.fi-icon.c-green  { background: rgba(19,115,51,0.10);  color: #137333; }
.fi-icon.c-purple { background: rgba(98,0,238,0.10);   color: #6200ee; }
.fi-icon.c-amber  { background: rgba(180,83,9,0.10);   color: #b45309; }
.fi-icon.c-teal   { background: rgba(18,143,131,0.10); color: #128f83; }
.fi-icon.c-red    { background: rgba(217,48,37,0.10);  color: #d93025; }
.fi-icon.c-gray   { background: rgba(95,99,104,0.10);  color: #5f6368; }
.fi-icon.c-gold   { background: rgba(255,193,7,0.18);  color: #8a6300; }

/* "Always Free" card gets a gold tint */
.fi-free {
  border-color: rgba(244,161,66,0.3);
  background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(244,161,66,0.06));
}
.fi-free .fi-label { color: #8a6300; }

/* ── Founder Card ────────────────────────────────────────────────────────────── */
.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.15s;
}
.founder-card:hover { border-color: var(--border-2); }

.founder-avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #2EC4B6, #F4A142);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(46,196,182,0.3);
}

.founder-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.founder-bio {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-2);
}

/* ── Contact Card ────────────────────────────────────────────────────────────── */
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-3);
  margin-bottom: 3px;
}

.contact-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.12s;
}
.contact-link:hover { color: #56d8cb; text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.about-footer {
  text-align: center;
  padding: 22px 24px 28px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.2px;
}

/* ── Scrollbar ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
