:root {
  --paper: #f5f2ea;
  --paper-2: #ebe7dc;
  --ink: #10151d;
  --muted: #5e6570;
  --blue: #9bb5d6;
  --blue-dark: #193b63;
  --coral: #ee5c4d;
  --lime: #d5f25b;
  --line: rgba(16, 21, 29, 0.15);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand { display: flex; align-items: center; gap: 11px; font: 800 16px "Manrope"; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid var(--ink);
  color: var(--coral);
  font-weight: 800;
}

nav { display: flex; gap: 34px; font-size: 14px; font-weight: 600; }
nav a, .text-link { position: relative; }
nav a::after, .text-link::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  background: currentColor;
  left: 0;
  bottom: -5px;
  transition: width .25s ease;
}
nav a:hover::after, .text-link:hover::after { width: 100%; }

.header-cta { font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.header-cta span, .button span { display: inline-block; transition: transform .25s ease; }
.header-cta:hover span, .button:hover span { transform: translate(3px, -3px); }

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100vh - 88px);
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  padding: 46px 0 130px;
}

.hero-copy { z-index: 2; padding-left: 12px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.eyebrow > span { width: 32px; height: 1px; background: currentColor; }
.speech-bubble {
  display: inline-block;
  margin-top: 44px;
  padding: 10px 15px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 4px;
  position: relative;
  font-size: 12px;
  font-weight: 600;
}
.speech-bubble::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  border: 8px solid transparent;
  border-left-color: var(--blue-dark);
}

h1, h2 { font-family: "Manrope", sans-serif; letter-spacing: -.055em; margin: 0; }
h1 { font-size: clamp(55px, 6vw, 91px); line-height: .97; margin-top: 25px; }
h1 span { color: var(--blue-dark); }
.hero-lede { max-width: 570px; color: var(--muted); line-height: 1.7; font-size: 19px; margin: 30px 0 0; }
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 29px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 23px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(16,21,29,.12); }
.button.primary { background: var(--coral); color: white; }
.text-link { font-size: 14px; font-weight: 700; }

.hero-visual { height: 650px; position: relative; display: grid; place-items: center; }
.portrait-card {
  width: 87%;
  height: 86%;
  overflow: hidden;
  background: linear-gradient(145deg, #c7d4e4 0%, var(--blue) 100%);
  border-radius: 210px 210px 32px 32px;
  position: relative;
  z-index: 1;
}
.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}
.portrait-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -70px 90px rgba(17,47,83,.18); pointer-events: none; }
.orbit { position: absolute; border: 1px solid rgba(25,59,99,.35); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 660px; height: 660px; border-style: dashed; animation: spin 38s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.floating-note {
  position: absolute;
  z-index: 3;
  background: rgba(245,242,234,.94);
  border: 1px solid var(--line);
  padding: 13px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(16,21,29,.09);
  backdrop-filter: blur(8px);
}
.floating-note span { color: var(--coral); margin-right: 8px; }
.note-one { right: -18px; top: 23%; }
.note-two { left: -8px; top: 52%; }
.note-three { right: 1%; bottom: 14%; }

.credibility-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  min-height: 78px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 22px 60px rgba(16,21,29,.09);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px;
}
.credibility-item { display: flex; align-items: center; gap: 14px; min-width: 0; transition: transform .25s ease; }
.credibility-item:hover { transform: translateY(-2px); }
.credibility-item span { color: #8a8f98; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; white-space: nowrap; }
.credibility-item img {
  display: block;
  width: 138px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}
.credibility-item .logo-miare { width: 132px; }
.credibility-item .logo-ganje { width: 132px; }
.credibility-item .logo-sharif { width: 148px; }
.credibility-item b { color: var(--coral); font-size: 13px; }
.credibility-strip i { width: 1px; height: 26px; background: var(--line); }

.section { width: min(1180px, calc(100% - 48px)); margin: auto; padding: 145px 0; }
.section-label { display: flex; gap: 15px; align-items: center; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .15em; margin-bottom: 65px; }
.section-label span { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 50%; color: var(--coral); }
.section-label.light { color: rgba(255,255,255,.68); }
.section-label.light span { border-color: rgba(255,255,255,.2); }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; }
h2 { font-size: clamp(43px, 5.1vw, 76px); line-height: 1.03; }
h2 em { color: var(--coral); font-style: normal; }
.story-copy { padding-top: 10px; max-width: 560px; }
.story-copy p { line-height: 1.8; color: var(--muted); font-size: 16px; }
.story-copy .lead { color: var(--ink); font-size: 20px; line-height: 1.55; margin-top: 0; }

