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

:root {
  /* Palette: Lean Dark Theme with 306° Purple/Magenta Accents */
  --hue-primary: 306;
  
  --c-bg-deep: #0d0b14;
  --c-bg-surface: #181623;
  --c-bg-raised: #232030;
  
  --c-primary: #d946ef;
  --c-primary-hover: #c026d3;
  --c-accent-cyan: #22d3ee;
  --c-accent-lime: #bef264;
  --c-accent-yellow: #facc15;
  
  --c-text-main: #f4f4f5;
  --c-text-muted: #a1a1aa;
  --c-text-dim: #71717a;
  
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-hover: rgba(217, 70, 239, 0.3);
  
  /* Typography */
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --s-section: clamp(5rem, 10vh, 8rem);
  --s-element: clamp(1.5rem, 3vw, 2.5rem);
  
  /* Radii */
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-pill: 999px;
  
  /* Effects */
  --shadow-card: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(217, 70, 239, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--c-bg-deep);
  color: var(--c-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text-main);
  margin-bottom: var(--s-element);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1.5rem;
  color: var(--c-text-muted);
  font-size: 1.1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}

/* --- Layout --- */

.uk-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.uk-section {
  padding-block: var(--s-section);
  position: relative;
  overflow: hidden;
}

.uk-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-element);
  align-items: center;
}
@media (min-width: 768px) {
  .uk-grid-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.uk-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* --- Header --- */

.uk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  padding-block: 1rem;
}

.uk-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uk-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.uk-logo span {
  color: var(--c-primary);
}

.uk-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 900px) {
  .uk-nav { display: none; } /* Simplified mobile handling */
}

.uk-nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-muted);
}

.uk-nav__link:hover {
  color: var(--c-primary);
}

/* --- Buttons --- */

.uk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-head);
}

.uk-btn-primary {
  background: var(--c-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

.uk-btn-primary:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 70, 239, 0.4);
}

.uk-btn-outline {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text-main);
}

.uk-btn-outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* --- Cards --- */

.uk-card {
  background: var(--c-bg-surface);
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.uk-card:hover {
  border-color: var(--c-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.uk-card__icon {
  width: 50px;
  height: 50px;
  background: var(--c-bg-raised);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--c-primary);
  font-size: 1.5rem;
}

/* --- Hero Specifics --- */

.uk-hero__tag {
  display: inline-block;
  background: rgba(217, 70, 239, 0.1);
  color: var(--c-primary);
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(217, 70, 239, 0.2);
}

.uk-hero__img-wrapper {
  position: relative;
}

.uk-hero__img-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, var(--c-primary) 0%, transparent 70%);
  opacity: 0.15;
  z-index: -1;
}

/* --- Stats --- */

.uk-stat__number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.uk-stat__label {
  color: var(--c-text-dim);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- FAQ --- */

.uk-faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: 1.5rem 0;
}

.uk-faq-q {
  font-weight: 600;
  color: var(--c-text-main);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.uk-faq-a {
  margin-top: 1rem;
  color: var(--c-text-muted);
}

/* --- Footer --- */

.uk-footer {
  background: var(--c-bg-surface);
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--c-border);
  margin-top: auto;
}

.uk-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.uk-footer__heading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--c-text-main);
}

.uk-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.uk-footer__links a {
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

.uk-footer__links a:hover {
  color: var(--c-accent-cyan);
}

.uk-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--c-text-dim);
  font-size: 0.85rem;
}
html{-webkit-text-size-adjust:100%}
img,svg,video{max-width:100%;height:auto}
*{box-sizing:border-box}
