*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
:root {
  --bg: #F7F8FA;
  --surface: #FFFFFF;
  --ink: #14161A;
  --sub: #5B6169;
  --dark-bg: #14161A;
  --dark-bg-2: #1C1E22;
  --dark-text: #F5F6F7;
  --dark-sub: #9BA0A8;
  --orange: #F77804;
  --orange-hover: #FF9433;
  --green: #00B089;
  --line: #E4E7EC;
  --dark-line: #2A2C30;
  --panel: #FFFFFF;
  --font-head: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --font-body: 'Barlow', -apple-system, sans-serif;
}
body {
  background: var(--bg); color: var(--ink); font-family: var(--font-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
  font-size: 17px; line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.heading { font-family: var(--font-head); text-transform: uppercase; }
@media (prefers-reduced-motion: reduce) { *{ transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; } }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(20,22,26,0.05);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 0.85rem; padding-bottom: 0.85rem; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 38px; width: auto; }
.brand span { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; color: var(--ink); text-transform: uppercase; }
.btn {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.72rem 1.4rem; border-radius: 12px; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-orange { background: var(--orange); color: var(--dark-bg); }
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-green { background: var(--green); color: var(--dark-bg); }
.btn-green:hover { background: #17C79A; transform: translateY(-1px); }
.btn-final { background: var(--green); color: var(--dark-bg); }
.btn-final:hover { background: #17C79A; transform: translateY(-1px); }
.header-cta { flex-shrink: 0; }

/* ---------------- hero ---------------- */
.hero {
  display: grid;
  background: #1c1c1e;
  min-height: calc(84vh - 68px);
  grid-template-columns: minmax(1.5rem, calc((100% - 1280px) / 2 + 1.5rem)) minmax(280px, 820px) 1fr;
  align-items: stretch;
}
.hero-copy-wrap { grid-column: 2; display: flex; flex-direction: column; justify-content: center; padding: 3rem 0; max-width: 760px; }
h1.headline {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.1rem, 2.6vw + 1rem, 3.2rem); line-height: 1.16; letter-spacing: -0.015em;
  margin-bottom: 1rem; color: var(--dark-text);
}
h1.headline .line-1 { display: block; }
h1.headline .accent-line { display: block; color: var(--green); }
.hero-tagline {
  font-family: var(--font-body); font-weight: 700; font-size: clamp(1.15rem, 1vw + 0.8rem, 1.4rem);
  line-height: 1.5; color: var(--dark-text); margin-bottom: 1.8rem;
}
.hero-tagline strong { color: inherit; font-weight: 700; }
.btn-hero { border-radius: 12px; padding: 1.35rem 2.4rem; font-size: 1.05rem; letter-spacing: 0.03em; align-self: flex-start; }

.team-placeholder {
  grid-column: 3; width: 100%; height: 100%;
  overflow: hidden;
}
.team-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------- solutions (below hero) ---------------- */
.solutions { padding: 5.5rem 0; }
.solutions .wrap { max-width: 1560px; }
.solutions-head { margin: 0 auto 3.5rem; text-align: center; }
.solutions-eyebrow {
  display: block; font-family: var(--font-head); text-transform: uppercase; color: var(--sub);
  font-size: clamp(1rem, 2vw, 1.45rem); letter-spacing: -0.005em; white-space: nowrap; margin-bottom: 1.1rem;
}
.solutions-title {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.9rem, 3.3vw, 3.1rem); letter-spacing: -0.02em; white-space: nowrap;
}
.solutions-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.solution-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 2.4rem 1.6rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  flex: 0 1 calc((100% - 3rem) / 3); max-width: min(calc((100% - 3rem) / 3), 400px);
}
.solution-icon {
  width: 76px; height: 76px; border-radius: 16px; background: var(--bg); overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.solution-icon img { width: 100%; height: 100%; object-fit: cover; }
.solution-title { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1.3; }
.solution-body { font-size: 0.98rem; line-height: 1.6; color: var(--sub); }

/* ---------------- why us ---------------- */
.why-us { background: var(--dark-bg); color: var(--dark-text); padding: 5.5rem 0; text-align: center; }
.why-us .solutions-eyebrow { color: var(--green); }
.why-us .solutions-title { color: var(--dark-text); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.8rem; }
.why-card { background: var(--dark-bg-2); border: 1px solid var(--dark-line); border-radius: 18px; padding: 3.2rem 2rem; }
.why-word { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: clamp(1.2rem, 1.2vw + 0.8rem, 1.5rem); letter-spacing: -0.01em; color: var(--dark-text); }
.why-desc { font-size: 1.16rem; line-height: 1.6; color: var(--dark-text); margin-top: 1.1rem; }

/* ---------------- results ---------------- */
.results { padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.particle-field {
  position: absolute; top: 0; left: 0; right: 0; height: 70%; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(247,120,4,0.55) 1px, transparent 1.6px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 32%, transparent 92%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 32%, transparent 92%);
  animation: particle-drift 70s linear infinite;
}
@keyframes particle-drift { from { background-position: 0 0; } to { background-position: -200px 100px; } }
.results .wrap { position: relative; z-index: 1; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.8rem; }
.result-item { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.result-icon { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
.result-value { font-family: var(--font-head); font-weight: 700; font-size: clamp(3.4rem, 5vw + 1.5rem, 5.5rem); color: var(--green); letter-spacing: -0.02em; }
.result-label { font-size: 0.95rem; line-height: 1.5; color: var(--sub); max-width: 26ch; }

/* ---------------- testimonials ---------------- */
.testimonials { padding: 5rem 0; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.t-card {
  background: var(--dark-bg-2); border: 1px solid var(--dark-line); border-radius: 16px; padding: 2.8rem 2rem 2.4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem;
}
.t-photo { width: 92px; height: 92px; border-radius: 50%; overflow: hidden; margin-bottom: 0.6rem; border: 2px solid var(--dark-line); flex-shrink: 0; }
.t-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.t-photo-judith img { object-position: 68% 42%; }
.t-quote-wrap { position: relative; align-self: stretch; padding: 1.9rem 1.1rem 2.6rem; text-align: center; }
.t-mark { position: absolute; font-family: var(--font-head); font-size: 2.4rem; color: var(--orange); line-height: 1; }
.t-mark:not(.t-mark-close) { top: -0.4rem; left: -0.1rem; }
.t-mark-close { bottom: -0.6rem; right: -0.1rem; }
.t-quote { font-size: 1rem; line-height: 1.6; color: var(--dark-text); text-align: center; }
.t-spacer { flex: 1 1 auto; min-height: 2rem; }
.t-name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.03em; color: var(--orange); }
.t-role { font-size: 0.94rem; color: var(--dark-sub); margin-bottom: 0.8rem; }
.t-logo { height: 40px; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; }
.t-logo img { height: 100%; width: auto; max-width: 165px; object-fit: contain; border-radius: 4px; }
.t-company { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dark-sub); }

/* ---------------- our people ---------------- */
.people { padding: 5.5rem 0; background: var(--surface); border-top: 1px solid var(--line); }
.people .solutions-head { margin-bottom: 3.5rem; }
.people-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.people-card {
  position: relative; width: 260px; aspect-ratio: 3 / 4; border-radius: 14px; overflow: hidden;
  background: var(--dark-bg); cursor: pointer;
}
.people-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(1) contrast(1.05); transition: filter 0.4s ease, transform 0.4s ease;
}
.people-card:hover img, .people-card:active img, .people-card:focus-visible img { filter: grayscale(0); transform: scale(1.04); }
.people-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--dark-bg-2); }
.people-photo-placeholder .ph-icon { width: 64px; height: 64px; border-radius: 50%; border: 1.5px dashed var(--dark-sub); position: relative; }
.people-photo-placeholder .ph-icon::before { content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%; background: var(--dark-sub); opacity: 0.4; top: 13px; left: 50%; transform: translateX(-50%); }
.people-photo-placeholder .ph-icon::after { content: ""; position: absolute; width: 38px; height: 20px; border-radius: 19px 19px 0 0; background: var(--dark-sub); opacity: 0.4; bottom: 10px; left: 50%; transform: translateX(-50%); }
.people-info {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(20,22,26,0.94), rgba(20,22,26,0));
  transform: translateY(14px); opacity: 0; transition: opacity 0.35s ease, transform 0.35s ease;
}
.people-card:hover .people-info, .people-card:active .people-info, .people-card:focus-visible .people-info { opacity: 1; transform: translateY(0); }
.people-name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 1rem; color: #fff; letter-spacing: 0.02em; }
.people-role { font-size: 0.82rem; color: rgba(255,255,255,0.78); margin-top: 0.25rem; }

