:root {
  --ink: #1c1a17;
  --muted: #4b4b4b;
  --accent: #e76f51;
  --accent-2: #2a9d8f;
  --sand: #fdf7f0;
  --sun: #f4a261;
  --sky: #bfe3da;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(28, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(60% 60% at 20% 10%, rgba(244, 162, 97, 0.35), transparent 70%),
    radial-gradient(55% 55% at 80% 0%, rgba(42, 157, 143, 0.28), transparent 65%),
    linear-gradient(180deg, #fffaf5 0%, #f7efe5 45%, #fdf7f0 100%);
  min-height: 100vh;
}

h1, h2, h3, .display-hero {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--accent-2);
  text-decoration: none;
}

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

.navbar {
  backdrop-filter: blur(8px);
  background: rgba(253, 247, 240, 0.75);
  border-bottom: 1px solid var(--border);
}

.hero {
  position: relative;
  padding: 96px 0 64px;
}

.hero .badge {
  background: rgba(42, 157, 143, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(42, 157, 143, 0.25);
  font-weight: 500;
}

.hero-cta .btn {
  border-radius: 999px;
  padding: 12px 28px;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 12px 24px rgba(231, 111, 81, 0.25);
}

.btn-accent:hover {
  background: #d75a40;
  color: #fff;
}

.btn-outline-sand {
  border: 1px solid var(--border);
  color: var(--ink);
  background: #fff;
}

.section {
  padding: 64px 0;
}

.glass {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(28, 26, 23, 0.08);
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 111, 81, 0.12);
  color: var(--accent);
  font-weight: 600;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
}

.orb.one {
  width: 180px;
  height: 180px;
  background: rgba(244, 162, 97, 0.6);
  top: 20px;
  left: 10%;
}

.orb.two {
  width: 220px;
  height: 220px;
  background: rgba(42, 157, 143, 0.5);
  bottom: 10px;
  right: 12%;
  animation-delay: -2s;
}

.reveal {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.reveal.delay-1 {
  animation-delay: 0.1s;
}

.reveal.delay-2 {
  animation-delay: 0.2s;
}

.reveal.delay-3 {
  animation-delay: 0.3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(253, 247, 240, 0.7);
}

pre {
  background: #1f1d1a;
  color: #fdf7f0;
  padding: 18px;
  border-radius: 16px;
  overflow-x: auto;
  font-size: 0.9rem;
}

code {
  color: inherit;
}

.table thead th {
  background: rgba(42, 157, 143, 0.12);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.form-control, .form-select {
  border-radius: 14px;
  border: 1px solid var(--border);
}

.badge-soft {
  background: rgba(42, 157, 143, 0.15);
  color: var(--accent-2);
}

.admin-shell {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(28, 26, 23, 0.08);
}

@media (max-width: 768px) {
  .hero {
    padding: 72px 0 48px;
  }
  .glass {
    padding: 22px;
  }
}
