* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1f2623;
  --bg-2: #29312d;
  --ivory: #f4efe8;
  --stone: #ddd3c6;
  --muted: #b9b2a7;
  --sage: #98aa9e;
  --sage-deep: #6f857b;
  --gold: #d3b06b;
  --line: rgba(255, 248, 240, 0.12);
  --panel: rgba(255, 248, 240, 0.08);
  --panel-soft: rgba(255, 248, 240, 0.05);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 20%, rgba(152, 170, 158, 0.12), transparent 28%),
    radial-gradient(circle at 80% 65%, rgba(211, 176, 107, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  min-height: 100vh;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 28px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 12px 0 44px;
}

.hero-copy {
  max-width: 600px;
  animation: fadeUp 0.8s ease forwards;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ivory);
}

.tagline {
  max-width: 560px;
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--stone);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.launch-pill {
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(211, 176, 107, 0.55);
  background: rgba(255, 248, 240, 0.04);
  color: var(--ivory);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--sage-deep);
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  box-shadow: 0 12px 28px rgba(111, 133, 123, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: #8fa79c;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(111, 133, 123, 0.34);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-feature {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #f4efe8, #e8e1d6);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    inset 0 2px 8px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 248, 240, 0.4);
}


.logo-feature::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 176, 107, 0.14), transparent 70%);
  z-index: -1;
  animation: glowPulse 8s ease-in-out infinite;
}

.logo-feature img {
  width: 120%;
  height: auto;
  object-fit: cover;
  display: block;
  transform: scale(1.35);
}

/* LOWER PANEL */
.info-panel {
  padding: 8px 0 28px;
}

.panel-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  padding: 42px 40px 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.06);
}

.panel-inner:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.panel-inner::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 40px;
  width: 76px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

.panel-inner::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 36px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 170, 158, 0.2), transparent 70%);
  pointer-events: none;
}

.panel-label {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 14px;
  margin-top: 26px;
}

.panel-left h2,
.panel-right h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ivory);
}

.panel-left p,
.panel-right p {
  color: var(--stone);
  line-height: 1.8;
  font-size: 1.02rem;
}

.panel-right {
  padding-top: 40px;
}

.panel-right p + p {
  margin-top: 8px;
}

.panel-right strong {
  color: var(--ivory);
  display: inline-block;
  min-width: 84px;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 22px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
  }

  .tagline {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .panel-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .panel-right {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }

  .tagline {
    font-size: 1.08rem;
    margin-top: 8px;
    color: #d8d2c8;
  }

  .hero-actions {
    flex-direction: column;
  }

  .launch-pill,
  .btn {
    width: 100%;
  }

  .logo-feature {
    width: 260px;
    height: 260px;
    animation: float 6s ease-in-out infinite;
  }


  .panel-inner {
    padding: 34px 24px 28px;
  }

  .panel-inner::before {
    left: 24px;
  }

  .panel-label {
    margin-top: 18px;
  }

  .panel-left h2,
  .panel-right h2 {
    font-size: 1.65rem;
  }

  .panel-right strong {
    min-width: 74px;
  }
}

@keyframes glowPulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes fadeUp {
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

