:root {
  color-scheme: light;
  --orange: #f77226;
  --orange-solid: #f77d37;
  --gold: #e8b830;
  --dark: #111111;
  --white: #ffffff;
  --section-width: 980px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background: #fff;
}

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

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

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.container {
  width: min(100%, var(--section-width));
  margin: 0 auto;
  padding: 0;
}

/* ─── Top bar ─── */
.top-bar {
  height: 40px;
  background: #eff1f2;
}

/* ─── Header ─── */
.site-header {
  background: #fff;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 21px 40px;
}

.logo img {
  width: 131px;
}

.nav {
  display: flex;
  gap: 0;
  margin-top: 14px;
}

.nav a {
  font-size: 15px;
  line-height: 22.5px;
  padding: 4px 15px;
  color: #000;
}

.nav a.active {
  color: var(--orange);
}

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

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 108px 0 157px;
  background: linear-gradient(135deg, #f78726 0%, #f7a026 40%, #f77226 70%, #f78a26 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero .container {
  width: min(100%, 1200px);
}

.hero-logo {
  margin: 0 auto 27px;
  width: 266px;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.2;
  margin: 0 0 21px;
  font-weight: 400;
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: 875px;
  margin: 0 auto 39px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 257px;
  height: 39px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ─── Sections ─── */
.section {
  padding: 70px 0;
}

.section--orange {
  background: var(--orange-solid);
  padding: 100px 0 110px;
}

.section--orange-alt {
  background: #f77c34;
}

/* ─── Section titles ─── */
.section-title {
  font-size: 58px;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--orange);
  font-weight: 400;
}

.section-title--lg {
  font-size: 50px;
}

.section-title--sm {
  font-size: 25px;
}

.section-title--center {
  text-align: center;
}

.section-title--white {
  color: #fff;
}

.section-title--wide {
  max-width: 925px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Intro section ─── */
.section-intro .kicker {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-intro .body-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  max-width: 830px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 100px;
  margin-top: 50px;
}

.feature-grid .feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-grid .feature .arrow {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-grid .feature h3 {
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 0;
  line-height: 1.3;
}

/* ─── Commodities ─── */
.commodities-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px 0;
  text-align: center;
  max-width: 900px;
  margin: 30px auto 0;
}

.commodities-grid .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.commodities-grid .spacer {
  display: block;
}

.commodities-grid img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

/* ─── Indicators section ─── */
.indicators-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 40px;
}

.indicators-intro .wave-img {
  width: 240px;
  margin-top: 10px;
}

.section-indicators > .container > .section-title {
  margin-bottom: 20px;
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  margin-bottom: 40px;
}

.indicators-grid .card {
  background: rgba(247, 186, 38, 0.2);
  border: none;
  border-radius: 10px;
  padding: 24px;
}

.indicators-grid .card--tall {
  grid-row: 1 / 3;
  grid-column: 3;
}

.card h3 {
  font-size: 25px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.card ul {
  list-style: disc;
  padding-left: 24px;
  margin-top: 8px;
}

.card ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.highlight-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.highlight-box h3 {
  font-size: 30px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 15px;
}

.highlight-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* ─── Ratios section ─── */
.section-ratios-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  max-width: 875px;
  margin: 0 auto 10px;
  text-align: center;
}

