:root {
  --bg: #050608;
  --bg-alt: #0b0f16;
  --accent: #f6b26b;
  --accent-soft: rgba(246,178,107,0.16);
  --text: #f5f5f5;
  --muted: #a9a9b8;
  --border: #222633;
  --card: rgba(7, 10, 18, 0.94);
}

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

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 12% 12%, rgba(246,178,107,0.12), transparent 32%),
              radial-gradient(circle at 88% 8%, rgba(102,192,191,0.12), transparent 34%),
              radial-gradient(circle at 50% 50%, #1b2838 0, #050608 55%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -18%;
  pointer-events: none;
  mix-blend-mode: screen;
}

body::before {
  background:
    linear-gradient(118deg, rgba(246,178,107,0.28) 0%, rgba(246,178,107,0) 24%),
    linear-gradient(142deg, rgba(102,192,191,0.22) 0%, rgba(102,192,191,0) 23%),
    linear-gradient(168deg, rgba(195,143,75,0.20) 0%, rgba(195,143,75,0) 22%);
  background-size: 140% 140%;
  filter: blur(1px);
  opacity: 0.42;
  animation: spiceSweep 12s ease-in-out infinite alternate;
}

body::after {
  background-image:
    radial-gradient(8px 8px at 10% 20%, rgba(246,178,107,0.55), transparent 70%),
    radial-gradient(10px 10px at 35% 45%, rgba(102,192,191,0.50), transparent 70%),
    radial-gradient(9px 9px at 65% 30%, rgba(246,178,107,0.55), transparent 70%),
    radial-gradient(7px 7px at 82% 60%, rgba(195,143,75,0.48), transparent 70%),
    radial-gradient(10px 10px at 55% 80%, rgba(246,178,107,0.52), transparent 70%);
  background-size: 240px 240px, 220px 240px, 190px 210px, 220px 220px, 200px 220px;
  opacity: 0.55;
  animation: spiceDrift 14s linear infinite;
}

@keyframes spiceSweep {
  0% { transform: translate3d(-6%, -4%, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(6%, 4%, 0) rotate(3deg) scale(1.08); }
  100% { transform: translate3d(10%, -6%, 0) rotate(-4deg) scale(1.12); }
}

@keyframes spiceDrift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-30px, -40px, 0); }
  50% { transform: translate3d(50px, -10px, 0); }
  75% { transform: translate3d(-20px, 30px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

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

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 16px 80px;
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: radial-gradient(circle at 30% 0%, #f6b26b 0, #8a5a2b 45%, #050608 100%);
  box-shadow: 0 0 18px rgba(246,178,107,0.35);
  color: #0b0704;
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

nav a {
  color: var(--muted);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.9fr);
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  background: rgba(5, 6, 8, 0.9);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 10px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f6b26b;
  box-shadow: 0 0 8px rgba(246,178,107,0.6);
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 42px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  color: var(--muted);
  font-size: 15px;
  max-width: 540px;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-meta strong {
  color: var(--text);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-ghost {
  font-size: 13px;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f6b26b, #e69138);
  border-color: transparent;
  color: #140c07;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.6);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--muted);
  background: rgba(5, 6, 8, 0.7);
}

.btn-ghost:hover {
  border-color: var(--accent-soft);
  color: var(--text);
}

.hero-card {
  border-radius: 18px;
  padding: 18px 16px;
  background: linear-gradient(145deg, rgba(10,15,24,0.96), rgba(7,9,15,0.98));
  border: 1px solid rgba(246,178,107,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  font-size: 13px;
}

.hero-card-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-card-main {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--text);
}

.hero-card-main span {
  color: var(--accent);
}

.hero-card-meta {
  border-top: 1px dashed var(--border);
  margin-top: 10px;
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 22px;
  font-size: 11px;
  color: var(--muted);
}

.hero-card-meta strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

section {
  margin-top: 40px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

section h2 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

section p {
  font-size: 14px;
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 6px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.contact-card {
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-main {
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-note {
  font-size: 12px;
  color: var(--muted);
}

footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
footer span { flex: 1; }
footer .footer-center { text-align: center; }
footer span:last-child { text-align: right; }

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav {
    font-size: 13px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
}
