/* ShreeJi Associates — dark performance desk (design 3a) */

:root {
  --bg: #0b0b0c;
  --bg-alt: #0e0f10;
  --panel: #131416;
  --line: #1e1f21;
  --line-panel: #202224;
  --line-input: #26282a;
  --line-ghost: #2c2e30;
  --ink: #f2f2ef;
  --ink-soft: #e6e7e8;
  --body: #a9abae;
  --body-soft: #8f9194;
  --nav: #b6b8ba;
  --mute: #83868a;
  --dim: #7b7d80;
  --dim-2: #6e7073;
  --faint: #5c5f62;
  --green: #68d36f;
  --green: oklch(0.78 0.17 145);
  --cyan: #2ccceb;
  --cyan: oklch(0.78 0.13 215);
  --on-accent: #07120c;
  --font-sans: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--green); color: var(--on-accent); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 56px;
}

[id] { scroll-margin-top: 24px; }

/* ---------- Buttons ---------- */

.btn { display: inline-block; border-radius: 2px; font-family: var(--font-sans); }

.btn-solid {
  background: var(--green);
  color: var(--on-accent);
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.btn-solid:hover { filter: brightness(1.08); }

.btn-ghost {
  border: 1px solid var(--line-ghost);
  color: var(--ink-soft);
  transition: border-color 0.15s ease;
}
.btn-ghost:hover { border-color: #45484b; }

.btn-nav { padding: 10px 18px; font-size: 14px; }
.btn-hero { padding: 15px 26px; font-size: 15px; }
.btn-ghost.btn-hero { padding: 15px 24px; }

/* ---------- Header ---------- */

.site-header { border-bottom: 1px solid var(--line); }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
}

.brand { display: flex; align-items: baseline; gap: 10px; }

.brand-name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }

.brand-loc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 30px; }

.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--nav); }
.nav-links a:hover { opacity: 0.7; }

/* ---------- Hero ---------- */

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  padding-block: 76px 64px;
}

.hero-copy { display: flex; flex-direction: column; gap: 30px; }

.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: pretty;
}

.hero-sub {
  margin: 0;
  max-width: 490px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}

.hero-ctas { display: flex; gap: 14px; align-items: center; }

.stats {
  margin: 0;
  display: flex;
  gap: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.stat { display: flex; flex-direction: column; gap: 5px; }

.stat dd {
  margin: 0;
  order: -1;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.stat dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- Lead card (hero form) ---------- */

.lead-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line-panel);
}

.lead-title { margin: 0; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }

.lead-sub { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--body-soft); }

.lead-fields { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }

.field {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid var(--line-input);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field::placeholder { color: var(--dim-2); }
.field:focus { outline: none; border-color: var(--faint); }

.segmented { display: flex; gap: 8px; }

.seg { flex: 1; position: relative; cursor: pointer; }

.seg input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.seg span {
  display: block;
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--line-input);
  color: var(--body);
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease;
}

.seg input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  font-weight: 500;
}

.seg input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }

.btn-submit { width: 100%; padding: 14px; text-align: center; font-size: 14.5px; }

.lead-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--dim-2);
  text-align: center;
}

/* ---------- Networks bar ---------- */

.networks { border-top: 1px solid var(--line); background: var(--bg-alt); overflow: hidden; }

.networks-row { display: flex; align-items: center; gap: 36px; padding-block: 22px; }

.networks-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-2);
  white-space: nowrap;
}

.networks-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: -0.01em;
}

.nlogo {
  height: 21px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.62;
  transition: opacity 0.15s ease;
}

.nlogo:hover { opacity: 1; }

.nlogo-maxweb { height: 30px; }

.networks-more { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); }

/* ---------- Section scaffolding ---------- */

.services .wrap,
.process .wrap,
.team .wrap { display: flex; flex-direction: column; padding-top: 80px; }

.services .wrap { gap: 40px; }
.process .wrap, .team .wrap { gap: 32px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: pretty;
}

.services-title { max-width: 540px; }

.section-intro {
  margin: 0;
  max-width: 400px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body-soft);
  text-wrap: pretty;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-2);
  white-space: nowrap;
}

/* ---------- Services ---------- */

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line-panel);
}

.service-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag-green { color: var(--green); }
.tag-cyan { color: var(--cyan); }

.tag-square { width: 8px; height: 8px; background: currentColor; }

.service-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-card > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body-soft);
  text-wrap: pretty;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-panel);
}

.service-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-panel);
  font-size: 14.5px;
}

.service-list li:last-child { border-bottom: 0; }

.li-num { font-family: var(--font-mono); font-size: 10.5px; color: var(--faint); width: 22px; flex: none; }

/* ---------- Process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 28px 30px;
  border-right: 1px solid var(--line);
}

.step:first-child { padding-left: 0; }
.step:last-child { border-right: 0; padding-right: 0; }

.step-week { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; }
.week-green { color: var(--green); }
.week-cyan { color: var(--cyan); }

.step h3 { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -0.015em; }

.step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--body-soft); text-wrap: pretty; }

/* ---------- Founder note ---------- */

