/* Gitstarted.ai — holding page */

:root {
  --bg-deep: #08080a;
  --bg-raised: #0f0f12;
  --text: #eceae6;
  --text-muted: #8a8780;
  --accent: #c4a574;
  --accent-soft: rgba(196, 165, 116, 0.14);
  --accent-glow: rgba(196, 165, 116, 0.08);
  --line: rgba(255, 255, 255, 0.06);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: clamp(15px, 1.1vw, 17px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
  background: var(--bg-deep);
  overflow-x: hidden;
}

/* —— Background —— */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(80, 120, 140, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(120, 90, 60, 0.05), transparent);
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  opacity: 0.45;
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 28s ease-in-out infinite;
}

.bg__orb--1 {
  width: min(50vw, 420px);
  height: min(50vw, 420px);
  top: 15%;
  left: 55%;
  background: rgba(196, 165, 116, 0.15);
}

.bg__orb--2 {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: 10%;
  left: 5%;
  background: rgba(100, 130, 150, 0.12);
  animation-delay: -14s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, 2%) scale(1.03); }
  66% { transform: translate(-2%, 1%) scale(0.98); }
}

/* —— Header —— */
.top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.5rem, 5vw, 3.5rem);
}

.top__mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent-soft);
}

.top__domain {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* —— Hero —— */
.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 38rem;
  padding: clamp(2rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3.5rem);
  padding-top: clamp(1rem, 4vw, 2rem);
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 7vw, 3.75rem);
  font-weight: 400;
  line-height:1.08;
  letter-spacing: -0.02em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero__lede em {
  font-style: normal;
  color: var(--text);
  font-weight: 400;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--accent-soft);
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 100px;
}

.hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(196, 165, 116, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 165, 116, 0); }
}

/* —— Footer —— */
.foot {
  position: relative;
  z-index: 1;
  padding: 1.5rem clamp(1.5rem, 5vw, 3.5rem) 2rem;
}

.foot__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .bg__orb,
  .hero__pulse {
    animation: none;
  }
  .hero__pulse {
    box-shadow: none;
  }
}
