/* ===========================
   Portfolio Coming Soon
   Dark Modern Theme
   =========================== */

/* -- Reset & Base -- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #08080c;
  --bg-subtle: #0f0f15;
  --surface: #14141c;
  --border: rgba(255, 255, 255, 0.06);
  --text-primary: #f0f0f3;
  --text-secondary: rgba(240, 240, 243, 0.55);
  --text-tertiary: rgba(240, 240, 243, 0.35);
  --accent: #8b7cf6;
  --accent-soft: rgba(139, 124, 246, 0.12);
  --gradient-start: #8b7cf6;
  --gradient-end: #5ea2ef;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* -- Background glow -- */
body::before {
  content: '';
  position: fixed;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(139, 124, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* -- Layout -- */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* -- Typography -- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  padding: 160px 0 80px;
  position: relative;
}

.hero__name {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 8px;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

.hero__domains {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 28px;
  font-family: var(--font-body);
}

.hero__experience {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  font-weight: 400;
  line-height: 1.5;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* -- Divider -- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ===========================
   Coming Soon Section
   =========================== */

.coming-soon {
  padding: 80px 0 96px;
}

.coming-soon__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.coming-soon__copy p {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 560px;
}

.coming-soon__copy p:last-child {
  margin-bottom: 0;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ===========================
   Contact Section
   =========================== */

.contact {
  padding: 80px 0 96px;
}

.contact__heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 48px;
  letter-spacing: -0.025em;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  font-weight: 500;
}

.contact__value {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

a.contact__value:hover {
  color: var(--text-primary);
}

/* -- CTA Button -- */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--bg);
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* ===========================
   Footer
   =========================== */

.footer {
  margin-top: auto;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer__note {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 640px) {
  .hero {
    padding: 120px 0 64px;
  }

  section {
    padding: 64px 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* -- Subtle entrance animation -- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.coming-soon,
.contact {
  animation: fadeUp 0.8s ease-out both;
}

.coming-soon {
  animation-delay: 0.1s;
}

.contact {
  animation-delay: 0.2s;
}
