:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --card: rgba(255, 255, 255, 0.85);
  --text: #3e3e4b;
  --text-soft: #52565a;
  --border: rgba(62, 62, 75, 0.14);
  --accent: #e96199;
  --accent-2: #e9435a;
  --shadow: 0 20px 50px rgba(62, 62, 75, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(233, 97, 153, 0.2);
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(233, 97, 153, 0.07), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(233, 67, 90, 0.05), transparent 18%),
    radial-gradient(circle at 70% 75%, rgba(233, 97, 153, 0.04), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 40%, #ffffff 100%);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(62, 62, 75, 0.06) 0.7px, transparent 0.7px);
  background-size: 10px 10px;
  opacity: 0.05;
  z-index: -2;
  pointer-events: none;
}


.btn-main,
.btn-ghost {
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-main {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 30px rgba(233, 97, 153, 0.35);
}

.btn-main:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-ghost {
  border: 1px solid rgba(62, 62, 75, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(62, 62, 75, 0.4);
  color: var(--text);
}

.hero-simple {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 0 70px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(233, 97, 153, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 97, 153, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(233, 97, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(233, 97, 153, 0);
  }
}

.hero-title,
.section-head h2,
.project-card h2 {
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 22px;
}

.simple-title {
  max-width: 980px;
}

.hero-text,
.section-head p,
.project-card p,
.footer-shell span {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.simple-text {
  max-width: 850px;
}

.hero-actions,
.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
  justify-content: center;
}

.section-space {
  padding: 0 0 90px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 22px;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(233, 97, 153, 0.15), rgba(233, 67, 90, 0.05));
  border: 1px solid rgba(233, 97, 153, 0.2);
  font-size: 1.25rem;
}

.project-status,
.project-meta {
  border: 1px solid rgba(62, 62, 75, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent-2);
}

.project-status {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-meta {
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 700;
  color: var(--text);
}

.footer-simple {
  padding: 0 0 26px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(62, 62, 75, 0.12);
}

.footer-shell strong {
  display: block;
  margin-bottom: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero-simple {
    min-height: auto;
    padding: 50px 0 60px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .hero-text,
  .section-head p,
  .project-card p,
  .footer-shell span {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .project-top,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-actions,
  .hero-actions {
    width: 100%;
  }

  .project-actions .btn,
  .hero-actions .btn {
    width: 100%;
  }
}