@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-2: #fff5ec;
  --text: #1f1b18;
  --text-muted: #6b625c;
  --primary: #f97316;
  --primary-2: #f7931e;
  --accent: #7c3aed;
  --accent-2: #db2777;
  --border: #f3e8de;
  --radius: 1rem;
  --shadow-soft: 0 4px 24px -4px rgba(31, 27, 24, 0.08);
  --shadow-glow: 0 20px 60px -20px rgba(249, 115, 22, 0.35);
  --gradient-hero: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #7c3aed 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #fff7f0 100%);
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--gradient-hero);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-desktop a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: opacity 0.2s, transform 0.2s;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.12;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.6), transparent 60%);
  z-index: -1;
}

.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: var(--surface-2);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.section-title p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  padding: 2rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--gradient-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--surface-2);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .nav-desktop {
    display: flex;
  }
}

.checklist {
  list-style: none;
  margin-top: 1.5rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--gradient-hero);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.terminal {
  border-radius: calc(var(--radius) + 0.5rem);
  padding: 0.25rem;
  background: var(--gradient-hero);
}

.terminal-inner {
  background: var(--surface);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 2rem;
}

.terminal-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.terminal-row.muted {
  color: var(--text-muted);
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}

.contact-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  background: var(--surface-2);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-col p,
.footer-col a,
.footer-col li {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col li + li {
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.legal-page {
  padding: 4rem 0;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.75rem;
}

.legal-page li + li {
  margin-top: 0.5rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 60;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 420px;
  }
}

.cookie-banner h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions button {
  flex: 1;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}

.cookie-reject {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border) !important;
}

.cookie-accept {
  background: var(--gradient-hero);
  color: #fff;
}

.hidden {
  display: none !important;
}
