/* ============================================================
   Evogram — Coming Soon  |  styles/main.css
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg-start:   #0d0d1a;
  --clr-bg-end:     #1a1040;
  --clr-accent:     #7c5cfc;
  --clr-accent-alt: #c084fc;
  --clr-text:       #e8e0ff;
  --clr-muted:      #9d8ec4;
  /* SF Pro Display on Apple devices, system-ui everywhere else */
  --font-main: "SF Pro Display", system-ui, sans-serif;
  --transition: 0.3s ease;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, var(--clr-bg-start) 0%, var(--clr-bg-end) 100%);
  color: var(--clr-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* ---------- Background orbs ---------- */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-orb--1 {
  width: 520px;
  height: 520px;
  background: var(--clr-accent);
  top: -120px;
  left: -120px;
  animation: drift 14s ease-in-out infinite alternate;
}

.bg-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-accent-alt);
  bottom: -100px;
  right: -80px;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ---------- Main container ---------- */
.container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 680px;
  width: 100%;
  gap: 2rem;
}

/* ---------- Logo / wordmark ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo__img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}

.logo__name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Hero text ---------- */
.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent-alt);
}

.hero__headline {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero__headline span {
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ---------- App Store badge ---------- */
.app-store-badge {
  display: inline-block;
  transition: opacity var(--transition), transform var(--transition);
}

.app-store-badge:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.app-store-badge img {
  height: 52px;
  width: auto;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--clr-muted);
}

/* ---------- Privacy policy layout ---------- */
body.policy-page {
  justify-content: flex-start;
}

.policy-page .container {
  align-items: flex-start;
  text-align: left;
  max-width: 720px;
  padding: 3rem 1.5rem 4rem;
}

.policy-page .logo {
  margin-bottom: 0.5rem;
}

.policy-page .logo {
  text-decoration: none;
}

.policy__title {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-alt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy__updated {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.policy__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.policy__section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.policy__section p {
  font-size: 0.97rem;
  color: var(--clr-muted);
  line-height: 1.75;
}

.policy__section a {
  color: var(--clr-accent-alt);
  text-decoration: none;
}

.policy__section a:hover {
  text-decoration: underline;
}

/* ---------- Contact button ---------- */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-alt));
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(124, 92, 252, 0.4);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 92, 252, 0.55);
}

.contact-btn:active {
  transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 480px) {
  .app-store-badge img { height: 44px; }
}