.pathway { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 35px; align-items: center; margin-top: 100px; border-top: 1px solid var(--line); padding-top: 50px; }
.pathway article { position: relative; min-height: 210px; }
.path-number { position: absolute; right: 0; top: 0; color: #969a9e; font-size: 11px; }
.path-icon { font-size: 32px; color: var(--blue-dark); margin-bottom: 30px; }
.pathway h3 { font: 700 25px "Manrope"; margin: 0 0 12px; }
.pathway p { color: var(--muted); line-height: 1.7; margin: 0; }
.path-arrow { font-size: 27px; color: var(--coral); }

.impact { width: 100%; max-width: none; background: var(--ink); color: white; padding-left: max(24px, calc((100vw - 1180px)/2)); padding-right: max(24px, calc((100vw - 1180px)/2)); }
.impact-heading { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 12%; }
.impact-heading p { color: rgba(255,255,255,.58); line-height: 1.8; max-width: 420px; }

.organization-stories { display: grid; gap: 34px; margin-top: 90px; }
.organization-card {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) 1.22fr;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: #191f28;
}
.organization-card:nth-child(even) { grid-template-columns: 1.22fr minmax(310px, .78fr); }
.organization-card:nth-child(even) .organization-image { order: 2; }
.organization-card.miare-card { background: #291338; }
.organization-card.ganje-card { background: #101d3e; }
.organization-card.sharif-card { background: #17243a; }
.organization-image { position: relative; min-height: 100%; overflow: hidden; background: #fff; }
.organization-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.organization-card.miare-card .organization-image img { object-position: 18% center; }
.organization-card.ganje-card .organization-image img { object-fit: cover; object-position: 58% center; padding: 0; background: #101d3e; }
.organization-card.sharif-card .organization-image img { object-position: center; filter: saturate(.9) contrast(1.03); }
.organization-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(10,14,20,.65)); pointer-events: none; }
.organization-image > span {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.organization-image:hover img { transform: scale(1.035); }
.organization-image:hover > span { opacity: 1; transform: translateY(0); }
.organization-content { padding: 44px 48px 46px; }
.organization-meta { display: flex; align-items: center; gap: 16px; min-height: 48px; }
.organization-meta img { width: 105px; max-height: 58px; object-fit: contain; object-position: left center; }
.organization-meta .miare-card-logo { width: 82px; height: 58px; }
.organization-meta .ganje-card-logo { width: 72px; height: 70px; padding: 0; background: transparent; }
.organization-meta .sharif-card-logo { width: 168px; height: 68px; filter: none; }
.organization-meta > span { font-size: 11px; color: rgba(255,255,255,.47); letter-spacing: .08em; text-transform: uppercase; }
.organization-meta .status { color: var(--lime); margin-left: auto; }
.organization-content h3 { font: 700 clamp(27px, 3vw, 40px) "Manrope"; line-height: 1.13; letter-spacing: -.035em; margin: 35px 0 19px; max-width: 680px; }
.organization-content > p { color: rgba(255,255,255,.62); line-height: 1.75; margin: 0; max-width: 750px; }
.impact-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 30px 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.1);
}
.impact-points > div { background: rgba(10,14,20,.28); padding: 20px 18px; }
.impact-points strong { display: block; color: white; font: 700 18px "Manrope"; margin-bottom: 7px; }
.ganje-numbers strong { color: var(--lime); font-size: 25px; }
.impact-points > div > span { display: block; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.5; }
.organization-content ul { list-style: none; padding: 22px 0 0; margin: 0 0 30px; border-top: 1px solid rgba(255,255,255,.1); }
.organization-content li { color: rgba(255,255,255,.7); padding: 7px 0 7px 22px; line-height: 1.55; font-size: 13px; position: relative; }
.organization-content li::before { content: "↳"; position: absolute; left: 0; color: var(--coral); }
.organization-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 13px; font-weight: 800; }
.organization-link span { transition: transform .25s; }
.organization-link:hover span { transform: translate(3px,-3px); }
.organization-links { display: flex; flex-wrap: wrap; gap: 24px; }
.organization-link.secondary { color: rgba(255,255,255,.65); }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 95px; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.metric { padding: 52px 45px 50px 0; }
.metric + .metric { padding-left: 45px; border-left: 1px solid rgba(255,255,255,.14); }
.metric-number, .metric-unit { font: 700 clamp(62px, 7vw, 106px) "Manrope"; letter-spacing: -.07em; }
.metric-unit { color: var(--coral); }
.metric h3 { font: 600 18px "Manrope"; margin: 18px 0 9px; }
.metric p { color: rgba(255,255,255,.5); line-height: 1.6; max-width: 260px; margin: 0; }

.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 70px; }
.experience-card { background: #1a2029; border: 1px solid rgba(255,255,255,.1); padding: 38px; border-radius: var(--radius); transition: transform .3s, border-color .3s; }
.experience-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.24); }
.experience-card.current { background: var(--blue-dark); }
.experience-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 12px; }
.status { color: var(--lime); }
.company-wordmark { margin: 65px 0 25px; font: 800 39px "Manrope"; letter-spacing: -.05em; }
.company-wordmark.ganje { color: var(--lime); }
.experience-card h3 { font: 600 21px "Manrope"; }
.experience-card p { color: rgba(255,255,255,.62); line-height: 1.7; }
.experience-card ul { list-style: none; padding: 20px 0 0; margin: 25px 0 0; border-top: 1px solid rgba(255,255,255,.12); }
.experience-card li { padding: 7px 0; color: rgba(255,255,255,.78); font-size: 14px; }
.experience-card li::before { content: "↳"; color: var(--coral); margin-right: 10px; }

