:root {
  --ink: #152520;
  --ink-soft: #5f6b65;
  --deep-green: #0b3b2e;
  --green: #145945;
  --green-light: #dfeae4;
  --gold: #cbb67a;
  --gold-light: #efe5c9;
  --paper: #f8f7f2;
  --paper-strong: #ffffff;
  --line: #e5e7df;
  --shadow: 0 22px 60px rgba(16, 45, 35, 0.11);
  --shadow-soft: 0 10px 30px rgba(16, 45, 35, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-arabic), Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(248, 247, 242, 0.78);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.brand-mark__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: var(--gold);
  background: var(--deep-green);
  box-shadow: 0 8px 18px rgba(11, 59, 46, 0.16);
}

.brand-mark__text {
  display: grid;
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.08;
}

.brand-mark__text strong {
  font-size: 18px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-inline-start: auto;
  margin-inline-end: 68px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #64706a;
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--deep-green);
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.site-nav .button {
  display: none;
}

.site-header__action {
  display: block;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--deep-green);
  box-shadow: 0 10px 18px rgba(11, 59, 46, 0.14);
}

.button--primary:hover {
  background: #14523f;
  box-shadow: 0 14px 24px rgba(11, 59, 46, 0.2);
}

.button--secondary {
  color: var(--deep-green);
  border-color: #ccd6cf;
  background: rgba(255, 255, 255, 0.5);
}

.button--secondary:hover {
  border-color: var(--deep-green);
  background: var(--paper-strong);
}

.button--light {
  color: var(--deep-green);
  background: #fff;
}

.button--text {
  min-height: auto;
  padding: 7px 0;
  color: var(--deep-green);
  border: 0;
  background: transparent;
}

.button--text:hover {
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 750px;
  padding: 156px 0 96px;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 57%;
  height: 100%;
  content: "";
  background: radial-gradient(circle at 26% 37%, rgba(213, 230, 220, 0.52), transparent 48%);
  pointer-events: none;
}

.hero__grid,
.value-section__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(11, 59, 46, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 59, 46, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(90deg, black, transparent 72%);
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(450px, 1.16fr);
  align-items: center;
  gap: clamp(45px, 7vw, 118px);
}

.hero__copy {
  max-width: 510px;
  animation: rise-in 700ms both ease-out;
}

.hero__eyebrow,
.eyebrow,
.cta-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  color: #6c7e74;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__eyebrow-line {
  width: 38px;
  height: 1px;
  margin-inline-start: 4px;
  background: var(--gold);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ba746;
  box-shadow: 0 0 0 4px rgba(139, 167, 70, 0.12);
}

