@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0b1117;
  --bg-soft: #111a23;
  --bg-card: rgba(15, 22, 31, 0.88);
  --bg-panel: rgba(10, 16, 23, 0.92);
  --text: #edf3f8;
  --muted: #9fb0bf;
  --accent: #e0aa3b;
  --accent-strong: #ffca63;
  --accent-cool: #2b556d;
  --line: rgba(159, 176, 191, 0.18);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(43, 85, 109, 0.28), transparent 32%),
    linear-gradient(180deg, #0d141b 0%, var(--bg) 58%, #0c1218 100%);
  color: var(--text);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  opacity: 0.35;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.bg-orb--left {
  width: 260px;
  height: 260px;
  background: var(--accent-cool);
  left: -70px;
  top: 90px;
}

.bg-orb--right {
  width: 300px;
  height: 300px;
  background: var(--accent);
  right: -120px;
  top: 300px;
}

.top,
.layout,
.foot {
  width: min(1060px, 92vw);
  margin-inline: auto;
}

.top {
  padding: 22px 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.top__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(224, 170, 59, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(43, 85, 109, 0.08));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
  filter: brightness(1.18) contrast(1.08);
}

.top__brand {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.top__tagline {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.18rem;
  max-width: 52ch;
}

.top__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 170, 59, 0.34);
  color: var(--text);
  background: rgba(224, 170, 59, 0.09);
  font-weight: 700;
}

.layout {
  padding: 26px 0 56px;
  display: grid;
  gap: 22px;
}

.hero {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(43, 85, 109, 0.18), rgba(224, 170, 59, 0.08)),
    var(--bg-card);
  box-shadow: var(--shadow);
  animation: rise 500ms ease-out;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.hero__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero__logo {
  display: block;
  width: auto;
  max-width: min(220px, 46%);
  height: 38px;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.88;
  filter: brightness(1.08) contrast(1.03);
}

h1,
h2,
h3 {
  font-family: 'Chakra Petch', sans-serif;
  line-height: 1.2;
}

h1 {
  margin: 12px 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 0;
  max-width: 70ch;
  color: #ced8e1;
}

.hero__panel {
  border: 1px solid rgba(224, 170, 59, 0.18);
  border-radius: 18px;
  padding: 1.1rem;
  background: var(--bg-panel);
}

.hero__panel-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(224, 170, 59, 0.28);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__panel h2 {
  margin: 0;
  font-size: 1.15rem;
}

.signal-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.signal-list li {
  position: relative;
  padding-left: 1rem;
  color: #d7e1e9;
}

.signal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  transition: transform 120ms ease, filter 120ms ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1305;
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  animation: rise 600ms ease-out;
}

.card p {
  color: #d2dde7;
}

.card h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

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

.tile,
.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(43, 85, 109, 0.05));
}

.tile h3,
.step h3 {
  margin: 0 0 8px;
}

.tile p,
.step p {
  margin: 0;
}

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

.step__num {
  display: inline-flex;
  margin-bottom: 8px;
  background: rgba(224, 170, 59, 0.14);
  color: var(--accent-strong);
  border: 1px solid rgba(224, 170, 59, 0.3);
  border-radius: 999px;
  padding: 2px 10px;
  font-weight: 700;
  font-size: 0.8rem;
}

.card--contact {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(43, 85, 109, 0.18), rgba(224, 170, 59, 0.08)),
    var(--bg-card);
}

.foot {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 4px 0 30px;
  border-top: 1px solid var(--line);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .hero__grid,
  .grid--strengths,
  .grid--steps {
    grid-template-columns: 1fr;
  }

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

  .top__identity {
    align-items: flex-start;
    width: 100%;
    padding: 0.8rem 0.9rem;
  }

  .brand-logo {
    height: 46px;
  }

  .hero {
    padding: 26px;
  }

  .hero__logo {
    height: 34px;
    max-width: 180px;
  }

  .top__cta {
    width: 100%;
  }
}
