:root {
  --bg: #0a0e14;
  --surface: #10151c;
  --surface-2: #161d27;
  --border: rgba(255,255,255,0.06);
  --gold: #daa520;
  --gold-light: #efd06a;
  --gold-dark: #a67c00;
  --text: #eaeaea;
  --text-dim: #7a8494;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html.lenis, html.lenis body { height: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
}

.serif { font-family: 'Instrument Serif', serif; }

/* === DIAGONAL LINE MOTIF (brand identity from shield icon) === */
.diag-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(218, 165, 32, 0.03) 40px,
    rgba(218, 165, 32, 0.03) 41px
  );
}

.diag-accent {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: rotate(-45deg);
  opacity: 0.15;
  pointer-events: none;
}

.diag-accent-hero-r { top: 15%; right: 5%; }
.diag-accent-hero-l { bottom: 25%; left: -5%; width: 200px; }
.diag-accent-features { top: 10%; left: 10%; }
.diag-accent-profiles { bottom: 20%; right: 0; width: 250px; }
.diag-accent-monitoring { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); width: 400px; }
.diag-accent-pricing { bottom: 15%; left: 8%; width: 200px; }
.diag-accent-signup { top: 30%; right: 10%; width: 200px; }

/* === HERO === */
.hero-grid {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 50px,
    rgba(218, 165, 32, 0.035) 50px,
    rgba(218, 165, 32, 0.035) 51px
  );
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

.shield-glow {
  filter: drop-shadow(0 0 40px rgba(218,165,32,0.25)) drop-shadow(0 0 80px rgba(218,165,32,0.1));
}

.gradient-text {
  background: linear-gradient(135deg, #daa520, #efd06a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === APP WINDOW MOCKUP === */
.app-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.02);
}

.app-titlebar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }

.score-ring { width: 160px; height: 160px; }
.score-ring circle { fill: none; stroke-linecap: round; }
.score-ring .ring-bg { stroke: rgba(255,255,255,0.05); stroke-width: 5; }
.score-ring .ring-fill {
  stroke: url(#score-grad);
  stroke-width: 5;
  transform: rotate(-90deg);
  transform-origin: center;
  filter: drop-shadow(0 0 6px rgba(74,222,128,0.4));
}

.score-ring-sm { width: 100px; height: 100px; }

.svg-defs { position: absolute; }

.progress-fill { width: 85%; }

/* === ANGULAR CARDS (not rounded glass) === */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.card:hover {
  border-color: rgba(218,165,32,0.15);
  transform: translateY(-3px);
}

.card:hover::before { height: 100%; }

/* === PROFILE CHIPS === */
.profile-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
}

.profile-chip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.profile-chip:hover {
  border-color: rgba(218,165,32,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.profile-chip:hover::after { width: 40px; }

/* === NAV === */
.nav {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 14, 20, 0.8);
  border-bottom: 1px solid var(--border);
}

/* === CTA === */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218,165,32,0.25);
}

.cta:active { transform: translateY(0); }

.cta-sm { padding: 8px 18px; font-size: 12px; }
.cta-md { padding: 10px 18px; font-size: 12px; }

/* === SECTION ACCENT === */
.section-accent {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(218,165,32,0.12); }

/* === FORM === */
.email-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.email-input:focus { border-color: rgba(218,165,32,0.4); }
.email-input::placeholder { color: var(--text-dim); }

/* === ANIMATIONS === */
.fade-up { opacity: 0; transform: translateY(30px); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
}