/* ---------------- faq ---------------- */
.faq { background: var(--surface); padding: 5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-list { max-width: none; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > summary { list-style: none; cursor: pointer; padding: 1.35rem 0; display: flex; align-items: center; justify-content: center; gap: 0.85rem; text-align: center; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.92rem; letter-spacing: 0.005em; line-height: 1.4; }
.faq-item .chev::before, .faq-item .chev::after { background: var(--ink); }
.faq-body { padding: 0 0 1.6rem 0; text-align: center; max-width: none; }
.faq-body p { font-size: 1.08rem; line-height: 1.7; color: var(--ink); margin: 0 0 0.9rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body strong { color: var(--green); font-weight: 700; }
.faq-body ul { margin: 0.9rem 0 0; }
.faq-body li { font-size: 1.02rem; line-height: 1.65; color: var(--ink); margin-bottom: 0.5rem; }
.faq-body li strong { color: var(--ink); }

.section-head { max-width: 60ch; margin-bottom: 2.8rem; }
.section-head .heading.h2 { font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem); font-weight: 700; letter-spacing: -0.005em; margin-bottom: 0.7rem; text-wrap: balance; }
.chev { width: 22px; height: 22px; position: relative; flex-shrink: 0; margin-top: 0.2rem; }
.chev::before, .chev::after { content: ""; position: absolute; background: var(--sub); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.2s ease, opacity 0.2s ease; }
.chev::before { width: 12px; height: 1.5px; }
.chev::after { width: 1.5px; height: 12px; }
.faq-item[open] .chev::after { opacity: 0; }

/* ---------------- final cta ---------------- */
.final-cta { background: var(--dark-bg); color: var(--dark-text); padding: 5.5rem 0; text-align: center; }
.final-cta h2 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: clamp(1.7rem, 2vw + 1rem, 2.6rem); max-width: 22ch; margin: 0 auto 2rem; text-wrap: balance; }

footer { background: var(--dark-bg); border-top: 1px solid var(--dark-line); padding: 1.5rem 0; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
footer .copy { font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--dark-sub); text-transform: uppercase; }
.footer-brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.footer-brand img { height: 20px; width: auto; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding: 0 1.5rem; min-height: auto; }
  .hero-copy-wrap { grid-column: auto; padding: 3.5rem 1.5rem 0; max-width: 760px; }
  .team-placeholder { grid-column: auto; height: 320px; border-left: none; border-radius: 10px; overflow: hidden; margin: 2rem 0 3rem; }
  .t-grid { grid-template-columns: 1fr; }
  .solution-card { flex-basis: calc((100% - 1.5rem) / 2); max-width: calc((100% - 1.5rem) / 2); }
  .solutions-eyebrow, .solutions-title { white-space: normal; }
  .why-grid, .results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .solution-card { flex-basis: 100%; max-width: 100%; }
}
