@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --neon-blue: #00f0ff;
  --neon-green: #00ff88;
  --neon-pink: #ff00cc;
  --neon-purple: #bf00ff;
  --bg-dark: #050a0f;
  --bg-card: #0d1520;
  --text-primary: #e8f4f8;
  --text-secondary: #8aabbf;
  --border: rgba(0, 240, 255, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,240,255,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(0,255,136,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(255,0,204,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--neon-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-blue) 50%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 48px;
}

/* ===== MACBOOK SVG ===== */
.macbook-wrapper {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* ===== SCROLL CUE ===== */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fade-bounce 2s ease-in-out infinite;
}

@keyframes fade-bounce {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: var(--neon-blue);
}

/* ===== POLICY SECTION ===== */
.policy-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.policy-header {
  text-align: center;
  margin-bottom: 64px;
}

.policy-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.policy-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.policy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--neon-green);
  background: rgba(0, 255, 136, 0.07);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
}

/* ===== POLICY ARTICLES ===== */
.policy-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.policy-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-green));
  border-radius: 3px 0 0 3px;
}

.policy-article:hover {
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
}

.article-number {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 8px;
}

.policy-article h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.policy-article p,
.policy-article li {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
}

.policy-article ul {
  padding-left: 20px;
  margin-top: 10px;
}

.policy-article li {
  margin-bottom: 6px;
}

.policy-article li::marker {
  color: var(--neon-blue);
}

.policy-article strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
}

.highlight-box p {
  font-size: 0.88rem !important;
}

/* ===== CONTACT BOX ===== */
.contact-box {
  background: linear-gradient(135deg, rgba(0,240,255,0.08), rgba(0,255,136,0.05));
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 16px;
  padding: 32px 36px;
  text-align: center;
  margin-top: 40px;
}

.contact-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--neon-green);
  border-color: var(--neon-green);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 24px;
  color: var(--text-secondary);
  font-size: 0.83rem;
}

footer span {
  color: var(--neon-pink);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .policy-article {
    padding: 24px 20px;
  }
  .contact-box {
    padding: 24px 20px;
  }
}