.research-grid { display: grid; grid-template-columns: 1.25fr .55fr; align-items: end; gap: 13%; }
.kicker { color: var(--coral); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; }
.research-intro { color: var(--muted); line-height: 1.8; }
.topics { margin-top: 90px; border-top: 1px solid var(--line); }
.topic { display: grid; grid-template-columns: 80px 1fr 1.1fr 35px; align-items: center; min-height: 145px; border-bottom: 1px solid var(--line); transition: padding .3s, background .3s; }
.topic:hover { padding: 0 20px; background: rgba(155,181,214,.12); }
.topic > span { color: var(--coral); font: 700 12px "Manrope"; }
.topic h3 { font: 700 24px "Manrope"; margin: 0; }
.topic p { color: var(--muted); line-height: 1.65; max-width: 440px; }
.topic i { font-style: normal; font-size: 22px; }
.academic-note { margin-top: 70px; padding: 30px; border-radius: 22px; background: var(--blue); display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 25px; }
.academic-mark { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--blue-dark); color: white; font: 800 16px "Manrope"; }
.academic-note p { margin: 0 0 5px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.academic-note h3 { margin: 0 0 7px; font: 700 18px "Manrope"; }
.academic-note span { color: rgba(16,21,29,.62); font-size: 13px; }
.academic-note a { font-weight: 700; font-size: 13px; border-bottom: 1px solid; }

.connect { min-height: 680px; background: var(--blue-dark); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; padding: 100px 24px; }
.connect > *:not(.connect-orbit) { position: relative; z-index: 1; }
.eyebrow.light { color: rgba(255,255,255,.58); }
.connect h2 { font-size: clamp(50px, 7vw, 96px); margin: 30px 0 28px; }
.connect > p:not(.eyebrow) { max-width: 670px; color: rgba(255,255,255,.67); line-height: 1.8; font-size: 17px; }
.connect-actions { display: flex; gap: 12px; margin: 32px 0 25px; }
.button.coral { background: var(--coral); }
.button.ghost { border: 1px solid rgba(255,255,255,.4); }
.connect-note { font-size: 11px; color: rgba(255,255,255,.43); }
.connect-orbit { position: absolute; width: 740px; height: 740px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.connect-orbit::before, .connect-orbit::after { content: ""; position: absolute; border: 1px dashed rgba(255,255,255,.08); border-radius: 50%; inset: 85px; }
.connect-orbit::after { inset: 180px; }

footer { min-height: 120px; display: flex; align-items: center; justify-content: space-between; width: min(1180px, calc(100% - 48px)); margin: auto; color: var(--muted); font-size: 12px; }
.footer-brand { color: var(--ink); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 35px; }
  .hero-copy { padding: 0; }
  .hero-visual { height: 620px; margin-top: 30px; }
  .portrait-card { width: min(610px, 90%); }
  .credibility-strip { position: relative; bottom: auto; grid-column: 1; flex-wrap: wrap; margin-top: 20px; }
  .manifesto-grid, .impact-heading, .research-grid { grid-template-columns: 1fr; gap: 45px; }
  .pathway { grid-template-columns: 1fr; }
  .path-arrow { transform: rotate(90deg); justify-self: center; }
  .metrics { grid-template-columns: 1fr; }
  .metric, .metric + .metric { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding: 40px 0; }
  .metric:first-child { border-top: 0; }
  .topic { grid-template-columns: 50px 1fr 30px; padding: 25px 0; }
  .topic p { grid-column: 2; }
  .topic i { grid-column: 3; grid-row: 1; }
  .organization-card,
  .organization-card:nth-child(even) { grid-template-columns: 1fr; }
  .organization-card:nth-child(even) .organization-image { order: 0; }
  .organization-image { min-height: 390px; }
}

@media (max-width: 680px) {
  .site-header, .hero, .section, footer { width: min(100% - 30px, 1180px); }
  .site-header { height: 72px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 35px 0 80px; }
  .speech-bubble { margin-top: 32px; }
  h1 { font-size: clamp(47px, 14vw, 68px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { height: 485px; }
  .portrait-card { width: 100%; height: 90%; border-radius: 150px 150px 24px 24px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 470px; height: 470px; }
  .floating-note { font-size: 10px; padding: 10px 12px; }
  .note-one { right: -5px; }
  .note-two { left: -6px; }
  .credibility-strip { justify-content: flex-start; align-items: stretch; gap: 0; padding: 18px 20px; flex-direction: column; }
  .credibility-strip i { display: none; }
  .credibility-item {
    display: grid;
    grid-template-columns: minmax(108px, 1fr) 142px 16px;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 76px;
  }
  .credibility-strip i + .credibility-item { border-top: 1px solid var(--line); }
  .credibility-item img {
    width: 138px;
    height: 54px;
    margin: 0;
    justify-self: center;
  }
  .credibility-item .logo-miare { width: 132px; }
  .credibility-item .logo-ganje { width: 132px; }
  .credibility-item .logo-sharif { width: 142px; }
  .credibility-item b { justify-self: end; }
  .section { padding: 95px 0; }
  .impact { width: 100%; padding-left: 18px; padding-right: 18px; }
  h2 { font-size: clamp(40px, 12vw, 58px); }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { padding: 27px; }
  .organization-card { border-radius: 24px; }
  .organization-image { min-height: 240px; }
  .organization-content { padding: 29px 23px 34px; }
  .organization-content h3 { margin-top: 28px; }
  .impact-points { grid-template-columns: 1fr; }
  .academic-note { grid-template-columns: 55px 1fr; }
  .academic-note a { grid-column: 2; justify-self: start; margin-top: 6px; }
  .academic-note span { display: block; line-height: 1.5; }
  .connect { min-height: 650px; }
  .connect-actions { flex-direction: column; width: min(330px, 100%); }
  .connect-actions .button { justify-content: center; }
  footer { flex-direction: column; justify-content: center; gap: 12px; text-align: center; padding: 35px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
