:root {
  --bg: #0f172a;
  --panel: #0b1223;
  --panel-soft: #111a2f;
  --text: #e6eaf5;
  --muted: #9fb0d2;
  --accent: #ff7a40;
  --accent-2: #34d399;
  --border: #1f2a44;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'DM Sans', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 122, 64, 0.16), transparent 32%),
              radial-gradient(circle at 80% 10%, rgba(52, 211, 153, 0.18), transparent 28%),
              var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

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

a:hover {
  color: #e7e7e7;
}

.hero {
  position: relative;
  padding: 96px 20px 120px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 122, 64, 0.22), rgba(52, 211, 153, 0.14) 45%, rgba(15, 23, 42, 0.9));
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1), transparent 40%);
  /* filter: blur(40px); */
}

.hero__content {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero__logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  margin: 0 auto 14px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 10px 0 12px;
  letter-spacing: -0.02em;
}

.lede {
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #0b0f1c;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(255, 122, 64, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 122, 64, 0.18);
  background: #ff6f37;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

main {
  max-width: 1080px;
  margin: -48px auto 80px;
  padding: 0 20px;
}

.section {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-soft) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  margin-bottom: 20px;
  position: relative;
}

.section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.section h2 {
  margin: 0;
  font-size: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 16px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  list-style: none;
  margin: 0;
  display: grid;
  gap: 10px;
}

.card li {
  margin: 0;
  padding-left: 6px;
}

.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.notice {
  color: #ffcc9b;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.contact {
  border: 1px solid #1f3a3d;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.label {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 4px;
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 22px 12px 32px;
  border-top: 1px solid var(--border);
  background: rgba(11, 15, 28, 0.8);
}

@media (max-width: 640px) {
  .section {
    padding: 22px 18px;
  }

  .hero {
    padding: 82px 18px 96px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
