/* ========================================
   GLOBAL
======================================== */

* {

  margin: 0;
  padding: 0;

  box-sizing: border-box;
}

body {

  font-family: 'Inter', sans-serif;

  background: #050505;

  color: #f4f7fb;

  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 23px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 32px;
}

.nav-container {

  width: 100%;
  max-width: var(--container-width);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 28px;

  border: 1px solid var(--glass-border);

  border-radius: 28px;

  backdrop-filter: blur(20px);

  background: rgba(0,0,0,0.45);

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 12px 50px rgba(0,0,0,0.55);
}

.logo {
  width: 55px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {

  text-decoration: none;

  color: rgba(255,255,255,0.88);

  font-size: 16px;
  font-weight: 500;

  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--ice-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.login-link {
  text-decoration: none;
  color: var(--ice-blue);
  font-weight: 500;
}

.primary-button {

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 15px 24px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;
  font-size: 16px;

  color: #0a0a0a;

  background:
    linear-gradient(
      135deg,
      var(--soft-beige),
      var(--ice-blue)
    );

  box-shadow: var(--button-shadow);

  transition: 0.35s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
}

/* ========================================
   HERO
======================================== */

.about-hero-section {

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 180px 48px 120px 108px;

  overflow: hidden;
}

/* Background */

.about-background {

  position: absolute;

  inset: 0;

  background-image:
    url('../assets/about-background.png');

  background-size: cover;
  background-position: center;

  opacity: 0.92;

  z-index: 1;
}

/* Overlay */

.about-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.92) 20%,
      rgba(0,0,0,0.4) 70%
    );

  z-index: 2;
}

/* Container */

.about-container {

  position: relative;

  z-index: 5;

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

/* Content */

.about-content {

  max-width: 660px;
}

/* Label */

.section-label {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 22px;

  border-radius: 999px;

  border:
    1px solid rgba(120,188,255,0.35);

  background:
    rgba(255,255,255,0.02);

  font-size: 9px;

  letter-spacing: 1px;

  margin-bottom: 34px;
}

/* Dot */

.label-dot {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #f2d3af,
      #78bcff
    );

  box-shadow:
    0 0 14px rgba(120,188,255,0.8);
}

/* Title */

.about-title {

  font-size: clamp(32px, 5vw, 70px);

  line-height: 1.05;

  letter-spacing: -4px;

  font-weight: 800;

  margin-bottom: 42px;
}

/* Gradient */

.about-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */

.about-divider {

  position: relative;

  width: 240px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  margin-bottom: 42px;
}

.about-divider span {

  position: absolute;

  top: 50%;
  left: 30%;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #fff;

  transform:
    translate(-50%, -50%);

  box-shadow:
    0 0 20px #ffffff;
}

/* Description */

.about-description {

  font-size: 18px;

  line-height: 1.9;

  color:
    rgba(255,255,255,0.7);

  max-width: 700px;
}

/* ========================================
   VALUES
======================================== */

.values-section {

  padding: 100px 48px;
}

.values-container {

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;
}

.values-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

  gap: 23px;
}

/* Card */

.value-card {

  padding: 42px 36px;

  border-radius: 32px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  transition: 0.35s ease;
}

.value-card:hover {

  transform:
    translateY(-8px);

  border-color:
    rgba(120,188,255,0.35);
}

/* Icon */

.value-icon {

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  margin-bottom: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(242,211,175,0.12),
      rgba(120,188,255,0.12)
    );

  font-size: 20px;
}

/* Text */

.value-card h3 {

  font-size: 24px;

  line-height: 1.1;

  margin-bottom: 20px;
}

.value-card p {

  font-size: 14px;

  line-height: 1.8;

  color:
    rgba(255,255,255,0.64);
}

/* ========================================
   STATS
======================================== */

.stats-section {

  padding: 0 48px 120px;
}

