:root {
  --chocolate-deep: #1A0D07;
  --chocolate: #3A1F12;
  --chocolate-soft: #4B2A18;
  --orange: #F6A44B;
  --orange-soft: #F9BB63;
  --caramel: #F0C97D;
  --cream: #FFF5E2;
  --cream-soft: #F7E5CC;
  --shadow-soft: 0 26px 60px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
}

/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Quicksand", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2b140a 0, #080302 55%);
  color: var(--cream);
}

h1, h2, h3 {
  font-family: "Poppins", system-ui, sans-serif;
  margin-top: 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 4rem;
}

/* Background layers */
.hero-bg-layer {
  position: absolute;
  inset: -10%;
  filter: blur(40px);
  opacity: 0.85;
}

.hero-bg-1 {
  background: radial-gradient(circle at top left, #512717 0, #0b0503 55%);
}

.hero-bg-2 {
  background: radial-gradient(circle at top right, rgba(246, 164, 75, 0.5) 0, transparent 60%);
  mix-blend-mode: screen;
}

.hero-bg-3 {
  background: radial-gradient(circle at bottom, rgba(240, 201, 125, 0.52) 0, transparent 60%);
}

/* Nav */
.nav-bar {
  position: relative;
  z-index: 2;
  padding: 1.5rem 2.5rem 0.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-text {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-pill {
  padding: 0.45rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 245, 226, 0.3);
  background: radial-gradient(circle at top left, rgba(255,245,226,0.25), rgba(39,17,9,0.5));
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 2.5rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 880px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    align-items: center;
  }
}

.hero-card {
  padding: 2.4rem 2.2rem 2.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 245, 226, 0.18);
  background: radial-gradient(circle at top left, rgba(255,245,226,0.14), rgba(10,4,2,0.9));
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 164, 75, 0.45), transparent 60%);
  opacity: 0.8;
}

.hero-card h1 {
  font-size: clamp(2.2rem, 3.1vw, 2.8rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  margin-top: 0;
  color: var(--cream-soft);
  max-width: 480px;
  line-height: 1.7;
  font-size: 0.98rem;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pill-soft {
  background: rgba(246, 164, 75, 0.1);
  color: var(--orange-soft);
  border: 1px solid rgba(246, 164, 75, 0.55);
}

/* Buttons */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out;
}

.btn-primary {
  background: radial-gradient(circle at top left, #f9bb63, #f6a44b);
  color: var(--chocolate-deep);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.85);
}

.btn-ghost {
  background: rgba(8,4,2,0.6);
  color: var(--cream);
  border: 1px solid rgba(255,245,226,0.4);
  box-shadow: 0 14px 32px rgba(0,0,0,0.6);
}

.btn-ghost:hover {
  background: rgba(8,4,2,0.85);
  transform: translateY(-2px);
}

/* Hero meta */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,245,226,0.72);
}

.hero-meta span {
  position: relative;
  padding-left: 1.1rem;
}

.hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 45%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-soft);
}

/* Hero floating panel */
.hero-floating-panel {
  display: grid;
  gap: 1.4rem;
  justify-items: flex-end;
}

.hero-logo-orbit {
  position: relative;
  border-radius: 40px;
  padding: 1.3rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(255,245,226,0.2), rgba(15,7,3,0.92));
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.orbit-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top, rgba(246,164,75,0.65), transparent 60%),
    radial-gradient(circle at bottom right, rgba(240,201,125,0.7), transparent 60%);
  opacity: 0.9;
  filter: blur(18px);
}

.hero-logo {
  position: relative;
  width: 210px;
  max-width: 220px;
  animation: floatLogo 5s ease-in-out infinite;
}

.hero-badge {
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  background: linear-gradient(135deg, rgba(255,245,226,0.15), rgba(15,6,2,0.95));
  border: 1px solid rgba(255,245,226,0.25);
  box-shadow: var(--shadow-card);
  min-width: 230px;
}

.hero-badge-title {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,245,226,0.85);
}

.hero-badge-text {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.95rem;
}

/* Glass helper */
.glass {
  backdrop-filter: blur(24px);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: radial-gradient(circle at top, #2c150a 0, #120705 65%);
}

.section-light {
  background: radial-gradient(circle at top, #fff5e2 0, #f2e0c4 70%);
  color: var(--chocolate);
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section-header {
  max-width: 620px;
  text-align: left;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: rgba(255,245,226,0.78);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Experience cards */
.experience-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 860px) {
  .experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.xp-card {
  background: radial-gradient(circle at top, #422015, #1b0c08);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.7rem 1.8rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.xp-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,164,75,0.5), transparent 60%);
  opacity: 0.8;
}

.xp-card h3 {
  margin-bottom: 0.4rem;
}

.xp-card p {
  margin-top: 0;
  color: rgba(255,245,226,0.85);
  line-height: 1.6;
}

.xp-tag {
  margin-top: 1.2rem;
  display: inline-flex;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(8,4,3,0.82);
  border: 1px solid rgba(246,164,75,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246,164,75,0.92);
}

/* Coming soon & updates */
.coming-grid {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 860px) {
  .coming-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  }
}

.coming-text h2 {
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
}

.coming-text p {
  margin-top: 0;
  color: #5a3824;
  line-height: 1.8;
}

.coming-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.4rem;
}

.coming-list li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.98rem;
}

.coming-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--caramel));
}

.coming-panel {
  border-radius: var(--radius-lg);
  padding: 2.1rem 2rem 2rem;
  background: radial-gradient(circle at top left, rgba(255,245,226,0.9), #f5ddbf);
  box-shadow: 0 20px 48px rgba(97, 54, 18, 0.3);
  color: #3b1f12;
}

.coming-panel h3 {
  margin-bottom: 0.6rem;
}

.coming-panel p {
  margin-top: 0;
  line-height: 1.7;
}

.pseudo-input-row {
  display: flex;
  gap: 0.5rem;
  margin: 1.4rem 0 0.8rem;
}

.pseudo-input {
  flex: 1;
  background: #fffaf1;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  color: #9f8465;
  border: 1px solid #f1cf9d;
}

.pseudo-btn {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #f8c16c);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coming-note {
  font-size: 0.8rem;
  color: #7b5b3d;
  margin-top: 0.6rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.social-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(59,31,16,0.08);
  border: 1px solid rgba(59,31,16,0.22);
  font-size: 0.8rem;
}

/* Footer */
.footer {
  padding: 1.8rem 0 2rem;
  background: #0b0503;
  text-align: center;
  color: rgba(255,245,226,0.76);
  font-size: 0.85rem;
}

/* Animations */
@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive tweaks */
@media (max-width: 720px) {
  .hero-content {
    padding: 0 1.4rem;
  }
  .hero-card {
    padding: 2rem 1.7rem;
  }
  .hero-floating-panel {
    justify-items: center;
  }
  .hero-logo {
    width: 180px;
  }
}
