:root {
  --background: #ffffff;
  --foreground: #1a1a2e;
  --primary-blue: #243e8f;
  --primary-blue-light: #3264af;
  --primary-blue-dark: #1a2d6b;
  --primary-green: #00a44d;
  --primary-green-light: #00c45a;
  --primary-green-dark: #008a40;
  --accent-orange: #f6851f;
  --accent-red: #ed1c24;
  --accent-yellow: #fbc70f;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  position: relative;
}

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

/* Brand gradient bar (logo rainbow) */
.gradient-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(219, 29, 34, 1) 0%,
    rgba(228, 95, 39, 1) 17%,
    rgba(240, 138, 33, 1) 33%,
    rgba(246, 200, 19, 1) 50%,
    rgba(180, 194, 53, 1) 67%,
    rgba(73, 169, 72, 1) 84%,
    rgba(37, 162, 77, 1) 100%
  );
}

/* Decorative blobs */
.blob {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}
.blob--green {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0, 164, 77, 0.18) 0%, transparent 70%);
  top: -120px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.blob--blue {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(36, 62, 143, 0.14) 0%, transparent 70%);
  bottom: -160px; left: -120px;
  animation: float 10s ease-in-out -3s infinite;
}
.blob--orange {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(246, 133, 31, 0.12) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: float 12s ease-in-out -6s infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -25px); }
}

/* Layout */
.page {
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 32px;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.brand { display: flex; align-items: center; }
.brand__logo { height: 64px; width: auto; }

.hero {
  flex: 1;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
  max-width: 820px;
  animation: fade-up 0.7s ease-out both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 164, 77, 0.1);
  border: 1px solid rgba(0, 164, 77, 0.3);
  color: var(--primary-green-dark);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.3px;
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 0 rgba(0, 164, 77, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 164, 77, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(0, 164, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 164, 77, 0); }
}

.hero__title {
  margin-top: 24px;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--primary-blue-dark);
}
.hero__accent {
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray-600);
  max-width: 620px;
}

.cta {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(36, 62, 143, 0.5);
}
.btn--primary:hover {
  background: var(--primary-blue-dark);
  box-shadow: 0 14px 30px -10px rgba(36, 62, 143, 0.6);
}

.btn--ghost {
  background: #fff;
  border-color: var(--gray-200);
  color: var(--primary-blue);
}
.btn--ghost:hover {
  border-color: var(--primary-blue);
  background: var(--gray-50);
}

/* Features */
.features {
  list-style: none;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 164, 77, 0.4);
  box-shadow: 0 14px 30px -16px rgba(36, 62, 143, 0.25);
}
.feature__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: #fff;
}
.feature__icon--blue { background: var(--primary-blue); }
.feature__icon--green { background: var(--primary-green); }
.feature__icon--orange { background: var(--accent-orange); }

.feature h3 {
  font-size: 15px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 4px;
}
.feature p {
  font-size: 13.5px; color: var(--gray-500);
}

/* Footer */
.foot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  color: var(--gray-500);
}

/* Cookie banner */
.cookie {
  position: fixed; z-index: 100;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
}
.cookie.is-visible { opacity: 1; transform: translateY(0); }
.cookie::before {
  content: "";
  display: block; height: 3px;
  background: linear-gradient(
    90deg,
    rgba(219, 29, 34, 1) 0%,
    rgba(228, 95, 39, 1) 17%,
    rgba(240, 138, 33, 1) 33%,
    rgba(246, 200, 19, 1) 50%,
    rgba(180, 194, 53, 1) 67%,
    rgba(73, 169, 72, 1) 84%,
    rgba(37, 162, 77, 1) 100%
  );
}
.cookie__inner {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px;
}
.cookie__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(36, 62, 143, 0.08);
  color: var(--primary-blue);
}
.cookie__text { flex: 1; min-width: 0; }
.cookie__text h3 {
  font-size: 14px; font-weight: 700; color: var(--gray-900);
  margin-bottom: 2px;
}
.cookie__text p {
  font-size: 13px; color: var(--gray-600); line-height: 1.45;
}
.cookie__actions {
  display: flex; gap: 8px; flex-shrink: 0;
}
.btn--sm { padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }

@media (max-width: 720px) {
  .cookie__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 24px; }
  .page { padding: 36px 20px; }
  .brand__logo { height: 44px; }
}
