:root {
  --ink: #0b1720;
  --ink-soft: #142630;
  --paper: #f6f4ef;
  --white: #ffffff;
  --muted: #6d777c;
  --line: rgba(11, 23, 32, 0.13);
  --green: #0f9f68;
  --green-bright: #22c985;
  --green-deep: #08704c;
  --gold: #d6b35e;
  --shadow: 0 30px 70px rgba(5, 18, 25, 0.17);
}

* { 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;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(8, 22, 29, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 175px; }
.brand-mark { width: 34px; color: var(--gold); }
.brand-mark svg { display: block; width: 100%; fill: currentColor; }
.brand-mark-line { fill: none; stroke: var(--ink); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 19px; letter-spacing: .15em; }
.brand-copy small { margin-top: 5px; font-size: 8px; letter-spacing: .44em; opacity: .68; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.desktop-nav a { position: relative; font-size: 14px; color: rgba(255,255,255,.75); transition: color .25s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--green-bright); transition: right .25s ease; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { padding: 12px 22px; border: 1px solid rgba(255,255,255,.45); border-radius: 99px; font-size: 13px; font-weight: 600; transition: .25s ease; }
.header-cta:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.menu-button { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: none; cursor: pointer; }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: white; transition: .25s ease; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 850px;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 6vw;
  padding: 120px clamp(24px, 7vw, 112px) 80px;
  color: white;
  background: linear-gradient(118deg, #07151d 0%, #0a2028 55%, #0c2c2b 100%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 180px; background: linear-gradient(transparent, rgba(0,0,0,.22)); pointer-events: none; }
.hero-grid { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, black, transparent 75%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: 3%; top: 13%; background: radial-gradient(circle, rgba(20, 171, 112, .18), transparent 68%); }
.hero-glow-two { width: 320px; height: 320px; left: -10%; bottom: -10%; background: radial-gradient(circle, rgba(214,179,94,.12), transparent 70%); }
.hero-content, .hero-visual { position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 11px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.64); }
.eyebrow span { width: 34px; height: 1px; background: var(--green-bright); }
.hero h1 { max-width: 750px; margin: 28px 0 24px; font-family: "DM Sans", sans-serif; font-size: clamp(48px, 5.4vw, 82px); line-height: 1.13; letter-spacing: -.055em; font-weight: 700; }
.hero h1 em, .contact h2 em { color: var(--green-bright); font-style: normal; }
.hero-content > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; }
.button { min-height: 54px; padding: 0 26px; border-radius: 99px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; font-size: 14px; font-weight: 700; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { color: white; background: var(--green); box-shadow: 0 14px 30px rgba(15,159,104,.24); }
.button-primary:hover { background: var(--green-bright); box-shadow: 0 18px 36px rgba(15,159,104,.32); }
.button-ghost { color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.18); }
.button-ghost:hover, .button-outline:hover { background: rgba(255,255,255,.08); }
.hero-trust { display: flex; gap: 0; margin-top: 54px; }
.hero-trust div { display: flex; flex-direction: column; padding: 0 28px; border-left: 1px solid rgba(255,255,255,.15); }
.hero-trust div:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong { font-size: 19px; letter-spacing: -.02em; }
.hero-trust span { margin-top: 5px; color: rgba(255,255,255,.42); font-size: 11px; }
.hero-visual { width: min(100%, 540px); justify-self: end; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: .88; border-radius: 260px 260px 22px 22px; box-shadow: 0 35px 100px rgba(0,0,0,.42); }
.portrait-frame img { height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); }
.portrait-shade { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); background: linear-gradient(180deg, transparent 62%, rgba(2,12,16,.52)); }
.verified-card, .market-card { position: absolute; border: 1px solid rgba(255,255,255,.18); background: rgba(9,30,35,.78); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.verified-card { left: -70px; top: 15%; padding: 16px 22px 16px 16px; border-radius: 14px; display: flex; align-items: center; gap: 13px; }
.verified-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: #fff; background: var(--green); }
.verified-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.verified-card span:last-child { display: flex; flex-direction: column; }
.verified-card small { color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .16em; }
.verified-card strong { margin-top: 3px; font-size: 15px; letter-spacing: .08em; }
.market-card { right: -50px; bottom: 6%; width: 270px; padding: 18px 20px 12px; border-radius: 16px; }
.market-card-top { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.5); }
.market-card-top strong { color: var(--green-bright); }
.market-card svg { width: 100%; margin-top: 8px; overflow: visible; }
.chart-fill { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--green-bright); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.scroll-cue { position: absolute; z-index: 3; left: clamp(24px, 3vw, 52px); bottom: 38px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.35); font-size: 9px; letter-spacing: .2em; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue span { width: 35px; height: 1px; background: rgba(255,255,255,.35); }

