:root {
  --bg: #06120f;
  --surface: #0b1b17;
  --surface-2: #10251f;
  --text: #f5fff9;
  --muted: #a9bdb5;
  --line: rgba(255, 255, 255, 0.12);
  --green: #30f2a6;
  --teal: #38d9d0;
  --ink: #07100d;
  --amber: #ffd36a;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 18, 15, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--green), var(--teal));
  color: var(--ink);
  font-weight: 950;
}

.nav-links,
.lang-switch {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.lang-switch {
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-switch a {
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
}

.lang-switch a[aria-current="true"] {
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
}

.button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  gap: 9px;
}

.button:hover,
.mini-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 18px 42px rgba(48, 242, 166, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 15, 0.98) 0%, rgba(6, 18, 15, 0.86) 42%, rgba(6, 18, 15, 0.32) 72%, rgba(6, 18, 15, 0.72) 100%),
    url("hero.jpg") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(0deg, var(--bg), rgba(6, 18, 15, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5fff0;
  border: 1px solid rgba(48, 242, 166, 0.28);
  background: rgba(48, 242, 166, 0.1);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 850;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  margin-top: 22px;
  font-size: clamp(42px, 6vw, 82px);
}

h2 {
  font-size: clamp(28px, 3.6vw, 48px);
}

h3 {
  font-size: 21px;
}

.hero-copy,
.section-head p,
.card p,
.cta-panel p,
.reward p,
details p {
  color: var(--muted);
}

.hero-copy {
  max-width: 710px;
  margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 850px;
  margin-top: 34px;
}

.trust-item,
.card,
.reward-amount,
.cta-panel,
details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.trust-item {
  padding: 16px;
  border-radius: 8px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 22px;
}

.trust-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

section {
  padding: 92px 0;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bonus-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(48, 242, 166, 0.1), rgba(56, 217, 208, 0.04));
}

.reward,
.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: center;
}

.reward-amount {
  border-radius: 8px;
  padding: 26px;
  background: rgba(6, 18, 15, 0.72);
}

.reward-amount b {
  display: block;
  color: var(--green);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
}

.reward-amount span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p {
  margin: 14px 0 0;
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  min-height: 100%;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.035));
}

.card p {
  margin: 12px 0 0;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.brief-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.brief-pill {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 750;
}

.brief-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.brief-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.brief-item strong {
  display: block;
  margin-bottom: 6px;
}

.history-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.history-link {
  display: grid;
  grid-template-columns: minmax(120px, 0.25fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.history-link:hover {
  border-color: rgba(48, 242, 166, 0.45);
}

.history-date {
  color: var(--green);
  font-weight: 850;
}

.history-title {
  color: var(--text);
  font-weight: 800;
}

.history-summary {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.history-tag {
  color: var(--ink);
  background: var(--green);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
}

.code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: #eafff6;
  font-weight: 850;
}

.mini-button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  color: var(--ink);
  background: var(--green);
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

li + li {
  margin-top: 8px;
}

.faq {
  background: var(--surface);
}

details {
  border-radius: 8px;
  padding: 20px 22px;
}

details + details {
  margin-top: 12px;
}

summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 18px;
}

.cta-panel {
  border-radius: 8px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(48, 242, 166, 0.16), rgba(255, 255, 255, 0.05));
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 72px 0 86px;
  }

  .trust-row,
  .grid-3,
  .grid-2,
  .brief-layout,
  .reward,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .history-link {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand span:last-child {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 40px;
  }

  section {
    padding: 68px 0;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
