:root {
  --sage-green: #678D77;
  --sage-light: #A3BDB0;
  --sage-dark: #425F4F;
  --peach: #F2C3A7;
  --peach-light: #FDFAF7;
  --warm-cream: #FDFBF7;
  --surface: #FFFFFF;
  --text-dark: #2C362F;
  --text-muted: #79877E;
  
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.8);
  
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--warm-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Organic Background Flow (Breathing Orbs) */
.ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--warm-cream);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--peach);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 800px;
  height: 800px;
  background: var(--sage-light);
  bottom: -200px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.05); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--sage-dark);
}

h2 {
  font-size: clamp(40px, 5vw, 56px);
  margin-bottom: 24px;
}

p {
  color: var(--text-muted);
  font-size: 19px;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  transition: all 0.5s ease;
  border: none;
}

.btn-primary {
  background-color: var(--sage-dark);
  color: #fff;
  box-shadow: 0 10px 30px rgba(66, 95, 79, 0.2);
}

.btn-primary:hover {
  background-color: var(--sage-green);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(66, 95, 79, 0.3);
}

.btn-secondary {
  background-color: rgba(255,255,255,0.7);
  color: var(--sage-dark);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Floating Bottom Nav - Softened */
.floating-nav {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  padding: 8px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 20px 40px rgba(103, 141, 119, 0.1), 0 1px 3px rgba(0,0,0,0.02);
}

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--sage-dark);
  text-decoration: none;
  padding: 0 16px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 32px;
  padding: 0 12px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.4s;
}

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

.nav-btn {
  background: var(--peach);
  color: var(--sage-dark);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.4s ease;
}

.nav-btn:hover {
  background: #f7d3be;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .floating-nav {
    bottom: 24px;
    width: calc(100% - 48px);
    justify-content: space-between;
  }
  .nav-links {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('assets/hero.jpg') center/cover no-repeat;
  z-index: 0;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -60px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  margin-bottom: 32px;
  line-height: 1.05;
}

.hero p {
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--sage-dark);
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
  }
}

/* Sections */
section {
  padding: 140px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Organic Cards (How it works & Security) */
.organic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  padding: 56px 48px;
  border-radius: 40px; /* Softer, rounder corners */
  border: 1px solid var(--glass-border);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 60px rgba(103, 141, 119, 0.08);
}

.card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.card p {
  font-size: 18px;
  line-height: 1.6;
}

.step-label {
  color: var(--sage-green);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}

/* Dashboard Preview */
.preview-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.preview-content {
  flex: 1;
}

.preview-image {
  flex: 1.2;
  position: relative;
}

.preview-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(66, 95, 79, 0.15);
}

@media (max-width: 1024px) {
  .preview-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
}

/* Use Cases List (Capabilities) */
.capabilities-wrapper {
  background: rgba(255,255,255,0.5);
  border-radius: 60px;
  padding: 80px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(103, 141, 119, 0.05);
}

.use-cases {
  column-count: 2;
  column-gap: 80px;
  margin-top: 40px;
}

.use-cases li {
  list-style: none;
  margin-bottom: 40px;
  break-inside: avoid;
  padding-left: 56px;
  position: relative;
}

.use-cases li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 32px;
  height: 32px;
  background: var(--peach-light);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--peach);
}

.use-cases li::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--sage-dark);
  border-radius: 50%;
}

.use-cases li strong {
  display: block;
  color: var(--sage-dark);
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .use-cases {
    column-count: 1;
  }
  .capabilities-wrapper {
    padding: 40px 24px;
    border-radius: 40px;
  }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  padding: 60px 0 160px;
  text-align: center;
  font-size: 14px;
  color: var(--sage-light);
}