.hero h1 {
  margin: 0;
  color: var(--deep-green);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero h1 em {
  color: #789085;
  font-style: normal;
}

.hero__lead {
  margin: 21px 0 8px;
  color: #1c3b30;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.55;
}

.hero__description {
  max-width: 485px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

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

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 31px;
}

.hero__tags span {
  padding: 5px 10px;
  border: 1px solid #e0e5dd;
  border-radius: 5px;
  color: #76857d;
  background: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  min-width: 0;
  animation: rise-in 800ms 120ms both ease-out;
}

.dashboard-shell {
  position: relative;
  width: min(100%, 540px);
  padding: 16px 18px 24px;
  isolation: isolate;
}

.dashboard-shell::before {
  position: absolute;
  z-index: -2;
  top: 45px;
  right: 0;
  width: 92%;
  height: 87%;
  border-radius: 32px;
  content: "";
  background: #e3ece5;
  transform: rotate(5deg);
}

.dashboard-shell::after {
  position: absolute;
  z-index: -3;
  right: 12%;
  bottom: 8px;
  width: 70%;
  height: 34px;
  border-radius: 50%;
  content: "";
  background: rgba(19, 68, 52, 0.17);
  filter: blur(17px);
}

.dashboard-glow {
  position: absolute;
  z-index: -2;
  top: -2%;
  right: 2%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(203, 182, 122, 0.19);
  filter: blur(32px);
  pointer-events: none;
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  color: #ebf4ed;
  background: linear-gradient(142deg, #164c3c, #092f25 70%);
  box-shadow: 0 26px 54px rgba(7, 40, 30, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.dashboard-window::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, black, transparent 84%);
  pointer-events: none;
}

.dashboard-window__topbar,
.dashboard-window__body {
  position: relative;
  z-index: 1;
}

.dashboard-window__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.dashboard-window__dots {
  display: flex;
  gap: 5px;
  direction: ltr;
}

.dashboard-window__dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.dashboard-window__date,
.muted-label {
  color: rgba(235, 244, 237, 0.5);
  font-size: 10px;
}

.dashboard-window__body {
  padding: 27px 26px 25px;
}

.dashboard-intro,
.dashboard-main-stat,
.watchlist-heading,
.watchlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-kicker {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 10px;
}

.dashboard-intro h3 {
  margin: 4px 0 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.icon-button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.dashboard-tabs {
  display: flex;
  gap: 21px;
  margin: 25px 0 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.dashboard-tabs button {
  position: relative;
  padding: 0 0 11px;
  border: 0;
  color: rgba(235, 244, 237, 0.45);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.dashboard-tabs button.is-active {
  color: #fff;
}

.dashboard-tabs button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
}

.dashboard-main-stat {
  margin-bottom: 5px;
}

.dashboard-main-stat .muted-label {
  display: block;
  margin-bottom: -3px;
}

.dashboard-main-stat strong {
  font-size: 24px;
  font-weight: 600;
}

.dashboard-stat-change {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #b9d86b;
  font-size: 12px;
  font-weight: 600;
}

.stock-chart {
  position: relative;
  height: 82px;
  color: #a9ce74;
}

.stock-chart--large {
  height: 115px;
}

.stock-chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.stock-chart__grid {
  position: absolute;
  inset: 12px 0 14px;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 33.33%;
}

.stock-chart__axis {
  position: absolute;
  bottom: -1px;
  color: rgba(235, 244, 237, 0.42);
  font-size: 9px;
}

.stock-chart__axis--right {
  right: 0;
}

.dashboard-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 14px 0 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-stat {
  display: grid;
  gap: 2px;
  color: rgba(235, 244, 237, 0.55);
  font-size: 9px;
}

.mini-stat svg {
  margin-bottom: 2px;
  color: var(--gold);
}

.mini-stat strong {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.dashboard-watchlist {
  padding-top: 17px;
}

.watchlist-heading {
  margin-bottom: 10px;
  color: rgba(235, 244, 237, 0.86);
  font-size: 10px;
}

.watchlist-items {
  display: grid;
  gap: 9px;
}

.watchlist-item {
  justify-content: flex-start;
  gap: 8px;
  color: rgba(235, 244, 237, 0.83);
  font-size: 10px;
}

.watchlist-item span:nth-child(2) {
  flex: 1;
}

.watchlist-item b {
  color: #b9d86b;
  font-size: 10px;
  font-weight: 500;
}

.watchlist-item svg {
  color: #b9d86b;
}

.watchlist-item b.is-neutral,
.watchlist-item b.is-neutral + svg {
  color: var(--gold);
}

.watchlist-item b.is-down,
.watchlist-item b.is-down + svg {
  color: #d8987e;
}

.company-dot {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  color: var(--deep-green);
  font-size: 11px;
  font-weight: 700;
}

.company-dot--green { background: #a8cf96; }
.company-dot--gold { background: #dcc98e; }
.company-dot--blue { background: #9bc2bf; }

.dashboard-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 135px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.dashboard-floating-card--top {
  top: 54px;
  left: -1px;
  animation: float-card 4.5s ease-in-out infinite;
}

.dashboard-floating-card--bottom {
  right: -4px;
  bottom: 39px;
  animation: float-card 4.5s 900ms ease-in-out infinite;
}

.floating-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  color: var(--deep-green);
  background: #e2efc9;
}

.floating-icon--soft { background: #e7eee8; }

.dashboard-floating-card span:last-child {
  display: grid;
  gap: 0;
}

.dashboard-floating-card small {
  color: #77847d;
  font-size: 9px;
  line-height: 1.5;
}

.dashboard-floating-card strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.hero__scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #87938c;
  font-size: 10px;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.proof-strip__inner {
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #87938c;
  font-size: 11px;
}

.proof-strip__inner i {
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 116px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 500px;
  margin: 0;
  color: var(--deep-green);
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
  color: #8f9e95;
}

.section-heading__description {
  margin: 5px 0 0;
  color: #86928b;
  font-size: 16px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.market-card {
  position: relative;
  display: flex;
  min-height: 408px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 4px 0 rgba(11, 59, 46, 0.02);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.market-card:hover {
  border-color: #c8d7cd;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.market-card__visual {
  position: relative;
  min-height: 197px;
  padding: 20px 20px 7px;
  overflow: hidden;
  color: var(--deep-green);
  background: #e6eee8;
}

.market-card--companies .market-card__visual { background: #ebeee5; }
.market-card--analysis .market-card__visual { background: #e7ecec; }

.visual-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #819188;
  font-size: 9px;
}

.visual-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(11, 59, 46, 0.09);
  border-radius: 9px;
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.62);
}

.market-card__visual .stock-chart {
  height: 116px;
  margin-top: 12px;
  color: #3c8765;
}

.visual-bars {
  display: flex;
  height: 125px;
  align-items: end;
  gap: 12px;
  margin: 7px 19px 0;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(11, 59, 46, 0.15);
}

.visual-bars i {
  display: block;
  width: 12%;
  min-height: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #8da88e, #367259);
}

.visual-bars i:nth-child(2n) { background: linear-gradient(180deg, #d8c68d, #a99050); }

.visual-rings {
  position: relative;
  height: 126px;
  margin-top: 5px;
}

.visual-ring {
  position: absolute;
  display: grid;
  place-items: center;
  align-content: center;
  border: 7px solid rgba(20, 89, 69, 0.14);
  border-top-color: #4e9075;
  border-right-color: #4e9075;
  border-radius: 50%;
  color: var(--deep-green);
}

.visual-ring--large {
  right: 34%;
  bottom: -15px;
  width: 128px;
  height: 128px;
}

.visual-ring--small {
  right: 3%;
  bottom: 5px;
  width: 82px;
  height: 82px;
  border-width: 5px;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
}

.visual-ring span { font-size: 20px; font-weight: 700; line-height: 1.2; }
.visual-ring small { color: #829087; font-size: 8px; }

.market-card__content {
  position: relative;
  z-index: 1;
  padding: 24px 22px 22px;
}

.market-card__content h3 {
  margin: 0 0 8px;
  color: var(--deep-green);
  font-size: 20px;
  font-weight: 700;
}

.market-card__content p {
  min-height: 79px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.95;
}

.market-card__corner {
  position: absolute;
  right: -9px;
  bottom: -17px;
  color: rgba(11, 59, 46, 0.04);
  transform: rotate(-15deg);
}

.companies-section {
  padding-top: 108px;
  background: #f2f3ed;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.company-card {
  overflow: hidden;
  border: 1px solid #e0e4db;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 5px 15px rgba(16, 45, 35, 0.03);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.company-card:hover {
  border-color: #bdcfc2;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.company-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 15px 15px;
  border-bottom: 1px solid #ebeee7;
}

.company-logo {
  display: grid;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.company-logo--green { background: #2c7355; }
.company-logo--gold { color: #3e3926; background: #d8c38c; }
.company-logo--blue { background: #4a8d8b; }
.company-logo--coral { background: #b87b65; }

.company-card__name {
  min-width: 0;
  flex: 1;
}

.company-card__name h3 {
  overflow: hidden;
  margin: 0;
  color: var(--deep-green);
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-card__name span {
  display: block;
  overflow: hidden;
  margin-top: 1px;
  color: #8a958e;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-card__status {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #8b9b8e;
  font-size: 9px;
  white-space: nowrap;
}

.company-card__chart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 18px 15px 10px;
}

.company-card__change {
  display: grid;
  flex-shrink: 0;
  gap: 1px;
}

.company-card__change span,
.company-card__change small {
  color: #89968e;
  font-size: 10px;
  line-height: 1.6;
}

.company-card__change strong {
  color: #43835a;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}

.company-card__change strong.is-neutral { color: #a08a4d; }

.company-card__change small {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #72947f;
  font-size: 9px;
}

.company-card__chart {
  width: 53%;
  min-width: 95px;
  color: #66a276;
}

.company-card__metrics {
  display: grid;
  gap: 8px;
  padding: 10px 15px 14px;
  border-top: 1px solid #eef0ea;
}

.company-card__metrics span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8c978f;
  font-size: 9px;
}

.company-card__metrics svg { color: #9aaea0; }
.company-card__metrics b { margin-inline-start: auto; color: #496956; font-weight: 600; }

.company-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  border-top: 1px solid #e7ebe4;
  color: var(--deep-green);
  font-size: 11px;
  font-weight: 600;
  transition: background 180ms ease, padding 180ms ease;
}

.company-card__link:hover {
  padding-inline-start: 12px;
  background: #f5f7f2;
}

.section-footnote {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 740px;
  margin: 28px 0 0;
  color: #88928b;
  font-size: 11px;
  line-height: 1.8;
}

.section-footnote svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: #829c89;
}

.value-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--deep-green);
}

.value-section__pattern {
  opacity: 0.23;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
}

.value-section__inner {
  position: relative;
  z-index: 1;
  padding-top: 116px;
  padding-bottom: 116px;
}

.value-section .section-heading h2 { color: #fff; }
.value-section .section-heading__description,
.value-section .eyebrow { color: rgba(255, 255, 255, 0.5); }
.value-section .eyebrow { color: var(--gold); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 61px;
}

.trust-point {
  position: relative;
  padding: 25px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.trust-point__number {
  position: absolute;
  top: 23px;
  left: 0;
  color: rgba(255, 255, 255, 0.26);
  font-size: 11px;
}

.trust-point__icon {
  display: grid;
  width: 37px;
  height: 37px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(203, 182, 122, 0.42);
  border-radius: 10px;
  color: var(--gold);
}

.trust-point h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.trust-point p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.95;
}

.value-statement {
  display: grid;
  justify-items: center;
  margin-top: 74px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.value-statement span {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(27px, 4vw, 47px);
  font-weight: 400;
  line-height: 1.25;
}

.value-statement strong {
  color: var(--gold);
  font-size: clamp(36px, 5.6vw, 70px);
  font-weight: 700;
  line-height: 1.16;
}

.value-statement p {
  max-width: 440px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.9;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: #eff2ec;
}

.cta-section__lines {
  position: absolute;
  top: -90px;
  left: 11%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(20, 89, 69, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(20, 89, 69, 0.04), 0 0 0 86px rgba(20, 89, 69, 0.03), 0 0 0 129px rgba(20, 89, 69, 0.02);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  min-height: 533px;
  padding-top: 84px;
  padding-bottom: 84px;
}

.cta-section__copy {
  max-width: 620px;
}

.cta-kicker { color: #5d866d; }

.cta-section h2 {
  max-width: 630px;
  margin: 0;
  color: var(--deep-green);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.35;
}

.cta-section__copy > p {
  max-width: 530px;
  margin: 16px 0 0;
  color: #6f7c74;
  font-size: 15px;
  line-height: 2;
}

.cta-main-button {
  margin-top: 27px;
  background: #168151;
}

.cta-main-button:hover { background: #126b43; }

.cta-section__copy > small {
  display: block;
  margin-top: 12px;
  color: #9ba49e;
  font-size: 10px;
}

.cta-section__side {
  display: flex;
  justify-content: center;
}

.cta-compass {
  position: relative;
  width: 278px;
  height: 278px;
  border: 1px solid rgba(20, 89, 69, 0.18);
  border-radius: 50%;
}

.cta-compass::before,
.cta-compass::after {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(20, 89, 69, 0.14);
  border-radius: 50%;
  content: "";
}

.cta-compass::after {
  inset: 68px;
  border-color: rgba(203, 182, 122, 0.46);
}

.cta-compass__center {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--deep-green);
  box-shadow: 0 8px 18px rgba(11, 59, 46, 0.19);
  transform: translate(50%, -50%);
}

.compass-label {
  position: absolute;
  z-index: 3;
  display: block;
  width: 106px;
  color: #4b695a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.compass-label--top { top: 20px; right: 50%; transform: translateX(50%); }
.compass-label--right { top: 50%; right: -27px; transform: translateY(-50%); }
.compass-label--bottom { bottom: 20px; right: 50%; transform: translateX(50%); }
.compass-label--left { top: 50%; left: -27px; transform: translateY(-50%); }

.risk-notice {
  border-top: 1px solid #e2e6df;
  border-bottom: 1px solid #e2e6df;
  background: #f8f8f4;
}

.risk-notice__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.risk-notice__title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.risk-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #9a8247;
  background: var(--gold-light);
}

.risk-notice h2 {
  margin: 0;
  color: var(--deep-green);
  font-size: 17px;
  font-weight: 700;
}

.risk-notice__copy p {
  margin: 0 0 7px;
  color: #7d8881;
  font-size: 11px;
  line-height: 1.9;
}

.risk-notice__copy p:last-child { margin-bottom: 0; }

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #082d23;
}

.site-footer__top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr auto;
  gap: 70px;
  padding-top: 57px;
  padding-bottom: 51px;
}

.site-footer .brand-mark__text { color: #fff; }
.site-footer .brand-mark__icon { background: #154e3c; }

.site-footer__brand p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.site-footer__links div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.site-footer__links span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.site-footer__links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  transition: color 180ms ease;
}

.site-footer__links a:hover { color: #fff; }

.footer-back-top {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: var(--gold);
  transition: background 180ms ease;
}

.footer-back-top:hover { background: rgba(255, 255, 255, 0.08); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.mobile-whatsapp { display: none; }

.landing-page {
  display: flex;
  flex-direction: column;
}

.landing-page > .hero { order: 1; }
.landing-page > .companies-section { order: 2; }
.landing-page > .proof-strip { order: 3; }
.landing-page > .market-radar { order: 4; }
.landing-page > .value-section { order: 5; }
.landing-page > .cta-section { order: 6; }
.landing-page > .risk-notice { order: 7; }
.landing-page > .site-footer { order: 8; }

.info-hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 75px;
  color: #fff;
  background: var(--deep-green);
}

.info-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 75%, transparent);
}

.info-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.info-hero__icon { display: grid; width: 47px; height: 47px; margin-bottom: 22px; place-items: center; border: 1px solid rgba(203, 182, 122, 0.55); border-radius: 12px; color: var(--gold); }
.info-hero .eyebrow { margin-bottom: 10px; color: var(--gold); }
.info-hero h1 { margin: 0; color: #fff; font-size: clamp(36px, 5vw, 60px); line-height: 1.25; }
.info-hero__intro { max-width: 680px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.67); font-size: 17px; line-height: 2; }
.info-hero__updated { display: block; margin-top: 25px; color: rgba(255, 255, 255, 0.43); font-size: 11px; }

.info-content { padding: 80px 0 110px; background: var(--paper); }
.info-content__layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 78px; align-items: start; }
.info-content__aside { position: sticky; top: 110px; padding: 20px 0; border-top: 1px solid #dfe5de; }
.info-content__aside-label { display: block; margin-bottom: 16px; color: var(--deep-green); font-size: 11px; font-weight: 700; }
.info-content__aside nav { display: grid; gap: 5px; }
.info-content__aside a { display: flex; align-items: center; gap: 8px; padding: 8px 0; color: #89958d; font-size: 11px; transition: color 180ms ease; }
.info-content__aside a:hover { color: var(--deep-green); }
.info-content__aside a span { color: var(--gold); font-size: 10px; }
.info-content__aside a svg { margin-inline-start: auto; opacity: 0; transition: opacity 180ms ease; }
.info-content__aside a:hover svg { opacity: 1; }
.info-content__body { max-width: 760px; }
.info-block { padding: 0 0 35px; margin-bottom: 38px; border-bottom: 1px solid #e0e5de; scroll-margin-top: 108px; }
.info-block h2 { display: flex; align-items: baseline; gap: 13px; margin: 0 0 16px; color: var(--deep-green); font-size: 23px; line-height: 1.45; }
.info-block h2 span { color: var(--gold); font-size: 12px; font-weight: 500; }
.info-block p { margin: 0 0 12px; color: #69776f; font-size: 14px; line-height: 2.15; }
.info-block p:last-of-type { margin-bottom: 0; }
.info-block ul { display: grid; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.info-block li { display: flex; align-items: flex-start; gap: 9px; color: #536a5c; font-size: 13px; line-height: 1.8; }
.info-block li svg { flex-shrink: 0; margin-top: 4px; color: #6e9b79; }
.info-contact { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 52px; padding: 28px 30px; border-radius: 12px; color: #fff; background: var(--deep-green); }
.info-contact__kicker { display: flex; align-items: center; gap: 7px; color: var(--gold); font-size: 11px; }
.info-contact h2 { margin: 8px 0 2px; font-size: 20px; }
.info-contact p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 12px; }
.info-contact .button { flex-shrink: 0; color: var(--deep-green); background: #fff; }

@media (max-width: 640px) {
  .info-hero { padding: 111px 0 51px; }
  .info-hero__icon { width: 42px; height: 42px; margin-bottom: 17px; }
  .info-hero h1 { font-size: 36px; }
  .info-hero__intro { font-size: 14px; line-height: 1.95; }
  .info-content { padding: 53px 0 80px; }
  .info-content__layout { display: block; }
  .info-content__aside { position: static; margin-bottom: 45px; padding: 0 0 18px; border-top: 0; border-bottom: 1px solid #dfe5de; }
  .info-content__aside nav { grid-template-columns: repeat(2, 1fr); gap: 3px 14px; }
  .info-content__aside a { font-size: 10px; }
  .info-block h2 { font-size: 20px; }
  .info-block p { font-size: 13px; line-height: 2; }
  .info-contact { display: block; padding: 23px 19px; }
  .info-contact .button { width: 100%; margin-top: 20px; }
}

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

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 980px) {
  .container { width: min(100% - 36px, 720px); }

  .site-header__action { display: none; }
  .site-nav { margin-inline-end: 0; }
  .site-nav .button { display: inline-flex; margin-top: 10px; }

  .hero { min-height: auto; padding-top: 126px; }
  .hero__inner { grid-template-columns: 1fr; gap: 58px; }
  .hero__copy { max-width: 620px; margin-inline: auto; text-align: center; }
  .hero__eyebrow, .hero__actions, .hero__tags { justify-content: center; }
  .hero__description { margin-inline: auto; }
  .hero__visual { order: 2; }
  .dashboard-shell { width: min(100%, 560px); }
  .hero__scroll-cue { display: none; }

  .market-grid { grid-template-columns: 1fr; }
  .market-card { min-height: auto; }
  .market-card__visual { min-height: 190px; }
  .market-card__content p { min-height: auto; }
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; gap: 8px; }
  .trust-point p { max-width: none; }
  .cta-section__inner { grid-template-columns: 1fr; }
  .cta-section__side { order: -1; justify-content: flex-end; padding-inline-end: 50px; }
  .risk-notice__inner { grid-template-columns: 1fr; gap: 16px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 500px); }

  .site-header { height: 70px; }
  .site-header__inner { width: calc(100% - 32px); }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav {
    position: absolute;
    top: 69px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid #e0e5de;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open { display: flex; flex-direction: column; }
  .site-nav > a:not(.button) { padding: 10px 8px; color: var(--ink); }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { width: 100%; }

  .hero { padding: 109px 0 66px; }
  .hero::before { width: 100%; height: 48%; }
  .hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .hero__lead { font-size: 18px; }
  .hero__description { font-size: 14px; line-height: 1.9; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__tags { gap: 6px; margin-top: 22px; }

  .dashboard-shell { padding: 9px 4px 22px; }
  .dashboard-window { border-radius: 17px; }
  .dashboard-window__body { padding: 21px 18px 19px; }
  .dashboard-floating-card { min-width: 118px; padding: 8px 9px; }
  .dashboard-floating-card--top { top: 33px; left: -5px; }
  .dashboard-floating-card--bottom { right: -5px; bottom: 24px; }
  .dashboard-floating-card small { font-size: 8px; }
  .dashboard-floating-card strong { font-size: 11px; }
  .dashboard-summary-row { gap: 4px; }
  .mini-stat { font-size: 8px; }
  .mini-stat strong { font-size: 10px; }

  .proof-strip__inner { justify-content: center; min-height: 53px; text-align: center; }
  .proof-strip__inner span { font-size: 9px; }
  .proof-strip__inner span:nth-of-type(2), .proof-strip__inner i:nth-of-type(2) { display: none; }

  .section { padding: 76px 0; }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-heading h2 { font-size: 32px; }
  .section-heading__description { font-size: 14px; }
  .market-card__content { padding: 22px 19px 20px; }
  .market-card__content h3 { font-size: 19px; }

  .companies-section { padding-top: 0; }
  .company-grid { display: flex; flex-direction: column; gap: 10px; }
  .company-card__status { display: inline-flex; }
  .company-card__chart-row { padding-top: 14px; }
  .company-card__metrics { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .company-card__metrics span { display: grid; gap: 2px; font-size: 8px; line-height: 1.45; }
  .company-card__metrics b { margin-inline-start: 0; font-size: 9px; }
  .section-footnote { font-size: 10px; }

  .value-section__inner { padding-top: 76px; padding-bottom: 76px; }
  .trust-grid { margin-top: 36px; }
  .trust-point { padding: 21px 18px 23px; }
  .trust-point h3 { font-size: 17px; }
  .trust-point p { font-size: 12px; }
  .value-statement { margin-top: 44px; padding-top: 49px; }
  .value-statement span { font-size: 28px; }
  .value-statement strong { font-size: 44px; }
  .value-statement p { margin-top: 17px; font-size: 12px; }

  .cta-section__inner { min-height: auto; gap: 32px; padding-top: 69px; padding-bottom: 74px; }
  .cta-section__side { order: -1; justify-content: center; padding: 0; }
  .cta-compass { width: 224px; height: 224px; }
  .cta-compass::before { inset: 23px; }
  .cta-compass::after { inset: 55px; }
  .cta-compass__center { width: 49px; height: 49px; }
  .compass-label { width: 92px; font-size: 9px; }
  .compass-label--top { top: 12px; }
  .compass-label--bottom { bottom: 12px; }
  .compass-label--right { right: -35px; }
  .compass-label--left { left: -35px; }
  .cta-section h2 { font-size: 31px; }
  .cta-section__copy > p { font-size: 13px; }
  .cta-main-button { width: 100%; }

  .risk-notice__inner { padding-top: 27px; padding-bottom: 27px; }
  .risk-notice__copy p { font-size: 10px; }

  .site-footer__top { grid-template-columns: 1fr; padding-top: 42px; padding-bottom: 37px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__links { gap: 24px; }
  .site-footer__bottom { display: grid; gap: 6px; padding-bottom: 80px; }
  .site-footer__bottom span { font-size: 8px; }
  .footer-back-top { position: absolute; left: 18px; margin-top: -37px; }
  .mobile-whatsapp { position: fixed; z-index: 30; right: 12px; bottom: 12px; left: 12px; display: block; }
  .mobile-whatsapp .button { width: 100%; min-height: 50px; border-radius: 10px; background: #168151; box-shadow: 0 10px 25px rgba(8, 45, 35, 0.27); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
