:root {
  --bg: #ffffff;
  --bg-tint: #f5f7fa;
  --text: #0b1220;
  --muted: #5b6475;
  --line: rgba(12, 18, 32, 0.10);
  --card: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 60px rgba(11, 18, 32, 0.10);

  --accent: #0a4c9a;
  --accent-2: #0b6bcb;

  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1100px;

  --focus: 0 0 0 3px rgba(10, 76, 154, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(11, 107, 203, 0.12), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(10, 76, 154, 0.10), transparent 55%),
    var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 180ms ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
}

.muted {
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.header[data-elevated="true"] {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(11, 18, 32, 0.06);
}

.header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
}

.brand__logo {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 18, 32, 0.04);
  border: 1px solid rgba(11, 18, 32, 0.06);
}

.brand__text {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand__sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 140ms ease, color 140ms ease;
}

.nav a:hover {
  background: rgba(11, 18, 32, 0.04);
  color: var(--text);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 40px rgba(10, 76, 154, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 55px rgba(10, 76, 154, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.78);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.menu-btn__lines {
  display: block;
  width: 18px;
  height: 12px;
  position: relative;
  margin: 0 auto;
}

.menu-btn__lines::before,
.menu-btn__lines::after,
.menu-btn__lines {
  background: transparent;
}

.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 140ms ease, top 140ms ease, opacity 140ms ease;
}

.menu-btn__lines::before {
  top: 1px;
}

.menu-btn__lines::after {
  top: 9px;
}

.menu-btn[data-open="true"] .menu-btn__lines::before {
  top: 5px;
  transform: rotate(45deg);
}

.menu-btn[data-open="true"] .menu-btn__lines::after {
  top: 5px;
  transform: rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-nav__inner {
  display: grid;
  gap: 8px;
  padding: 14px 24px 18px;
}

.mobile-nav a {
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid transparent;
  background: transparent;
}

.mobile-nav a:hover {
  color: var(--text);
  background: rgba(11, 18, 32, 0.04);
}

.hero {
  padding: 84px 0 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero__copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(36px, 4.3vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10, 76, 154, 0.85);
}

.lead {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero__stats {
  margin: 22px 0 0;
  padding: 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero__stats dt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__stats dd {
  margin: 4px 0 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.40);
  box-shadow: var(--shadow);
}

.media-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(11, 18, 32, 0.04);
}

.media-card__overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 18, 32, 0.10);
  backdrop-filter: blur(12px);
}

.media-card__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.media-card__meta {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.om-media {
  margin-top: 16px;
}

.section {
  padding: 68px 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.75), rgba(245, 247, 250, 0.35));
  border-top: 1px solid rgba(11, 18, 32, 0.06);
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.section__head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.section__head p {
  margin: 0;
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(11, 18, 32, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.06);
  padding: 18px 18px;
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card--feature {
  padding: 20px 20px;
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 40px rgba(10, 76, 154, 0.22);
  margin-bottom: 12px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(10, 76, 154, 0.92);
  font-weight: 800;
}

.text-link:hover {
  text-decoration: underline;
}

.event__date {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10, 76, 154, 0.85);
}

.event__meta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.event__agenda {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 14px;
}

.partner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: center;
}

.partner__logo {
  border: 1px solid rgba(11, 18, 32, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 160px;
}

.partner__img {
  max-height: 66px;
  width: auto;
}

.partner__copy h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.partner-types .card {
  box-shadow: none;
}

.updates-card {
  display: grid;
  gap: 16px;
}

.updates-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(129, 52, 175, 0.35);
}

.btn--instagram:hover {
  box-shadow: 0 18px 55px rgba(129, 52, 175, 0.45);
}

.btn--linkedin {
  background: #0a66c2;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(10, 102, 194, 0.25);
}

.btn--linkedin:hover {
  box-shadow: 0 18px 55px rgba(10, 102, 194, 0.35);
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-left: 8px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.form label:first-of-type {
  margin-top: 0;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.form textarea {
  resize: vertical;
}

.form select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
}

.fineprint {
  font-size: 12px;
  margin-top: 10px;
}

.steps {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.steps li {
  margin-bottom: 4px;
}

.market-card {
  padding: 10px 10px;
}

.tradingview-widget-container {
  width: 100%;
}

.tradingview-widget-container__widget {
  width: 100%;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand {
  display: grid;
  gap: 2px;
}

.footer__name {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer__meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.footer__copy {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 940px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .partner {
    grid-template-columns: 1fr;
  }

  .partner__logo {
    min-height: unset;
    justify-items: start;
  }
}

@media (max-width: 840px) {
  .nav {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .header__actions .btn--primary {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 72px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
  }
}
