
:root {
  --bg: #020b0a;
  --bg-alt: #071713;
  --card: #0a201b;
  --accent: #00b37a;
  --gold: #f5d37a;
  --text-main: #f7f7f7;
  --text-soft: #b2c3c3;
  --border-soft: rgba(245, 211, 122, 0.2);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --max-width: 1120px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #093328 0, #020b0a 55%, #010506 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(2, 11, 10, 0.96), rgba(2, 11, 10, 0.85));
  border-bottom: 1px solid var(--border-soft);
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area { display: flex; align-items: center; gap: 0.75rem; }

.logo-img {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(245, 211, 122, 0.7);
  box-shadow: 0 0 18px rgba(245, 211, 122, 0.65);
}

.logo-text { display: flex; flex-direction: column; font-size: 0.8rem; }
.logo-main { font-weight: 700; letter-spacing: 0.09em; }
.logo-sub { font-size: 0.72rem; color: var(--text-soft); }

.main-nav { display: flex; gap: 1.2rem; font-size: 0.86rem; }
.main-nav a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}
.main-nav a:hover { color: var(--gold); }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.4rem 1.25rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 1.5rem;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #12402f 0, #050e0b 45%, #020403 100%);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  margin-bottom: 2.4rem;
}

.hero-main h1 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-simple h1 {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-content p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex; flex-wrap: wrap;
  gap: 0.8rem; margin-top: 1.2rem;
}

.hero-media { justify-self: center; }

.hero-image-large {
  border-radius: 20px;
  border: 1px solid rgba(245, 211, 122, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

.hero-logo-square, .hero-logo-crest {
  width: 220px;
  border-radius: 32px;
  border: 1px solid rgba(245, 211, 122, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #ffeb9b);
  color: #1b1305;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(245, 211, 122, 0.7);
  color: var(--gold);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.section {
  margin-bottom: 2.6rem;
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #0d2620 0, #050c0a 55%, #020404 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.section.alt {
  background: radial-gradient(circle at top, #102820 0, #050a08 55%, #020303 100%);
}

.section-title {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.section-intro {
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.stages .stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.stage-card {
  background: linear-gradient(160deg, #10261f, #050d0b);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.stage-card h3 { margin: 0 0 0.15rem; text-transform: uppercase; letter-spacing: 0.09em; }

.stage-subtitle {
  margin: 0 0 0.7rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.coin-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.coin-pair img {
  border-radius: 12px;
  border: 1px solid rgba(245, 211, 122, 0.5);
}

.stage-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.info-card {
  background: #071814;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 0.9rem 0.9rem 1.05rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.info-card h3 {
  margin-top: 0;
  font-size: 0.98rem;
  color: var(--gold);
}

.bullets {
  margin: 0 0 0.6rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.apply-form { max-width: 620px; margin-top: 1rem; }

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
}

label { font-size: 0.86rem; color: var(--text-soft); }

input, textarea {
  background: #020807;
  border-radius: 10px;
  border: 1px solid rgba(245, 211, 122, 0.4);
  padding: 0.5rem 0.6rem;
  color: var(--text-main);
  font: inherit;
}

textarea { resize: vertical; }

.site-footer {
  border-top: 1px solid var(--border-soft);
  margin-top: 1.4rem;
  padding: 1.3rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.footer-small { font-size: 0.78rem; opacity: 0.8; }

@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-media { order: -1; }
  .stages .stage-grid { grid-template-columns: minmax(0, 1fr); }
  .highlight-grid, .three-col { grid-template-columns: minmax(0, 1fr); }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .main-nav {
    width: 100%;
    justify-content: space-between;
  }
}
