:root {
  --black: #050505;
  --ink: #111111;
  --panel: #181818;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.14);
  --red: #e11722;
  --red-dark: #9c0f17;
  --white: #ffffff;
  --gold: #d7b56d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 94px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #000000;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  color: #f4f4f4;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 30px);
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color 0.2s ease;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 150px clamp(20px, 6vw, 84px) 70px;
  overflow: hidden;
  background-image: url("trading-bg.svg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 36%);
}

.hero-content,
.market-panel,
.hero-photo-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: #e7e7e7;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #eeeeee;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.58);
}

.market-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.market-panel div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-label,
.contact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.market-panel strong {
  display: block;
  font-size: 18px;
}

.hero-photo-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.86);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.photo-caption {
  padding: 20px;
}

.photo-caption span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-caption strong {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.25;
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #242424;
}

.market-strip article {
  padding: 24px clamp(18px, 3vw, 34px);
  background: #0d0d0d;
}

.market-strip span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.market-strip strong,
.market-strip small {
  display: block;
}

.market-strip strong {
  font-size: 20px;
}

.market-strip small {
  color: #b9b9b9;
  font-weight: 700;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 84px);
  background: #ffffff;
  color: var(--ink);
}

.section-dark {
  background: #0a0a0a;
  color: var(--white);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  max-width: 1120px;
  color: #3d3d3d;
  font-size: 18px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.story-layout .intro-grid {
  grid-template-columns: 1fr;
}

.team-visual,
.motion-chart {
  margin: 0;
}

.team-visual img,
.motion-chart img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.program-section {
  background: #f8f8f8;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.program-card.featured {
  color: #ffffff;
  background: linear-gradient(145deg, #111111, #3d0509);
  border-color: rgba(255, 255, 255, 0.12);
}

.program-card h3 {
  margin: 24px 0 12px;
  font-size: 25px;
  line-height: 1.15;
}

.program-card p {
  color: #555555;
  font-size: 16px;
}

.program-card.featured p {
  color: #d8d8d8;
}

.program-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.program-card.featured a {
  color: var(--gold);
}

.program-chart {
  position: relative;
  height: 150px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #101010;
  overflow: hidden;
}

.program-chart span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.program-chart span:nth-child(1) { height: 48%; }
.program-chart span:nth-child(2) { height: 76%; background: #eeeeee; }
.program-chart span:nth-child(3) { height: 58%; }
.program-chart span:nth-child(4) { height: 88%; background: var(--gold); }

.program-chart.line::before {
  content: "";
  position: absolute;
  inset: 24px;
  background:
    linear-gradient(140deg, transparent 0 18%, var(--red) 18% 21%, transparent 21% 42%, #ffffff 42% 45%, transparent 45% 66%, var(--gold) 66% 69%, transparent 69%);
}

.program-chart.bars {
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    #101010;
  background-size: 100% 34px, 56px 100%, auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.feature-card span {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.feature-card p {
  color: #d0d0d0;
}

.activity-section {
  background: #f2f2f2;
}

.activity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: 28px;
}

.activity-feature img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.activity-feature h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
}

.activity-feature p {
  color: #444444;
  font-size: 18px;
}

.activity-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.activity-points span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  border: 1px solid #dddddd;
  font-size: 13px;
  font-weight: 900;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.activity-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.activity-card div {
  padding: 22px;
}

.activity-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.activity-card p {
  margin-bottom: 0;
  color: #555555;
}

.analysis-section {
  background: #111111;
  color: var(--white);
}

.analysis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.motion-chart img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.analysis-cards {
  display: grid;
  gap: 16px;
}

.analysis-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.analysis-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1.15;
}

.analysis-card p {
  margin-bottom: 0;
  color: #cfcfcf;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 120px;
}

.bar-chart span {
  display: block;
  min-height: 20px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  animation: barPulse 2.8s ease-in-out infinite;
}

.bar-chart span:nth-child(even) {
  background: linear-gradient(180deg, #f2f2f2, #9f9f9f);
  animation-delay: .35s;
}

.sector-list {
  display: grid;
  gap: 13px;
}

.sector-list span {
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.sector-list i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
  animation: loadBar 2.6s ease-in-out infinite alternate;
}

.testimonials-section {
  background: #f7f7f7;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 28px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.stars {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0;
}

.testimonial-card p {
  color: #333333;
  font-size: 17px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: #111111;
  font-size: 18px;
}

.testimonial-card span {
  color: #666666;
  font-size: 14px;
}

.risk-note {
  max-width: 980px;
  margin: 24px 0 0;
  color: #666666;
  font-size: 14px;
}

.contact-section {
  background: #f3f3f3;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
}

.contact-card {
  padding: 24px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #ffffff;
}

.contact-card strong,
.contact-card a,
.contact-card address {
  color: #111111;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--red);
}

.contact-card.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 84px);
  color: #c9c9c9;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 178px;
  }

  .market-panel {
    max-width: 520px;
  }

  .intro-grid,
  .feature-grid,
  .program-grid,
  .story-layout,
  .analysis-layout,
  .testimonial-grid,
  .activity-feature,
  .activity-grid,
  .market-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .motion-chart img {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
  }

  .brand-text {
    font-size: 14px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 920px;
    padding: 168px 18px 44px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .feature-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(.86);
    transform-origin: bottom;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes loadBar {
  from {
    transform: scaleX(.72);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
