:root {
  --accent-500: oklch(0.66 0.16 175);
  --accent-600: oklch(0.58 0.15 175);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  background: #241a14;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Scene (full-page illustrated background) */

.scene {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.35), rgba(18, 12, 9, 0.72));
}

.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.brand-logo {
  height: 32px;
  width: 32px;
  border-radius: 6px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--accent-600);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 10px;
}

/* Hero */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fdf3e7;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fdf3e7;
}

.feature-chip svg {
  width: 18px;
  height: 18px;
  color: #6fd7c4;
  flex-shrink: 0;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.site-footer p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (max-width: 640px) {
  .header-inner {
    padding: 16px 20px;
  }

  .hero {
    padding: 24px 0;
  }

  .hero-sub {
    font-size: 15.5px;
  }

  .feature-chip {
    font-size: 12.5px;
    padding: 9px 14px 9px 12px;
  }
}