.stats-container {

  width: 100%;
  max-width: 1600px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  border-radius: 38px;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      90deg,
      rgba(242,211,175,0.04),
      rgba(120,188,255,0.04)
    );
}

/* Stat */

.stat-item {

  padding: 34px 14px;

  text-align: center;

  border-right:
    1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h2 {

  font-size: 44px;

  margin-bottom: 14px;

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {

  color:
    rgba(255,255,255,0.68);

  font-size: 18px;
}

/* ========================================
   CTA
======================================== */

.about-cta-section {

  position: relative;

  padding: 140px 48px;

  overflow: hidden;
}

/* Glow */

.about-cta-glow {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 800px;
  height: 800px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(120,188,255,0.08),
      transparent 70%
    );

  transform:
    translate(-50%, -50%);

  filter: blur(100px);
}

/* Container */

.about-cta-container {

  position: relative;

  z-index: 5;

  max-width: 700px;

  margin: 0 auto;

  text-align: center;
}

.cta-label {

  justify-content: center;

  margin-bottom: 28px;
}

/* Title */

.about-cta-title {

  font-size: clamp(32px, 4vw, 57px);

  line-height: 0.95;

  letter-spacing: -5px;

  margin-bottom: 36px;
}

.about-cta-title span {

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #ffffff,
      #78bcff
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.about-cta-description {

  font-size: 18px;

  line-height: 1.8;

  color:
    rgba(255,255,255,0.68);

  margin-bottom: 48px;
}

/* Primary Button */

.primary-button {

  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding: 18px 30px;

  border-radius: 999px;

  color: #050505;

  font-size: 18px;
  font-weight: 600;

  background:
    linear-gradient(
      90deg,
      #f2d3af,
      #78bcff
    );

  transition: 0.35s ease;
}

.primary-button:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 0 40px rgba(120,188,255,0.25);
}

/* =========================================
   CTA SECTION
========================================= */

.blog-cta-section {
  padding:
    0 7vw
    120px;
}

.blog-cta-card {
  position: relative;

  overflow: hidden;

  border-radius: 40px;

  padding:
    80px 60px;

  text-align: center;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.02)
    );

  backdrop-filter: blur(24px);
}

.cta-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(155,208,255,0.18),
      transparent 70%
    );

  top: -250px;
  right: -100px;

  pointer-events: none;
}

.blog-cta-card h2 {
  font-size: clamp(2rem, 5vw, 4rem);

  line-height: 1.05;

  margin-top: 22px;
  margin-bottom: 22px;
}

.blog-cta-card p {
  max-width: 700px;

  margin:
    0 auto
    40px;

  color: rgba(255,255,255,0.7);

  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 16px;

  flex-wrap: wrap;
}

.newsletter-form input {
  width: 100%;
  max-width: 420px;

  height: 60px;

  border-radius: 999px;

  border:
    1px solid rgba(255,255,255,0.08);

  background:
    rgba(255,255,255,0.03);

  padding: 0 24px;

  color: #fff;

  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

.footer-spacer {
  height: 40px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {

  .navbar {

    width: calc(100% - 24px);

    padding: 18px 22px;
  }

  .nav-logo {

    font-size: 34px;
  }

  .nav-button {

    padding: 14px 20px;

    font-size: 14px;
  }

  .about-hero-section {

    padding:
      160px 24px 100px;
  }

  .about-title {

    font-size: 58px;

    letter-spacing: -3px;
  }

  .about-description {

    font-size: 18px;
  }

  .values-section,
  .stats-section,
  .about-cta-section {

    padding-left: 24px;
    padding-right: 24px;
  }

  .about-cta-title {

    font-size: 54px;

    letter-spacing: -3px;
  }

  .about-cta-description {

    font-size: 18px;
  }

  .stat-item {

    border-right: none;

    border-bottom:
      1px solid rgba(255,255,255,0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .blog-cta-card {
    padding:
      60px 24px;
  }

  .posts-header {
    align-items: flex-start;
  }
}