.section-ratios-link {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.ratios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.ratios-grid .card {
  background: rgba(253, 241, 212, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 10px;
  padding: 28px;
}

.ratios-grid .card h3 {
  color: var(--orange);
}

.ratios-grid .card p {
  color: #000;
}

.ratios-grid .card .formula {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ─── Ratios summary box (wraps heading + text + table) ─── */
.ratios-summary-box {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 10px;
  padding: 30px;
  margin-top: 40px;
}

.ratios-summary-box h3 {
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.ratios-summary-box > p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
}

.ratios-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border: none;
}

.ratios-table th {
  text-align: left;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.ratios-table td {
  padding: 16px 24px;
  font-size: 16px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ratios-table tr:last-child td {
  border-bottom: none;
}

/* ─── Volume section ─── */
.volume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.volume-grid .text-col p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}

.volume-table-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

.volume-table {
  width: 100%;
  max-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  border: 1px solid rgba(247, 114, 38, 0.44);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
}

.volume-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  border-bottom: 1px solid rgba(247,114,38,0.3);
}

.volume-table td {
  padding: 10px 16px;
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid rgba(247,114,38,0.15);
}

.volume-table tr:last-child td {
  border-bottom: none;
}

/* ─── IC Markets section (disabled – uncomment to re-enable) ───
.icm-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
}

.icm-logo-col img {
  width: 136px;
  height: 136px;
  border-radius: 16px;
  position: sticky;
  top: 120px;
}

.icm-text-col .section-title {
  margin-top: 0;
}

.icm-highlight {
  margin-top: 24px;
}

.icm-highlight h3 {
  font-size: 25px;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 12px;
}

.icm-highlight p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 12px;
}
─── end IC Markets section ─── */

/* ─── Insights section ─── */
.insight-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 20px 0 10px;
}

.insight-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.insights-grid .card h3 {
  font-weight: 700;
  font-size: 32px;
}

/* ─── Commodity volume table (insights) ─── */
.commodity-volume-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 280px;
}

.commodity-volume-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(247, 114, 38, 0.44);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  margin-bottom: 30px;
}

.commodity-volume-table-wrap {
  position: relative;
  overflow: hidden;
}

.commodity-volume-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 568px;
  height: 570px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.commodity-volume-table-wrap .commodity-volume-table {
  position: relative;
  z-index: 1;
}

.commodity-volume-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.commodity-volume-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  border-bottom: 1px solid rgba(247,114,38,0.3);
}

.commodity-volume-table td {
  padding: 10px 16px;
  font-size: 15px;
  color: #000;
  border-bottom: 1px solid rgba(247,114,38,0.15);
}

.commodity-volume-table tr:last-child td {
  border-bottom: none;
}

/* ─── CTA Box ─── */
.section-cta {
  padding: 0 0 50px;
}

.cta-box {
  background: rgba(247, 186, 38, 1);
  border-radius: 10px;
  padding: 60px 80px;
  text-align: center;
  color: #fff;
}

.cta-icon {
  display: block;
  margin: 0 auto 24px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-box .btn {
  margin-top: 10px;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--orange);
  color: #fff;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 60px;
}

.footer-grid h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-grid p {
  font-size: 15px;
  line-height: 1.7;
}

.footer-grid a {
  color: #fff;
}

.footer-grid a:hover {
  text-decoration: underline;
}

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

.footer-icon {
  width: 77px;
  margin-bottom: 12px;
}

.footer-bar {
  height: 8px;
  background: var(--orange);
}

/* ─── Contact form ─── */
.form {
  max-width: 520px;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.form-group input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 114, 38, 0.15);
  background: #fff;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.form .btn-submit:hover {
  background: #e5651b;
}

.form .btn-submit:active {
  transform: scale(0.98);
}

.form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.form-note a {
  color: var(--orange);
  text-decoration: underline;
}

.form-message {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  display: none;
}

.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}

.form-message--error {
  background: #fce4ec;
  color: #c62828;
  display: block;
}

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111;
  color: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-size: 14px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie {
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-size: 14px;
}

.btn-cookie--accept {
  background: var(--gold);
  color: #111;
}

.btn-cookie--deny {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ─── Scroll animations ─── */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left {
  transform: translateX(-60px);
}

.reveal--right {
  transform: translateX(60px);
}

.reveal--up {
  transform: translateY(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── Responsive ─── */
@media (max-width: 1020px) {
  .container {
    padding: 0 24px;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 70px 0 100px;
  }

  .hero .container {
    padding: 0 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .indicators-3col,
  .indicators-2col {
    grid-template-columns: 1fr;
  }

  .ratios-grid {
    grid-template-columns: 1fr;
  }

  .volume-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

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

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

  .commodity-volume-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-title--lg {
    font-size: 30px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 40px 24px;
  }
}
