/* ============================================================
   CEZER — AI Domain Generator Coming Soon
   ============================================================ */

.aig-page {
  background: var(--dark);
  min-height: 100vh;
}

/* ── Hero ──────────────────────────────────────────────────── */
.aig-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.aig-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.aig-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(196,181,160,.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(196,181,160,.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(228,226,221,.06) 0%, transparent 50%);
}
.aig-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(228,226,221,.015) 80px, rgba(228,226,221,.015) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(228,226,221,.015) 80px, rgba(228,226,221,.015) 81px);
}

/* Floating particles */
.aig-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.aig-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(228,226,221,.15);
  animation: aigFloat linear infinite;
}
.aig-particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 18s; width: 3px; height: 3px; }
.aig-particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 22s; animation-delay: -5s; }
.aig-particle:nth-child(3) { left: 45%; top: 35%; animation-duration: 15s; animation-delay: -3s; width: 5px; height: 5px; }
.aig-particle:nth-child(4) { left: 65%; top: 70%; animation-duration: 20s; animation-delay: -8s; width: 3px; height: 3px; }
.aig-particle:nth-child(5) { left: 80%; top: 25%; animation-duration: 25s; animation-delay: -12s; }
.aig-particle:nth-child(6) { left: 90%; top: 50%; animation-duration: 17s; animation-delay: -2s; width: 6px; height: 6px; opacity: .08; }
.aig-particle:nth-child(7) { left: 35%; top: 80%; animation-duration: 19s; animation-delay: -7s; }
.aig-particle:nth-child(8) { left: 55%; top: 15%; animation-duration: 23s; animation-delay: -10s; width: 3px; height: 3px; }

@keyframes aigFloat {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px) scale(0.5); opacity: 0; }
}

.aig-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Sparkle icon */
.aig-icon-wrap {
  display: inline-flex;
  position: relative;
  margin-bottom: 32px;
}
.aig-icon-main {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(228,226,221,.12), rgba(196,181,160,.1));
  border: 1px solid rgba(228,226,221,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.aig-icon-main i { width: 40px; height: 40px; color: var(--beige); }

.aig-icon-ring {
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  border: 1px solid rgba(228,226,221,.06);
  animation: aigPulse 3s ease-in-out infinite;
}
@keyframes aigPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.08); opacity: .2; }
}

.aig-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228,226,221,.08);
  border: 1px solid rgba(228,226,221,.15);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 28px;
}

.aig-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--beige);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}
.aig-title span {
  background: linear-gradient(135deg, var(--beige), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aig-desc {
  font-size: 17px;
  color: rgba(228,226,221,.6);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 40px;
}

/* Mock search bar (decorative) */
.aig-mock-search {
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative;
}
.aig-mock-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(228,226,221,.1);
  border-radius: 14px;
  padding: 16px 20px;
  gap: 12px;
  opacity: .5;
}
.aig-mock-bar i { width: 20px; height: 20px; color: rgba(228,226,221,.3); }
.aig-mock-bar span { font-size: 15px; color: rgba(228,226,221,.25); }

.aig-mock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(41,41,41,.6);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(228,226,221,.15);
}
.aig-mock-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(228,226,221,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Feature preview cards */
.aig-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.aig-feat {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(228,226,221,.08);
  border-radius: 14px;
  padding: 24px 16px;
  transition: all var(--transition);
}
.aig-feat:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(228,226,221,.15);
  transform: translateY(-3px);
}
.aig-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(228,226,221,.12), rgba(196,181,160,.08));
  border: 1px solid rgba(228,226,221,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.aig-feat-icon i { width: 20px; height: 20px; color: var(--beige); }
.aig-feat h5 { font-size: 14px; color: var(--beige); margin-bottom: 4px; }
.aig-feat p { font-size: 12px; color: rgba(228,226,221,.45); line-height: 1.5; }

/* CTA buttons */
.aig-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aig-steps { gap: 24px; }
  .aig-step-line { display: none; }
}

@media (max-width: 768px) {
  .aig-features { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .aig-hero { padding-bottom: 60px; min-height: auto; }
  .aig-steps { flex-direction: column; gap: 20px; }
  .aig-step-line { display: none; }
  .aig-how { padding: 60px 20px; }
  .aig-cta { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .aig-icon-wrap { margin-bottom: 24px; }
  .aig-icon-main { width: 64px; height: 64px; border-radius: 16px; }
  .aig-icon-main i { width: 28px; height: 28px; }
  .aig-title { font-size: 1.8rem; }
  .aig-desc { font-size: 15px; }
  .aig-mock-search { max-width: 100%; }
  .aig-actions { flex-direction: column; }
  .aig-actions .btn { width: 100%; justify-content: center; }
  .aig-step { padding: 24px 16px; }
  .aig-how-title { font-size: 1.5rem; }
  .aig-cta h2 { font-size: 1.4rem; }
  .aig-cta-actions { flex-direction: column; }
  .aig-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── How It Works Section ──────────────────────────────────── */
.aig-how {
  padding: 80px 24px;
  background: var(--beige-light);
}
.aig-how-header {
  text-align: center;
  margin-bottom: 48px;
}
.aig-how-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.aig-how-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.aig-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.aig-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.aig-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.aig-step-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.aig-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.aig-step-icon i { width: 24px; height: 24px; color: var(--dark); }
.aig-step h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.aig-step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.aig-step-line {
  width: 40px;
  height: 2px;
  background: var(--border);
  align-self: center;
  margin-top: 60px;
  flex-shrink: 0;
}

/* ── CTA Section ───────────────────────────────────────────── */
.aig-cta {
  padding: 80px 24px;
  background: var(--dark);
  text-align: center;
}
.aig-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.aig-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.aig-cta-icon i { width: 28px; height: 28px; color: var(--dark); }
.aig-cta h2 {
  color: var(--beige);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.aig-cta p {
  color: rgba(228,226,221,.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.aig-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
