/* ============================================
   Elelet — design tokens
   ============================================ */
:root {
  --navy: #12304E;
  --navy-deep: #0E2038;
  --teal: #189873;
  --teal-dark: #0F7A5C;
  --mint-bg: #EFF6F1;
  --white: #FFFFFF;
  --text-body: #4B5563;
  --text-muted: #8A8F98;
  --border-soft: #E3EAE5;
  --card-shadow: 0 8px 24px rgba(14, 32, 56, 0.07);

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-weight: 700; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  color: var(--teal);
  font-weight: 600;
  font-size: 17px;
  margin: 10px 0 0;
}

.accent { color: var(--teal); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================
   Nav
   ============================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo-img { height: 28px; width: auto; display: block; }
.footer-logo-link .logo-img { height: 30px; }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--teal); }

.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.nav-toggle { display: none; }

/* ============================================
   Hero
   ============================================ */
.hero {
  background: var(--mint-bg);
  padding: 72px 0 88px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.22;
  margin: 14px 0 22px;
}
.hero p {
  font-size: 16px;
  max-width: 480px;
  margin: 0 0 30px;
}
.hero-link {
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-link svg { width: 16px; height: 16px; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/11;
}
.hero-media figcaption {
  margin-top: 8px;
  text-align: right;
  color: var(--teal);
  font-size: 11px;
  font-weight: 500;
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 16/11;
  border-radius: 16px;
  background: repeating-linear-gradient(135deg, #E4EFE8, #E4EFE8 12px, #DAE9DE 12px, #DAE9DE 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

/* ============================================
   Section heading pattern
   ============================================ */
.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-size: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-head .eyebrow { margin-top: 8px; font-size: 17px; }

/* ============================================
   Core values
   ============================================ */
.core-values { padding: 96px 0; background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
  row-gap: 44px;
}
.value-item { display: flex; align-items: flex-start; gap: 18px; }
.value-icon-img { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
.value-text h3 { font-size: 17px; margin-bottom: 8px; }
.value-text p { font-size: 14.5px; margin: 0; }

/* ============================================
   Vision / Mission
   ============================================ */
.vision-mission { background: var(--mint-bg); padding: 88px 0; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.vm-item { padding: 0 44px; display: flex; gap: 26px; align-items: flex-start; }
.vm-item:first-child { padding-left: 0; border-right: 1px solid var(--border-soft); }
.vm-item:last-child { padding-right: 0; }
.vm-item svg { width: 60px; height: 60px; color: var(--teal); flex-shrink: 0; }
.vm-item .vm-icon-img { width: 128px; height: 128px; object-fit: contain; flex-shrink: 0; }
.vm-text { padding-top: 4px; }
.vm-item h2 {
  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.vm-item p { font-size: 15px; margin: 0; }

/* ============================================
   Ethixo
   ============================================ */
.ethixo { padding: 96px 0; background: var(--white); }
.ethixo-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
}
.ethixo-copy h2 { font-size: 26px; letter-spacing: 0.5px; }
.ethixo-copy .eyebrow { font-size: 17px; margin-bottom: 20px; }
.ethixo-copy p { font-size: 15px; margin: 0 0 14px; }
.status-pill {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--mint-bg);
}
.status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.status-pill span { font-size: 13px; font-weight: 500; color: var(--text-muted); display: block; }
.status-pill strong { font-size: 14.5px; color: var(--navy); }

.roadmap-img { width: 100%; height: auto; display: block; }
.roadmap { position: relative; height: 320px; margin-bottom: 8px; }
.roadmap svg.curve { position: absolute; inset: 0; width: 100%; height: 100%; }
.roadmap-stage {
  position: absolute;
  width: 148px;
}
.roadmap-stage h4 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}
.roadmap-stage p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.roadmap-final h4 { font-size: 22px; color: var(--teal); margin-bottom: 4px; }
.roadmap-final p { font-size: 13px; color: var(--text-muted); margin: 0; }

.quote-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.quote-box svg { width: 30px; height: 24px; color: var(--teal); flex-shrink: 0; margin-top: 4px; }
.quote-box p {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   Journal
   ============================================ */
.journal { background: var(--mint-bg); padding: 56px 0 96px; }
.journal-heading { margin-bottom: 28px; }
.journal-heading h2 { font-size: 26px; letter-spacing: 0.5px; }
.journal-heading .eyebrow { font-size: 17px; margin-top: 8px; }
.journal-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
}
.journal-intro-left p { font-size: 15px; margin: 0 0 22px; max-width: 440px; }
.view-all {
  color: var(--teal);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.view-all svg { width: 15px; height: 15px; flex-shrink: 0; }
.journal-intro-right {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.icon-badge {
  width: 46px; height: 46px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; color: var(--teal); }
.journal-intro-right p { font-size: 15px; margin: 0; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.journal-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}
.journal-card .card-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #dfe8e2, #cfe0d6);
  width: 100%;
  object-fit: cover;
  display: block;
}
.journal-card .card-body { padding: 22px 22px 26px; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  margin-bottom: 12px;
}
.card-meta .cat { color: var(--teal); font-weight: 700; }
.card-meta .date { color: var(--text-muted); }
.card-media-link { display: block; }
.card-title-link { color: var(--navy); text-decoration: none; }
.card-title-link:hover { color: var(--teal); }
.journal-card h3 { font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.journal-card p { font-size: 14px; margin: 0 0 16px; }
.read-more {
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more svg { width: 14px; height: 14px; }

/* ============================================
   Footer
   ============================================ */
.footer { background: var(--navy-deep); color: #A9B4C2; padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p { font-size: 13.5px; margin-top: 18px; max-width: 260px; line-height: 1.7; color: #8393A6; }
.footer-col h4 {
  color: var(--white);
  font-size: 14.5px;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col .arrow-link { display: inline-flex; gap: 8px; align-items: flex-start; }
.footer-col .arrow-link svg { width: 13px; height: 13px; margin-top: 4px; flex-shrink: 0; color: var(--teal); }
.footer-social { color: var(--teal); font-weight: 600; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #7686997d;
  color: #7A899C;
}

/* ============================================
   Article page
   ============================================ */
.article-hero { background: var(--mint-bg); padding: 48px 0 40px; }
.article-hero .wrap { max-width: 980px; }
.back-link {
  color: var(--teal); font-weight: 700; font-size: 13.5px;
  display: inline-flex; gap: 8px; align-items: center; margin-bottom: 26px;
}
.back-link svg { width: 14px; height: 14px; transform: rotate(180deg); }
.article-hero .card-meta { margin-bottom: 16px; font-size: 13px; }
.article-hero h1 { font-size: 32px; line-height: 1.3; margin-bottom: 20px; }
.article-cover {
  border-radius: 14px;
  background: linear-gradient(135deg, #dfe8e2, #cfe0d6);
  margin-top: 8px;
  width: 100%;
  height: auto;
  display: block;
}
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag-pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  background: var(--mint-bg);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 5px 14px;
}
.tag-pill:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}
.post-nav-link:hover { border-color: var(--teal); }
.post-nav-newer { text-align: right; grid-column: 2; }
.post-nav-label { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.04em; }
.post-nav-title { font-size: 14.5px; font-weight: 600; color: var(--navy); }
@media (max-width: 640px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-newer { grid-column: 1; text-align: left; }
}
.article-body { max-width: 720px; margin: 0 auto; padding: 52px 32px 100px; font-size: 16.5px; line-height: 1.85; }
.article-body p { margin: 0 0 22px; color: var(--text-body); }
.article-body p.lede { font-size: 18px; color: var(--navy); font-weight: 500; }
.placeholder-note {
  border: 1px dashed var(--border-soft);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  background: var(--mint-bg);
  margin-top: 32px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; gap: 40px; }
  .vm-item:first-child { border-right: none; border-bottom: 1px solid var(--border-soft); padding-bottom: 40px; }
  .vm-item { padding: 0; }
  .ethixo-grid { grid-template-columns: 1fr; }
  .journal-intro { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 30px; }
  .values-grid { grid-template-columns: 1fr; }
  .vm-item { flex-direction: column; }
  .vm-item .vm-icon-img { width: 90px; height: 90px; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .roadmap { height: auto; }
  .roadmap svg.curve { display: none; }
  .roadmap { display: flex; flex-direction: column; gap: 20px; position: static; }
  .roadmap-stage, .roadmap-final { position: static; width: 100%; }
}
