/* ============================================================
   RepGeo — Landing Page Styles (index.html)
   ============================================================ */

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: 96px 0 112px;
}

/* dot grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-faint) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

/* amber glow orb */
.hero-glow {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,216,103,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Left column ── */
.hero-text { max-width: 620px; }

.hero-beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-full);
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-text);
  margin-bottom: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.hero-beta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

.hero-headline {
  margin-bottom: 20px;
  line-height: 1;
}
.hero-headline .line1 {
  display: block;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--ink);
  line-height: 1;
}
.hero-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 8vw, 100px);
  color: var(--ink);
  line-height: 0.95;
  margin-top: -4px;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-full);
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.btn-demo:hover { border-color: var(--gray-dim); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.btn-demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2s infinite;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.hero-stat {
  padding: 0 24px;
  border-right: 1px solid var(--gray-line);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--gray-dim);
  line-height: 1.3;
}

/* ── Right column — mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.mockup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  width: 380px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.mockup-header {
  background: var(--ink);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mockup-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.mockup-logo-text .geo {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.mockup-search {
  padding: 10px 14px;
  border-bottom: 1px solid var(--paper-2);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
}
.mockup-search-input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  background: none;
  border: none;
  outline: none;
}
.mockup-kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--gray-dim);
}

.mockup-result {
  padding: 14px 14px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--paper-2);
}
.mockup-area-box {
  width: 56px;
  height: 56px;
  background: var(--ink);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}
.mockup-loc-city {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.mockup-loc-tz {
  font-size: 12px;
  color: var(--gray-dim);
}

.mockup-callwindow {
  margin: 0 14px;
  padding: 10px 12px;
  background: rgba(46,184,138,0.08);
  border: 1px solid rgba(46,184,138,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}
.mockup-callwindow-top {
  font-size: 12px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 2px;
}
.mockup-callwindow-sub {
  font-size: 12px;
  color: var(--gray-text);
}

.mockup-opener {
  padding: 12px 14px;
  border-top: 1px solid var(--paper-2);
}
.mockup-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-faint);
  margin-bottom: 6px;
}
.mockup-opener-text {
  font-size: 13px;
  color: var(--gray-text);
  font-style: italic;
  line-height: 1.5;
}

.mockup-actions {
  padding: 10px 14px 14px;
  display: flex;
  gap: 8px;
}
.mockup-btn-dark {
  flex: 1;
  padding: 9px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
}
.mockup-btn-outline {
  flex: 1;
  padding: 9px 14px;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
}

/* detection pill */
.detection-pill {
  position: absolute;
  bottom: -28px;
  left: -48px;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: rotate(-3deg);
  max-width: 240px;
}
.detection-pill-phone {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}
.detection-pill-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}
.detection-pill-sub {
  font-size: 11px;
  color: var(--gray-dim);
  line-height: 1.3;
}

/* ════════════════════════════════════════
   QUOTE BAR
   ════════════════════════════════════════ */
.quote-bar {
  background: var(--ink);
  padding: 48px 0;
}
.quote-bar-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  padding-left: 96px;
}
.quote-mark {
  position: absolute;
  left: 48px;
  top: -8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--amber);
  opacity: 0.7;
  user-select: none;
}
.quote-text {
  font-size: 19px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.55;
  margin-bottom: 16px;
}
.quote-attr {
  font-size: 13px;
  color: var(--gray-dim);
}
.quote-attr strong { color: var(--amber); font-weight: 600; }

