:root {
  --green: #123b60;
  --green-2: #176b9c;
  --lime: #83d4ed;
  --cream: #eef6fa;
  --paper: #f9fbfc;
  --ink: #15364f;
  --muted: #657985;
  --line: #d5e1e7;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }

.site-header {
  height: 92px;
  max-width: 1400px;
  margin: auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 11px; font: 800 18px/1 "Manrope"; letter-spacing: 2.5px; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font: 500 9px/1 "DM Sans"; letter-spacing: 1.2px; }
.brand-mark { width: 37px; height: 37px; border: 1px solid var(--green); border-radius: 50%; display: grid; place-items: center; }
.brand-mark svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.nav { display: flex; align-items: center; gap: 35px; font-size: 14px; font-weight: 600; }
.nav a:not(.nav-cta) { position: relative; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -5px; background: var(--green); transition: .25s; }
.nav a:hover::after { right: 0; }
.nav-cta { padding: 12px 21px; color: white; background: var(--green); border-radius: 99px; }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 92px);
  max-width: 1400px;
  margin: auto;
  padding: 6vh 5vw 10vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 6vw;
  overflow: hidden;
}
.eyebrow { margin: 0 0 24px; color: var(--green-2); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 24px; height: 1px; background: currentColor; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(45px, 5.4vw, 79px); line-height: 1.02; letter-spacing: -4px; }
h1 em { color: var(--green-2); font-style: normal; }
.hero-name {
  margin-bottom: 22px;
  font-size: clamp(62px, 7vw, 104px);
  line-height: .86;
  letter-spacing: -6px;
}
.hero-position {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--green);
  font: 600 clamp(20px, 2.1vw, 30px)/1.3 "Manrope";
  letter-spacing: -1px;
}
.hero-lead { max-width: 590px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { margin-top: 39px; display: flex; align-items: center; gap: 30px; }
.button { min-height: 54px; padding: 0 25px; display: inline-flex; justify-content: center; align-items: center; gap: 30px; border-radius: 2px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--green); color: white; }
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 5px; }
.text-link span { margin-left: 9px; }
.trust-row { margin-top: 72px; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.trust-row i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.portrait-card {
  position: relative;
  width: min(470px, 90%);
  height: 580px;
  padding: 12px;
  background: var(--cream);
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.42);
  pointer-events: none;
}
.portrait-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.9) contrast(1.02);
}
.portrait-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 15px 18px;
  background: rgba(11,45,72,.92);
  color: white;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  z-index: 2;
}
.portrait-caption span:last-child { color: var(--lime); }
.portrait-proof {
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: min(410px, 82%);
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 15px 40px rgba(18,59,96,.13);
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.portrait-proof > div {
  min-height: 74px;
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.portrait-proof > div + div {
  border-left: 1px solid var(--line);
}
.portrait-proof strong,
.portrait-proof span {
  display: block;
}
.portrait-proof strong {
  font: 700 14px "Manrope";
}
.portrait-proof > div:first-child strong {
  font-size: 19px;
}
.portrait-proof > div:first-child span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.portrait-proof > div:last-child {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.visual-card { width: min(470px, 90%); height: 580px; padding: 28px 31px; background: var(--cream); position: relative; }
.visual-card::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(18,59,96,.12); pointer-events: none; }
.visual-top, .visual-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.visual-top .number { font-size: 18px; }
.visual-bottom { align-items: end; }
.visual-bottom span:last-child { color: var(--muted); font-size: 9px; }
.product-illustration { height: 475px; display: grid; place-items: center; }
.product-illustration svg { width: 93%; }
.orbit { fill: none; stroke: #d7ddca; stroke-width: 1; stroke-dasharray: 5 7; }
.leaf { fill: var(--lime); }
.leaf-two { fill: #9ab66f; }
.stem, .jar, .jar-line, .check { fill: none; stroke: var(--green); stroke-width: 2.3; }
.jar { fill: rgba(255,255,255,.4); }
.seal { fill: var(--green); }
.check { stroke: var(--lime); stroke-width: 3; }
.dot { fill: var(--green-2); opacity: .55; }
.floating-note { position: absolute; background: white; box-shadow: 0 15px 40px rgba(18,59,96,.13); z-index: 3; }
.note-one { left: 0; top: 25%; padding: 19px 22px; }
.note-one strong, .note-one span { display: block; }
.note-one strong { font: 800 20px "Manrope"; }
.note-one span { margin-top: 3px; color: var(--muted); font-size: 10px; }
.note-two { right: -5px; bottom: 18%; padding: 14px 19px; display: flex; align-items: center; gap: 9px; font-size: 11px; }
.pulse { width: 9px; height: 9px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(131,212,237,.25); }

.section { padding: 110px max(5vw, calc((100vw - 1260px)/2)); }
.services { background: #eaf3f7; }
.section-heading { display: grid; grid-template-columns: 1.5fr .5fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.section-heading h2, .about h2, .process h2, .contact h2 { margin-bottom: 0; font-size: clamp(38px, 4.1vw, 61px); line-height: 1.08; letter-spacing: -2.8px; }
.section-heading > p { color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { min-height: 410px; padding: 28px; background: var(--paper); border-top: 3px solid transparent; display: flex; flex-direction: column; transition: .3s; }
.service-card:hover { transform: translateY(-8px); border-color: var(--lime); box-shadow: 0 18px 45px rgba(18,59,96,.1); }
.service-card.featured { background: var(--green); color: white; }
.service-number { align-self: flex-end; color: #a8b0ab; font: 600 11px "Manrope"; }
.service-icon { width: 55px; height: 55px; margin: 27px 0 25px; background: #dceff6; border-radius: 50%; display: grid; place-items: center; }
.service-icon svg { width: 29px; fill: none; stroke: var(--green); stroke-width: 1.7; }
.featured .service-icon { background: rgba(255,255,255,.12); }
.featured .service-icon svg { stroke: var(--lime); }
.service-card h3 { margin-bottom: 14px; font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.featured p { color: #c4cec9; }
.service-card a { margin-top: auto; padding-top: 20px; font-size: 12px; font-weight: 700; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
.featured a { border-color: rgba(255,255,255,.17); color: var(--lime); }

.signals {
  background: var(--paper);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  align-items: start;
}
.signals-intro {
  position: sticky;
  top: 60px;
}
.signals h2 {
  margin-bottom: 25px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.7px;
}
.signals-intro > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.signal-list {
  border-top: 1px solid var(--line);
}
.signal-item {
  min-height: 112px;
  padding: 26px 5px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  transition: padding .25s, background .25s;
}
.signal-item:hover {
  padding-left: 18px;
  background: var(--cream);
}
.signal-item span {
  color: var(--green-2);
  font: 700 11px "Manrope";
}
.signal-item p {
  margin: 0;
  font: 600 clamp(18px, 2vw, 24px)/1.35 "Manrope";
  letter-spacing: -.5px;
}

.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.about-visual { position: relative; }
.shape-main { max-width: 510px; background: var(--cream); border-radius: 48% 48% 5px 5px; overflow: hidden; }
.shape-main svg { width: 100%; }
.about-bg { fill: #d9edf5; }
.person-skin { fill: #d9a27e; }
.person-hair { fill: #173f5e; }
.person-coat { fill: #f8f7f0; stroke: #b7c3b8; stroke-width: 2; }
.person-shirt { fill: var(--green); }
.person-arms { fill: none; stroke: #f8f7f0; stroke-width: 35; stroke-linecap: round; }
.line { stroke: #b7c3b8; stroke-width: 2; }
.about-leaf { fill: #79cbe5; }
.sample { fill: var(--paper); stroke: var(--green); }
.sample-line, .accent-line { stroke: var(--green); stroke-width: 2; }
.about-stamp { position: absolute; right: -35px; bottom: 15px; width: 130px; height: 130px; background: var(--green); color: var(--lime); border-radius: 50%; display: grid; place-items: center; }
.about-stamp span { position: absolute; width: 100%; height: 100%; padding: 8px; font-size: 8px; letter-spacing: 1.6px; text-align: center; transform: rotate(-18deg); }
.about-stamp b { font-size: 30px; }
.large-copy { margin: 32px 0 38px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.values > div { padding: 20px 0; border-top: 1px solid var(--line); display: flex; gap: 22px; }
.values strong { color: #9eaaa4; font-size: 11px; }
.values span, .values b { display: block; }
.values b { margin-bottom: 4px; font: 700 15px "Manrope"; }
.values span { color: var(--muted); font-size: 13px; }

.credentials {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  align-items: start;
}
.credentials-heading {
  position: sticky;
  top: 60px;
}
.credentials-heading .eyebrow {
  color: var(--lime);
}
.credentials-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -2.7px;
}
.credentials-heading > p:last-child {
  color: #b8c8c2;
  font-size: 15px;
  line-height: 1.75;
}
.credential-list {
  border-top: 1px solid rgba(255,255,255,.18);
}
.credential-card {
  position: relative;
  min-height: 145px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
}
.credential-year {
  color: var(--lime);
  font: 700 11px "Manrope";
}
.credential-type {
  margin: 0 0 8px;
  color: #9db1aa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.credential-card h3 {
  margin-bottom: 8px;
  font-size: clamp(19px, 2vw, 25px);
}
.credential-card div > p:last-child {
  margin: 0;
  color: #b8c8c2;
  font-size: 13px;
}
.credential-featured {
  padding-right: 185px;
}
.credential-tag {
  position: absolute;
  right: 0;
  top: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(131,212,237,.5);
  color: var(--lime);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.experience {
  background: #eaf3f7;
}
.experience-heading {
  max-width: 820px;
  margin-bottom: 68px;
}
.experience-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.1vw, 61px);
  line-height: 1.08;
  letter-spacing: -2.8px;
}
.experience-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.company-group {
  padding: 38px 0 52px;
  border-top: 1px solid #cbdde6;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 50px;
}
.company-label {
  display: flex;
  gap: 18px;
}
.company-label > span {
  color: var(--green-2);
  font: 700 11px "Manrope";
}
.company-label h3 {
  margin-bottom: 8px;
  font-size: 18px;
}
.company-label p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.logo-card {
  height: 150px;
  padding: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(18,59,96,.1);
}
.logo-frame {
  width: 96px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-frame-wide {
  width: 130px;
  height: 68px;
}
.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.logo-card.dark {
  background: #000;
}
.clients-pending {
  min-height: 150px;
  padding: 32px 38px;
  background: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.clients-pending p {
  max-width: 580px;
  margin: 10px 0 0;
  color: #c4cec9;
  font: 500 14px/1.65 "Manrope";
}
.clients-pending strong {
  color: var(--lime);
  font: 700 19px "Manrope";
}
.collaborations-group {
  margin-top: 52px;
  padding-bottom: 0;
}
.collaboration-logos .logo-card {
  height: 135px;
}
.logo-card-cover {
  background: #72c34a;
}
.logo-card-cover .logo-frame {
  width: 105px;
  height: 92px;
}

.process { background: var(--green); color: white; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; }
.eyebrow.light { color: var(--lime); }
.process-list { border-top: 1px solid rgba(255,255,255,.18); }
.process-step { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.18); display: grid; grid-template-columns: 60px 1fr; }
.process-step > span { color: var(--lime); font: 700 12px "Manrope"; }
.process-step h3 { margin-bottom: 9px; font-size: 19px; }
.process-step p { margin: 0; max-width: 480px; color: #b8c8c2; font-size: 14px; line-height: 1.6; }

.contact { background: var(--cream); }
.contact-card { padding: 70px; background: var(--lime); display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 70px; }
.contact-card p:not(.eyebrow) { max-width: 570px; margin: 24px 0 0; line-height: 1.7; }
.direct-contact { margin-top: 36px; border-top: 1px solid rgba(18,59,96,.22); }
.direct-contact a { padding: 17px 0; border-bottom: 1px solid rgba(18,59,96,.22); display: flex; justify-content: space-between; gap: 20px; }
.direct-contact span { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.direct-contact strong { font-size: 13px; overflow-wrap: anywhere; }
.contact-form { padding: 34px; background: var(--white); box-shadow: 0 18px 45px rgba(18,59,96,.1); }
.contact-form label { margin-bottom: 19px; display: block; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 14px "DM Sans";
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(23,107,156,.1); }
.form-submit { width: 100%; border: 0; background: var(--green); color: white; cursor: pointer; }
.contact-card .form-note { margin-top: 13px; color: var(--muted); font-size: 10px; line-height: 1.5; text-align: center; }

footer { padding: 55px max(5vw, calc((100vw - 1260px)/2)) 25px; background: #0b2d48; color: white; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; gap: 40px; }
.footer-brand .brand-mark { border-color: var(--lime); color: var(--lime); }
.footer-brand small { color: #95aaa2; }
footer p { margin: 0; color: #95aaa2; font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; justify-content: flex-end; gap: 25px; font-size: 12px; }
.copyright { grid-column: 1/-1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .nav { gap: 20px; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 560px; margin-top: 20px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about { gap: 6vw; }
  .about-stamp { right: 0; }
}

@media (max-width: 720px) {
  .site-header { height: 76px; }
  .site-header .brand { font-size: 12px; letter-spacing: 1.4px; gap: 8px; }
  .site-header .brand-mark { width: 33px; height: 33px; flex: 0 0 33px; }
  .site-header .brand small { font-size: 7px; letter-spacing: .8px; }
  .menu-toggle { width: 42px; height: 42px; border: 0; background: transparent; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 7px; }
  .menu-toggle span { width: 25px; height: 2px; background: var(--green); transition: .25s; }
  .menu-toggle span:last-child { width: 17px; }
  .menu-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
  .menu-toggle.active span:last-child { width: 25px; transform: rotate(-45deg) translate(3px, -4px); }
  .nav { position: absolute; left: 0; right: 0; top: 76px; padding: 30px 5vw; background: var(--paper); flex-direction: column; align-items: stretch; transform: translateY(-140%); opacity: 0; transition: .3s; z-index: -1; box-shadow: 0 15px 25px rgba(23,63,53,.08); }
  .nav.open { transform: none; opacity: 1; }
  .nav a { padding: 8px 0; }
  .nav-cta { text-align: center; padding: 14px !important; }
  .hero { min-height: auto; padding-top: 65px; }
  h1 { font-size: 46px; letter-spacing: -2.5px; }
  .hero-name { font-size: 64px; letter-spacing: -4px; }
  .hero-position { font-size: 21px; letter-spacing: -.7px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-row { margin-top: 48px; gap: 10px; font-size: 9px; }
  .hero-visual { min-height: 470px; }
  .portrait-card { height: 450px; padding: 9px; }
  .portrait-card::after { inset: 9px; }
  .portrait-card > img { object-position: center 30%; }
  .portrait-caption { left: 20px; right: 20px; bottom: 20px; padding: 12px; flex-direction: column; gap: 4px; }
  .portrait-proof { bottom: -34px; width: 88%; }
  .portrait-proof > div { min-height: 68px; padding: 12px; }
  .portrait-proof strong { font-size: 11px; }
  .portrait-proof > div:first-child strong { font-size: 16px; }
  .visual-card { height: 450px; padding: 24px; }
  .product-illustration { height: 360px; }
  .note-one { left: -2px; top: 24%; }
  .note-two { right: -2px; bottom: 12%; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .section-heading, .signals, .about, .credentials, .process, .contact-card { grid-template-columns: 1fr; }
  .section-heading { gap: 20px; }
  .section-heading h2, .signals h2, .about h2, .process h2, .contact h2 { font-size: 40px; letter-spacing: -2px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .signals { gap: 45px; }
  .signals-intro { position: static; }
  .signal-item { min-height: 98px; grid-template-columns: 46px 1fr; }
  .about { gap: 70px; }
  .about-visual { max-width: 480px; margin: auto; }
  .credentials { gap: 45px; }
  .credentials-heading { position: static; }
  .credential-featured { padding-right: 0; padding-bottom: 70px; }
  .credential-tag { left: 70px; right: auto; top: auto; bottom: 25px; }
  .company-group { grid-template-columns: 1fr; gap: 30px; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-card { height: 125px; padding: 18px; }
  .process { gap: 55px; }
  .contact-card { padding: 42px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 27px 22px; }
  .direct-contact a { flex-direction: column; gap: 5px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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