.section { padding: 130px clamp(24px, 7vw, 112px); }
.section-kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-kicker-light { color: var(--green-bright); }
.about-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 10vw; margin-top: 48px; }
.about h2, .team h2, .services h2, .compliance h2, .contact h2 { margin: 0; font-family: "DM Sans", sans-serif; font-size: clamp(42px, 5vw, 72px); line-height: 1.18; letter-spacing: -.055em; }
.about h2 span, .team h2 span { color: var(--green); }
.about-copy .lead { margin: 0 0 24px; color: var(--ink); font-size: 22px; line-height: 1.65; }
.about-copy > p:not(.lead) { color: var(--muted); font-size: 15px; line-height: 1.9; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 700; }
.text-link span { color: var(--green); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 90px; }
.value-card { position: relative; min-height: 290px; padding: 34px; border: 1px solid var(--line); background: rgba(255,255,255,.38); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.value-card:hover { transform: translateY(-8px); border-color: rgba(15,159,104,.35); background: white; }
.value-number { position: absolute; top: 24px; right: 25px; color: #9ca4a5; font-size: 11px; }
.value-icon { display: grid; place-items: center; width: 52px; height: 52px; color: var(--green); border: 1px solid rgba(15,159,104,.25); border-radius: 50%; font-size: 23px; }
.value-card h3 { margin: 58px 0 12px; font-size: 22px; }
.value-card p { margin: 0; max-width: 280px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.services { color: white; background: var(--ink); display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.services-intro { position: sticky; top: 130px; align-self: start; }
.services h2 { margin-top: 35px; font-size: clamp(40px, 4.5vw, 65px); }
.services-intro > p { max-width: 420px; color: rgba(255,255,255,.48); line-height: 1.8; }
.services-list { border-top: 1px solid rgba(255,255,255,.13); }
.service-row { min-height: 150px; display: grid; grid-template-columns: 55px 1fr 40px; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.13); transition: padding .3s ease, background .3s ease; }
.service-row:hover { padding: 0 18px; background: rgba(255,255,255,.035); }
.service-row > span { align-self: start; padding-top: 42px; color: var(--green-bright); font-size: 11px; }
.service-row h3 { margin: 0 0 7px; font-size: 24px; }
.service-row p { margin: 0; color: rgba(255,255,255,.43); font-size: 13px; }
.service-row i { color: var(--green-bright); font-size: 22px; font-style: normal; transition: transform .25s ease; }
.service-row:hover i { transform: translate(4px,-4px); }

.team { background: #eeece6; }
.team-heading { display: grid; grid-template-columns: .55fr 1fr .7fr; align-items: end; gap: 5vw; }
.team-heading .section-kicker { align-self: start; }
.team-heading h2 { font-size: clamp(40px, 4.7vw, 68px); }
.team-heading > p { margin: 0 0 7px; color: var(--muted); line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; margin-top: 70px; }
.team-card { overflow: hidden; background: white; }
.team-photo { overflow: hidden; aspect-ratio: 1.18; background: #d9d7d1; }
.team-photo img { height: 100%; object-fit: cover; object-position: center 35%; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.team-card:hover .team-photo img { transform: scale(1.035); }
.team-meta { padding: 25px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.team-meta h3 { margin: 0 0 5px; font-size: 20px; }
.team-meta p { margin: 0; color: var(--muted); font-size: 12px; }
.team-meta > span { color: var(--green); font-size: 9px; letter-spacing: .15em; white-space: nowrap; }

.compliance { color: white; background: linear-gradient(145deg, #0a1b24, #0d292c); }
.compliance-heading { display: grid; grid-template-columns: 1.05fr .75fr; align-items: end; gap: 10vw; }
.compliance h2 { margin-top: 35px; }
.compliance-heading > p { margin: 0 0 10px; color: rgba(255,255,255,.55); line-height: 1.85; }
.compliance-heading strong { display: inline-block; color: white; letter-spacing: .05em; }
.certificate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 70px; }
.certificate-card { appearance: none; width: 100%; padding: 0; overflow: hidden; cursor: zoom-in; text-align: left; color: inherit; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.045); transition: transform .35s ease, border-color .35s ease; }
.certificate-card:hover { transform: translateY(-7px); border-color: rgba(34,201,133,.55); }
.certificate-card > img { height: 430px; object-fit: cover; object-position: center; background: white; }
.certificate-card > span { padding: 21px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.certificate-card strong { font-size: 14px; }
.certificate-card small { color: rgba(255,255,255,.4); font-size: 10px; }
.compliance-note { margin: 30px 0 0; color: rgba(255,255,255,.32); font-size: 11px; text-align: center; }

.contact { position: relative; overflow: hidden; min-height: 650px; display: grid; place-items: center; color: white; text-align: center; background: #07151d; }
.contact-inner { position: relative; z-index: 2; }
.contact-badge { display: inline-block; padding: 9px 14px; color: var(--green-bright); border: 1px solid rgba(34,201,133,.28); border-radius: 99px; font-size: 9px; letter-spacing: .18em; }
.contact h2 { margin-top: 26px; font-size: clamp(42px, 5.8vw, 78px); }
.contact p { margin: 26px auto 0; max-width: 560px; color: rgba(255,255,255,.48); line-height: 1.8; }
.contact-actions { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }
.button-outline { color: white; border: 1px solid rgba(255,255,255,.22); }
.contact-orbit { position: absolute; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; }
.orbit-one { width: 720px; height: 720px; }
.orbit-two { width: 1040px; height: 1040px; }
.contact::after { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(15,159,104,.2), transparent 68%); }

footer { padding: 70px clamp(24px, 7vw, 112px) 30px; color: rgba(255,255,255,.65); background: #061117; }
.footer-top { display: grid; grid-template-columns: 1fr .8fr 1.3fr; align-items: center; gap: 40px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-footer { color: white; }
.footer-top > p { color: rgba(255,255,255,.35); font-size: 12px; letter-spacing: .16em; }
.footer-top nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 24px; font-size: 12px; }
.footer-top nav a:hover { color: white; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.25); font-size: 10px; }

.floating-cta { position: fixed; z-index: 45; right: 22px; bottom: 24px; min-width: 60px; height: 60px; padding: 0 19px; display: flex; align-items: center; justify-content: center; gap: 9px; color: white; background: #08a867; border-radius: 99px; box-shadow: 0 14px 38px rgba(0,0,0,.28); transition: transform .25s ease, background .25s ease; }
.floating-cta:hover { transform: translateY(-4px); background: var(--green-bright); }
.floating-cta svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.floating-cta span { font-size: 13px; font-weight: 700; }

.lightbox { position: fixed; z-index: 100; inset: 0; padding: 60px 20px 30px; display: grid; place-items: center; pointer-events: none; opacity: 0; background: rgba(2,8,11,.94); backdrop-filter: blur(12px); transition: opacity .25s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { width: auto; max-width: min(100%, 1050px); max-height: calc(100vh - 90px); object-fit: contain; box-shadow: 0 25px 80px rgba(0,0,0,.55); transform: scale(.97); transition: transform .25s ease; }
.lightbox.open img { transform: scale(1); }
.lightbox-close { position: absolute; top: 18px; right: 26px; width: 42px; height: 42px; border: 0; border-radius: 50%; cursor: pointer; color: white; background: rgba(255,255,255,.1); font-size: 28px; line-height: 1; }

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

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; margin-right: 12px; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; z-index: 49; inset: 0; padding: 120px 28px 40px; display: flex; flex-direction: column; gap: 18px; color: white; background: rgba(7,21,29,.98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s ease; }
  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 22px; }
  .mobile-menu .mobile-menu-cta { margin-top: 10px; padding: 16px 22px; border: 0; border-radius: 99px; text-align: center; background: var(--green); }
  .hero { grid-template-columns: 1fr 380px; gap: 35px; padding-left: 6vw; padding-right: 6vw; }
  .hero h1 { font-size: 54px; }
  .verified-card { left: -35px; }
  .market-card { right: -20px; }
  .team-heading { grid-template-columns: 1fr 1fr; }
  .team-heading .section-kicker { grid-column: 1 / -1; }
  .team-heading > p { display: none; }
}

@media (max-width: 780px) {
  .site-header { height: 72px; padding: 0 18px; }
  .brand { min-width: auto; }
  .brand-mark { width: 30px; }
  .brand-copy strong { font-size: 16px; }
  .header-cta { display: none; }
  .hero { min-height: auto; height: auto; padding: 130px 22px 100px; grid-template-columns: 1fr; gap: 68px; }
  .hero h1 { margin-top: 22px; font-size: clamp(42px, 12vw, 58px); }
  .hero-content > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .hero-trust div { padding: 0 14px; }
  .hero-trust div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-left: 0; }
  .hero-visual { width: calc(100% - 24px); margin-right: 12px; }
  .verified-card { left: -12px; top: 10%; }
  .market-card { right: -12px; width: 220px; }
  .scroll-cue { display: none; }
  .section { padding: 88px 22px; }
  .about-layout, .services, .compliance-heading { grid-template-columns: 1fr; }
  .about-layout { gap: 38px; }
  .about h2, .team h2, .services h2, .compliance h2, .contact h2 { font-size: 43px; }
  .about-copy .lead { font-size: 19px; }
  .values-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .value-card { min-height: 245px; }
  .services { gap: 60px; }
  .services-intro { position: static; }
  .service-row { min-height: 125px; grid-template-columns: 38px 1fr 22px; }
  .service-row h3 { font-size: 20px; }
  .team-heading, .team-grid { grid-template-columns: 1fr; }
  .team-heading { gap: 30px; }
  .team-heading > p { display: block; }
  .team-grid { margin-top: 50px; }
  .team-photo { aspect-ratio: 1; }
  .certificate-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .certificate-card > img { height: auto; max-height: 500px; object-fit: contain; }
  .certificate-card > span { align-items: flex-start; flex-direction: column; gap: 6px; }
  .contact { min-height: 620px; }
  .contact-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }
  .floating-cta { right: 14px; bottom: 14px; height: 56px; padding: 0 17px; }
}

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