:root {
  /* Colors */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --bg-white: #ffffff;
  --bg-soft: #f8fafc;
  --text-heading: #1e293b;
  --text-body: #64748b;
  --indigo-soft: rgba(99, 102, 241, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

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

.section-padding {
  padding: 8rem 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-body);
  font-size: 0.95rem;
}

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

/* Hero Section */
.hero {
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.hero-title {
  font-size: 5rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.text-primary {
  color: var(--primary);
}

.globe-container {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.globe-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.15));
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  padding: 2rem 2.5rem;
  border-radius: 2.5rem;
  max-width: 440px;
  font-size: 1rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 {
  align-self: flex-end;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
}

.card-2 {
  align-self: flex-start;
  margin-left: -4rem;
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
  color: white;
}

.card-3 {
  align-self: flex-end;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: white;
}

.hero-bottom {
  margin-top: 8rem;
  max-width: 900px;
}

.hero-bottom h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Outfit', sans-serif;
}

.hero-bottom p {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Solution Section */
.bg-soft {
  background-color: var(--bg-soft);
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: 'Outfit', sans-serif;
}

.solution-text {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.25rem;
  color: var(--text-body);
}

/* GSAP Specific styling */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}