/* iSPY landing page — Bond aesthetic, single CSS file. */

:root {
  --bg:           #050507;
  --bg-1:         #0a0a0d;
  --bg-2:         #111114;
  --panel:        rgba(14,14,18,0.88);
  --panel-elev:   #14141a;
  --hairline:     rgba(212,175,122,0.12);
  --hairline-hi:  rgba(212,175,122,0.28);
  --text:         #ece6d8;
  --text-2:       #cfc7b6;
  --text-dim:     #8c8478;
  --text-faint:   #555048;
  --text-inv:     #0a0905;
  --gold:         #c9a96e;
  --gold-hi:      #e0c084;
  --gold-dim:     #9b8456;
  --crimson:      #b8202e;
  --emerald:      #2d8a5e;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
}

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

body {
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(184,32,46,0.04) 0%, transparent 70%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }

/* ---- Nav ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(5,5,7,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 24px; height: 24px; color: var(--gold); filter: drop-shadow(0 0 6px rgba(201,169,110,0.4)); }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 18px;
  background: var(--gold);
  color: var(--text-inv) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
}
.nav-cta:hover { background: var(--gold-hi); }

/* ---- Hero ---- */
.hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 36px 80px;
  text-align: center;
}

.hero-pre {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201,169,110,0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--text);
  text-shadow: 0 0 32px rgba(201,169,110,0.12);
}
.hero-title br { display: none; }
@media (min-width: 720px) { .hero-title br { display: inline; } }

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 auto 32px;
  max-width: 640px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none !important;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-inv) !important;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(201,169,110,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border-color: var(--hairline-hi);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---- Features ---- */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 36px 80px;
  border-top: 1px solid var(--hairline);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.25s;
}
.feature:hover { border-color: var(--hairline-hi); }
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.2;
}

.feature p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ---- Pricing ---- */
.pricing {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 36px 80px;
  text-align: center;
  border-top: 1px solid var(--hairline);
}

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--text);
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 40px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.plan {
  padding: 30px 26px;
  background: var(--bg-1);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  text-align: left;
  transition: all 0.25s;
}
.plan:hover { border-color: var(--hairline-hi); transform: translateY(-2px); }

.plan-recommended {
  background: linear-gradient(180deg, rgba(201,169,110,0.10), rgba(201,169,110,0.04));
  border-color: var(--gold);
  box-shadow: 0 0 32px rgba(201,169,110,0.12);
}

.plan-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.plan-recommended .plan-tag { color: var(--gold-hi); }

.plan-price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4px;
}
.plan-price span {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
}

.plan-yearly {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}
.plan-features li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 4px;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.plan-features strong { color: var(--text); }

/* ---- Download ---- */
.download {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 36px 100px;
  text-align: center;
  border-top: 1px solid var(--hairline);
}

.download h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--text);
}

.download-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0 0 32px;
}

.download-note {
  margin: 24px auto 0;
  font-size: 12.5px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 520px;
}
.download-note strong { color: var(--text-2); }

/* ---- Footer ---- */
.foot {
  border-top: 1px solid var(--hairline);
  background: rgba(0,0,0,0.4);
}

.foot-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 36px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

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

.foot-brand {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
}

.foot p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.foot h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot ul li {
  margin-bottom: 6px;
  font-size: 13px;
}

.foot ul li a { color: var(--text-dim); }
.foot ul li a:hover { color: var(--text); }

.foot-bar {
  border-top: 1px solid var(--hairline);
  padding: 16px 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ---- Legal pages ---- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 36px 100px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--text);
}

.legal .legal-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin: 40px 0 12px;
  color: var(--gold);
}

.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
}

.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); }
