@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,700&display=swap');

:root {
  --bg: #0d1117;
  --bg-2: #0a0f14;
  --ink: #e6edf3;
  --muted: #9fb0c2;
  --accent: #34d399;
  --accent-2: #22d3ee;
  --accent-3: #f59e0b;
  --card: #121923;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(34, 211, 238, 0.2), transparent 60%),
    radial-gradient(800px 500px at 90% 0%, rgba(52, 211, 153, 0.2), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 32px 0 96px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  align-items: start;
  padding: 24px 0 56px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin: 0 0 16px;
  line-height: 1.05;
}

.hero-preview {
  margin-bottom: 42px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-7deg);
}

.hero-preview img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041018;
  box-shadow: 0 12px 24px rgba(34, 211, 238, 0.35);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
}

.hero-card {
  background: linear-gradient(140deg, rgba(20, 26, 38, 0.95), rgba(10, 16, 24, 0.8));
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 28px 70px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 220px at 15% 10%, rgba(245, 158, 11, 0.25), transparent 70%);
  pointer-events: none;
}

.media-stack {
  display: grid;
  gap: 18px;
  position: relative;
}


.media-controls {
  background: rgba(8, 12, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  transform: translateY(-18px) rotate(3deg);
  max-width: 380px;
}

.media-controls img {
  width: 100%;
  display: block;
  border-radius: 16px;
}


.section {
  padding: 64px 0 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: rgba(18, 25, 35, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(52, 211, 153, 0.15);
  color: #7cf5c2;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.2);
  color: #7dd3fc;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.footer {
  margin-top: 80px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: floatIn 0.8s ease both;
}

.reveal.delay-1 {
  animation-delay: 0.15s;
}

.reveal.delay-2 {
  animation-delay: 0.3s;
}

.reveal.delay-3 {
  animation-delay: 0.45s;
}

.privacy {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(18, 25, 35, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px var(--shadow);
}

.privacy h1 {
  font-family: "Fraunces", serif;
  margin-top: 0;
}

.privacy p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .control-row {
    grid-template-columns: 1fr;
  }
}