/* ════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════ */
.problem-section {
  background: var(--paper);
  padding: 96px 0;
}
.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.problem-header {
  text-align: center;
  margin-bottom: 56px;
}
.problem-headline {
  margin-bottom: 16px;
  line-height: 1.1;
}
.problem-headline .line1 {
  display: block;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
}
.problem-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
}
.problem-sub {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.problem-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.problem-card-light {
  background: var(--white);
  border: 1px solid var(--gray-line);
}
.problem-card-dark {
  background: var(--ink);
  color: var(--paper);
}
.problem-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.problem-card-light .problem-card-label { color: var(--red); }
.problem-card-dark .problem-card-label { color: var(--mint); }
.problem-field {
  padding: 10px 0;
  border-bottom: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.problem-card-light .problem-field { border-color: var(--paper-2); }
.problem-card-dark .problem-field { border-color: rgba(255,255,255,0.07); }
.problem-field:last-child { border-bottom: none; }
.problem-field-key {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.problem-card-light .problem-field-key { color: var(--gray-dim); }
.problem-card-dark .problem-field-key { color: rgba(255,255,255,0.4); }
.problem-field-val {
  font-size: 13px;
  text-align: right;
}
.problem-card-light .problem-field-val { color: var(--gray-faint); font-style: italic; }
.problem-card-dark .problem-field-val {
  font-family: var(--font-mono);
  color: var(--amber);
  font-weight: 600;
}

/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.how-section {
  background: var(--ink);
  padding: 96px 0;
}
.how-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.how-header {
  text-align: center;
  margin-bottom: 56px;
}
.how-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.how-headline .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.how-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.how-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.how-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.how-card:nth-child(1) .how-icon { background: rgba(253,216,103,0.12); }
.how-card:nth-child(2) .how-icon { background: rgba(46,184,138,0.12); }
.how-card:nth-child(3) .how-icon { background: rgba(99,102,241,0.12); }
.how-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.how-card-body {
  font-size: 14px;
  color: var(--gray-dim);
  line-height: 1.65;
}

/* ════════════════════════════════════════
   LANDING PRICING SECTION
   ════════════════════════════════════════ */
.landing-pricing {
  background: var(--paper);
  padding: 96px 0;
}
.landing-pricing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
}
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}
.pricing-headline {
  line-height: 1.1;
}
.pricing-headline .line1 {
  display: block;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--ink);
}
.pricing-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--ink);
}

/* ════════════════════════════════════════
   SIGNUP / CTA SECTION
   ════════════════════════════════════════ */
.signup-section {
  background: var(--ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.signup-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.signup-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.signup-headline {
  line-height: 1.1;
  margin-bottom: 12px;
}
.signup-headline .line1 {
  display: block;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -1.5px;
}
.signup-headline .line2 {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--amber);
}
.signup-sub {
  font-size: 15px;
  color: var(--gray-dim);
  line-height: 1.6;
  margin-bottom: 36px;
}
.signup-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.signup-input {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: var(--ink-2);
  color: var(--paper);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.15s;
}
.signup-input::placeholder { color: rgba(255,255,255,0.3); }
.signup-input:focus { border-color: rgba(255,255,255,0.25); }
.signup-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.signup-success {
  display: none;
  font-size: 15px;
  color: var(--mint);
  margin-top: 20px;
  font-weight: 500;
}

/* ════════════════════════════════════════
   RESPONSIVE — Landing
   ════════════════════════════════════════ */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .mockup-card { width: 320px; }
  .detection-pill { left: -20px; }
}

@media (max-width: 768px) {
  .hero { padding: 64px 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .hero-visual { order: -1; }
  .hero-visual { justify-content: center; }
  .mockup-card { width: 320px; }
  .detection-pill { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { padding: 8px 16px; }

  .quote-bar-inner { padding: 0 24px 0 72px; }
  .quote-mark { left: 24px; font-size: 72px; }

  .problem-inner, .how-inner, .landing-pricing-inner, .signup-inner { padding: 0 24px; }
  .problem-cards { grid-template-columns: 1fr; max-width: 480px; }
  .how-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-headline .line1 { font-size: 42px; letter-spacing: -2px; }
  .hero-headline .line2 { font-size: 52px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--gray-line); padding: 12px 0; }
  .hero-stat:last-child { border-bottom: none; }
  .signup-form { flex-direction: column; align-items: center; }
}
