@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --bg-accent: #f0ebe3;
  --ink: #141414;
  --muted: #5b6b6a;
  --accent: #0f766e;
  --accent-2: #f97316;
  --accent-3: #1d4ed8;
  --card: rgba(255, 255, 255, 0.76);
  --border: rgba(20, 20, 20, 0.08);
  --shadow: 0 20px 60px rgba(14, 20, 20, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(15, 118, 110, 0.14), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(249, 115, 22, 0.18), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(29, 78, 216, 0.12), transparent 45%),
    radial-gradient(circle at 20% 78%, rgba(15, 118, 110, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="120" height="120" filter="url(%23n)" opacity="0.06"/></svg>');
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 244, 239, 0.85);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

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

.nav-links a {
  padding: 6px 4px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.25);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 118, 110, 0.3);
}

.button-secondary {
  background: #fff;
  border-color: var(--border);
  color: var(--ink);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.4);
}

.button-ghost {
  background: transparent;
  border-color: rgba(20, 20, 20, 0.16);
  color: var(--ink);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.dashboard {
  position: relative;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 118, 110, 0.12), rgba(249, 115, 22, 0.08));
  opacity: 0.7;
  z-index: 0;
}

.dashboard-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

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

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 16px;
}

.stat-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.stat-card strong {
  font-size: 1.4rem;
  font-family: 'Sora', sans-serif;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 700px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
  display: grid;
  gap: 12px;
}

.card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-ready {
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent);
}

.badge-soon {
  background: rgba(249, 115, 22, 0.18);
  color: #c2410c;
}

.comparison {
  margin-top: 32px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(200px, 2fr) minmax(150px, 1fr) minmax(160px, 1fr);
  gap: 16px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-header {
  background: var(--bg-accent);
  font-weight: 600;
  color: var(--muted);
}

.comparison-row span {
  font-size: 0.95rem;
}

.comparison-row strong {
  font-weight: 600;
}

.cta {
  padding: 70px 0 90px;
}

.cta-box {
  background: linear-gradient(120deg, rgba(15, 118, 110, 0.12), rgba(249, 115, 22, 0.14));
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 26px;
  padding: 36px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 40px;
  background: rgba(247, 244, 239, 0.9);
}

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

.footer h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 720px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.legal-hero {
  padding: 70px 0 40px;
}

.legal-page {
  padding-bottom: 80px;
}

.legal-page h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page p {
  margin-bottom: 12px;
  color: var(--muted);
}

.legal-note {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 16px;
  padding: 16px;
  color: #9a3412;
  margin-top: 18px;
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(15, 118, 110, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(247, 244, 239, 0.96);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions {
    display: none;
  }

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

  .comparison-row span:last-child {
    justify-self: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
