@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

:root {
  --near-black: #0e0f0c;
  --wise-green: #9fe870;
  --dark-green: #163300;
  --light-mint: #e2f6d5;
  --pastel-green: #cdffad;
  --warm-dark: #454745;
  --gray: #868685;
  --light-surface: #e8ebe6;
  --white: #ffffff;
  --ring-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-feature-settings: "calt";
  background: var(--white);
  color: var(--near-black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.18px;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--dark-green); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--ring-shadow);
  padding: 16px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 900;
  font-size: 22px;
  font-feature-settings: "calt";
  line-height: 0.85;
  color: var(--near-black);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--dark-green);
  background: var(--wise-green);
  border-radius: 6px;
  padding: 2px 6px;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-weight: 600;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 9999px;
  transition: background 0.2s;
  font-feature-settings: "calt";
}

.site-nav a:hover {
  background: rgba(211,242,192,0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-feature-settings: "calt";
  letter-spacing: -0.108px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
  text-decoration: none;
  line-height: 1.0;
}

.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }

.btn-primary {
  background: var(--wise-green);
  color: var(--dark-green);
  padding: 10px 22px;
  border-radius: 9999px;
}

.btn-secondary {
  background: rgba(22,51,0,0.08);
  color: var(--near-black);
  padding: 8px 18px;
  border-radius: 9999px;
}

/* HERO */
.hero {
  padding: 80px 0 64px;
  background: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 5vw, 96px);
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 32px;
  line-height: 1.55;
}

.hero-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--ring-shadow);
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 30px;
}

/* BADGES */
.badge {
  display: inline-block;
  background: var(--light-mint);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}

/* SECTIONS */
.section {
  padding: 72px 0;
}

.section-title {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.85;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 48px;
  max-width: 560px;
}

/* GRID CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border-radius: 30px;
  box-shadow: var(--ring-shadow);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  font-feature-settings: "calt";
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.396px;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 10px;
}

.card-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--warm-dark);
  line-height: 1.5;
  margin-bottom: 16px;
}

.card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-green);
  font-feature-settings: "calt";
}

.card-link:hover { text-decoration: underline; }

/* MARKET LIST TABLE */
.markets-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--ring-shadow);
}

.markets-table thead {
  background: var(--near-black);
  color: var(--white);
}

.markets-table th {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  font-feature-settings: "calt";
}

.markets-table td {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--near-black);
  border-bottom: 1px solid var(--light-surface);
}

.markets-table tr:last-child td { border-bottom: none; }
.markets-table tr:nth-child(even) td { background: #fafcf8; }

/* INFO STRIP */
.info-strip {
  background: var(--near-black);
  color: var(--white);
  padding: 64px 0;
}

.info-strip .section-title {
  color: var(--wise-green);
}

.info-strip .section-sub {
  color: rgba(255,255,255,0.7);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.info-item {
  background: rgba(255,255,255,0.06);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.info-item h3 {
  font-size: 22px;
  font-weight: 600;
  font-feature-settings: "calt";
  margin-bottom: 12px;
  color: var(--wise-green);
}

.info-item p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* CONTACT FORM */
.contact-form {
  background: var(--light-mint);
  border-radius: 40px;
  padding: 48px;
  max-width: 680px;
  box-shadow: var(--ring-shadow);
}

.contact-form h2 {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 0.85;
  font-feature-settings: "calt";
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 8px;
  font-feature-settings: "calt";
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(14,15,12,0.2);
  border-radius: 10px;
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--near-black);
  background: var(--white);
  transition: box-shadow 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ARTICLE PAGE */
.article-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--light-surface);
}

.article-header .article-meta {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: 600;
  font-feature-settings: "calt";
}

.article-header h1 {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.9;
  font-feature-settings: "calt";
  color: var(--near-black);
  max-width: 800px;
  margin-bottom: 20px;
}

.article-header .article-lead {
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-dark);
  max-width: 720px;
  line-height: 1.5;
}

.article-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 30px;
  margin: 40px 0;
  box-shadow: var(--ring-shadow);
}

.article-content {
  max-width: 760px;
  padding: 40px 0 80px;
}

.article-content h2 {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.9;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin: 48px 0 16px;
}

.article-content h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin: 32px 0 12px;
}

.article-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--near-black);
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content li {
  font-size: 18px;
  line-height: 1.65;
  color: var(--near-black);
  margin-bottom: 8px;
  list-style: disc;
}

.article-content a {
  color: var(--dark-green);
  text-decoration: underline;
  font-weight: 600;
}

.article-content blockquote {
  border-left: 4px solid var(--wise-green);
  padding: 16px 24px;
  background: var(--light-mint);
  border-radius: 0 16px 16px 0;
  margin: 32px 0;
  font-style: italic;
  color: var(--warm-dark);
}

/* PAGE CONTENT */
.page-header {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--light-surface);
}

.page-header h1 {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 0.9;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 16px;
}

.page-header .page-lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-dark);
  max-width: 640px;
}

.page-content {
  max-width: 760px;
  padding: 48px 0 80px;
}

.page-content h2 {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 0.9;
  font-feature-settings: "calt";
  margin: 40px 0 14px;
}

.page-content h3 {
  font-weight: 600;
  font-size: 20px;
  font-feature-settings: "calt";
  margin: 28px 0 10px;
}

.page-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--near-black);
  margin-bottom: 18px;
}

.page-content ul {
  padding-left: 22px;
  margin-bottom: 18px;
}

.page-content li {
  font-size: 17px;
  line-height: 1.65;
  color: var(--near-black);
  margin-bottom: 6px;
  list-style: disc;
}

/* FOOTER */
.site-footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--wise-green);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-bottom a:hover { color: var(--wise-green); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--near-black);
  color: var(--white);
  border-radius: 20px;
  padding: 20px 28px;
  max-width: 680px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 9999;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}

#cookie-banner p a {
  color: var(--wise-green);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
}

.cookie-actions button:hover { transform: scale(1.05); }
.cookie-actions button:active { transform: scale(0.95); }

#cookie-accept {
  background: var(--wise-green);
  color: var(--dark-green);
}

#cookie-reject {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ABOUT TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.team-card {
  border-radius: 30px;
  box-shadow: var(--ring-shadow);
  padding: 28px;
  background: var(--white);
}

.team-card h3 {
  font-weight: 600;
  font-size: 20px;
  font-feature-settings: "calt";
  margin-bottom: 8px;
}

.team-card p {
  font-size: 15px;
  color: var(--warm-dark);
  line-height: 1.55;
}

/* RELATED ARTICLES */
.related-articles {
  padding: 48px 0 72px;
  border-top: 1px solid var(--light-surface);
}

.related-articles h2 {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 0.9;
  font-feature-settings: "calt";
  color: var(--near-black);
  margin-bottom: 32px;
}

/* BREADCRUMBS */
.breadcrumbs {
  padding: 16px 0;
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

.breadcrumbs a { color: var(--dark-green); font-weight: 600; }
.breadcrumbs span { margin: 0 6px; }

/* DISCLAIMER */
.disclaimer-box {
  background: var(--light-surface);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--warm-dark);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .cards-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .contact-form { padding: 28px 20px; }
  .markets-table { font-size: 13px; }
  .markets-table th, .markets-table td { padding: 10px 12px; }
}