.founder .wrap { padding-top: 80px; }

.founder-card {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 52px;
  padding: 48px;
  background: var(--panel);
  border: 1px solid var(--line-panel);
}

.founder-side { display: flex; flex-direction: column; gap: 16px; }

.founder-photo {
  height: 230px;
  background-image: repeating-linear-gradient(135deg, #1a1b1d 0 9px, #202224 9px 18px);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.photo-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--dim);
  background: var(--panel);
  padding: 5px 8px;
}

.founder-photo.has-photo { padding: 0; }

.founder-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

.founder-kicker,
.sig-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.founder-body { display: flex; flex-direction: column; gap: 20px; }

.founder-quote {
  margin: 0;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-wrap: pretty;
}

.founder-text {
  margin: 0;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-soft);
  text-wrap: pretty;
}

.founder-sig { display: flex; align-items: center; gap: 14px; padding-top: 6px; }

.sig-name { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }

.sig-rule { width: 24px; height: 1px; background: var(--line-ghost); }

/* ---------- Team ---------- */

.team-intro { max-width: 360px; font-size: 15px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.member { display: flex; flex-direction: column; gap: 14px; }

.member-photo {
  aspect-ratio: 4 / 5;
  background-image: repeating-linear-gradient(135deg, #16171a 0 9px, #1d1f21 9px 18px);
  border: 1px solid var(--line-panel);
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.member-photo .photo-tag { font-size: 10px; letter-spacing: 0.06em; background: var(--bg); padding: 5px 7px; }

.member-photo.has-photo { padding: 0; }

.member-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info { display: flex; flex-direction: column; gap: 4px; }

.member-name { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }

.member-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-green { color: var(--green); }
.role-cyan { color: var(--cyan); }

.member-bio { font-size: 13.5px; line-height: 1.5; color: var(--body-soft); margin-top: 3px; }

/* ---------- Contact ---------- */

.contact { margin-top: 84px; background: var(--bg-alt); border-top: 1px solid var(--line); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.52fr 0.48fr;
  gap: 52px;
  padding-block: 64px;
}

.contact-copy { display: flex; flex-direction: column; gap: 24px; }

.contact-copy h2 { line-height: 1.05; }

.contact-sub {
  margin: 0;
  max-width: 440px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  text-wrap: pretty;
}

.contact-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child { border-bottom: 0; }

.contact-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.contact-value { font-size: 15.5px; line-height: 1.5; }
.contact-value a:hover { opacity: 0.7; }

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line-panel);
}

.contact-card-title { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -0.015em; }

.contact-fields { display: flex; flex-direction: column; gap: 11px; margin-top: 4px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }

.field-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.contact-card .field { font-size: 14.5px; }

.seg-compact .seg span { padding: 11px 8px; }

.contact-submit { margin-top: 6px; font-size: 15px; }

.contact-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--faint);
  text-align: center;
  line-height: 1.5;
}

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--line); }

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--dim-2);
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.footer-legal a:hover { opacity: 0.7; }

/* ---------- Legal pages ---------- */

.legal .wrap {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 64px 88px;
}

.legal h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.legal-updated {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.legal h2 {
  margin: 18px 0 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.legal p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--body-soft);
  text-wrap: pretty;
}

.legal a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { opacity: 0.7; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .wrap { padding-inline: 40px; }

  h1 { font-size: 54px; }
  h2 { font-size: 36px; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-block: 56px 48px; }

  .services-grid { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .step { padding: 24px 28px 28px; }
  .step:nth-child(odd) { padding-left: 0; border-right: 1px solid var(--line); }
  .step:nth-child(even) { padding-right: 0; border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .founder-card { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .founder-photo { max-width: 300px; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
}

@media (max-width: 720px) {
  .wrap { padding-inline: 24px; }

  h1 { font-size: 42px; }
  h2 { font-size: 31px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }

  .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }

  .networks-row { flex-wrap: wrap; gap: 14px 36px; padding-block: 20px; }
  .networks-list { flex-wrap: wrap; gap: 12px 26px; }

  .process-grid { grid-template-columns: 1fr; }
  .step { padding: 22px 0 26px; }
  .step:nth-child(odd), .step:nth-child(even) { padding-inline: 0; border-right: 0; }
  .step { border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }

  .founder-card { padding: 28px; }
  .founder-quote { font-size: 22px; }

  .contact-grid { padding-block: 48px; }
  .contact-card { padding: 24px; }

  .footer-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 560px) {
  .brand-loc { display: none; }
  .brand-name { white-space: nowrap; font-size: 17px; }
  .site-nav { gap: 8px; }
  .btn-nav { padding: 9px 12px; font-size: 12.5px; white-space: nowrap; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-hero { text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-solid, .btn-ghost, .field, .seg span { transition: none; }
}
