@import url('https://fonts.cdnfonts.com/css/brinnan');

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.87);
  background-color: #000000;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: #4d7cff; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #6d96ff; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 40px;
}

.lp-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-logo { display: flex; align-items: center; }
.lp-logo-img { width: 90px; height: 32px; object-fit: contain; }

.lp-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  transition: all 0.25s ease;
}

.lp-back-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.lp-hero {
  position: relative;
  padding: 160px 40px 80px;
  text-align: center;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.lp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #4d7cff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.lp-hero-title {
  font-family: "Brinnan", sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lp-hero-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}

.lp-hero-meta span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════ */
.lp-main {
  padding: 0 40px 100px;
}

.lp-container {
  max-width: 800px;
  margin: 0 auto;
}

.lp-intro {
  padding: 40px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 48px;
}

.lp-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.lp-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.lp-section h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 3px solid #4d7cff;
  letter-spacing: -0.01em;
}

.lp-section p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.lp-section p:last-child {
  margin-bottom: 0;
}

.lp-section p strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   CONTACT BLOCK
   ═══════════════════════════════════════════ */
.lp-contact-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 16px;
}

.lp-contact-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.lp-contact-block p:last-child {
  margin-bottom: 0;
}

.lp-contact-block p strong {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════
   LIST BLOCK (Data Deletion page)
   ═══════════════════════════════════════════ */
.lp-list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.lp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lp-list-bullet {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: #4d7cff;
  border-radius: 50%;
  margin-top: 9px;
}

.lp-list-item span:last-child {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.lp-list-item strong {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════
   STEPS (Data Deletion page)
   ═══════════════════════════════════════════ */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 24px;
}

.lp-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lp-step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #4d7cff;
  background: rgba(77, 124, 255, 0.1);
  border: 1.5px solid rgba(77, 124, 255, 0.3);
  border-radius: 50%;
}

.lp-step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.lp-step-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.lp-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
}

.lp-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lp-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.lp-footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.lp-footer-links a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.lp-footer-links a.active {
  color: #4d7cff;
}

.lp-footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .lp-navbar { padding: 0 20px; }
  .lp-navbar-inner { height: 64px; }
  .lp-logo-img { width: 70px; height: 26px; }

  .lp-back-link {
    font-size: 0.82rem;
    padding: 6px 14px;
  }

  .lp-hero {
    padding: 130px 20px 60px;
  }

  .lp-hero-title {
    font-size: 36px;
  }

  .lp-main {
    padding: 0 20px 80px;
  }

  .lp-intro p {
    font-size: 0.95rem;
  }

  .lp-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .lp-step {
    gap: 16px;
  }

  .lp-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 17px;
  }

  .lp-footer { padding: 32px 20px; }
  .lp-footer-links { gap: 20px; }
}

@media (max-width: 480px) {
  .lp-hero-title {
    font-size: 28px;
  }

  .lp-hero-meta {
    font-size: 0.78rem;
  }

  .lp-footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════
   SMOOTH SCROLL
   ═══════════════════════════════════════════ */
html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════════
   SELECTION
   ═══════════════════════════════════════════ */
::selection {
  background: rgba(77, 124, 255, 0.3);
  color: #ffffff;
}
