@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #efefed;
  --light-gray: #e8e8e6;
  --mid-gray: #555555;
  --dark-gray: #1a1a1a;
  --border: rgba(0,0,0,0.12);
  --display: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--display);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.07); }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 34px; width: auto; filter: brightness(0); }
.nav-brand-text { line-height: 1.15; }
.nav-brand-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--mid-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid-gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-cta {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.4rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #222; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-triangle {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-52%);
  width: 540px;
  opacity: 0.12;
  pointer-events: none;
  filter: brightness(0);
}
.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-headline-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.hero-logo-inline {
  width: 110px;
  height: auto;
  filter: brightness(0);
  margin-top: 0.75rem;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--black);
  max-width: 900px;
  margin-bottom: 0;
}
.hero h1 .thin { font-weight: 200; }
.hero h1 .muted {
  color: #bbb;
  font-weight: 800;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--mid-gray);
  max-width: 440px;
  line-height: 1.75;
}
.hero-cta-group { display: flex; gap: 1rem; align-items: center; }
.btn-black {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 0.9rem 2.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-black:hover { background: #222; border-color: #222; }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 0.9rem 2.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ── TICKER ── */
.ticker-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  height: 44px;
  align-items: center;
}
.ticker-inner {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  padding: 0 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  flex-shrink: 0;
}
.ticker-item span { color: var(--black); font-weight: 700; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HVHR FEATURE ── */
.hvhr-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}
.hvhr-left {
  background: var(--dark-gray);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hvhr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 2rem;
  width: fit-content;
}
.hvhr-badge span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hvhr-left h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;

  color: var(--white);
  margin-bottom: 1.5rem;
}
.hvhr-left h2 .thin { font-weight: 200; }
.hvhr-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2rem;
}
.hvhr-right {
  background: var(--off-white);
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hvhr-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.spec-item {
  background: var(--white);
  padding: 1.5rem;
  transition: background 0.2s;
}
.spec-item:hover { background: var(--off-white); }
.spec-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}
.spec-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

/* ── STATS ── */
.stats-band {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--off-white); }
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ── SERVICES ── */
#services { padding: 6rem 3rem; background: var(--off-white); }
.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}
.section-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;

  color: var(--black);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.section-title .thin { font-weight: 200; }
.section-body {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card:hover { background: var(--white); }
.services-cta {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 3rem;
  transition: background 0.2s;
}
.services-cta:hover { background: #222; }
.service-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mid-gray);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.65rem;
}
.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* ── WHY ── */
#why { padding: 6rem 3rem; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-logo-large { width: 100%; max-width: 340px; opacity: 1; filter: brightness(0); }
.why-list { list-style: none; margin-top: 2.5rem; }
.why-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--mid-gray);
  padding-top: 2px;
}
.why-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.why-item p { font-size: 14px; color: #444; line-height: 1.7; }

/* ── CONTACT ── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-top: 1px solid var(--border);
}
.contact-left {
  background: var(--off-white);
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.contact-left h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;

  color: var(--black);
  margin-bottom: 1.5rem;
}
.contact-left h2 .thin { font-weight: 200; }
.contact-left p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail .label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.contact-detail a, .contact-detail span {
  font-size: 15px;
  color: var(--dark-gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--black); }
.contact-right {
  background: var(--white);
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-right: none;
  border-bottom: none;
  padding: 1rem 1.25rem;
  transition: background 0.15s;
}
.form-field:last-child { border-right: 1px solid var(--border); }
.form-field:focus-within { background: var(--off-white); }
.form-field label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.3rem;
}
.form-field input, .form-field select {
  border: none;
  background: transparent;
  font-family: var(--display);
  font-size: 14px;
  color: var(--black);
  outline: none;
}
.form-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}
.form-full:focus-within { background: var(--off-white); }
.form-full label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.3rem;
}
.form-full input, .form-full textarea, .form-full select {
  border: none;
  background: transparent;
  font-family: var(--display);
  font-size: 14px;
  color: var(--black);
  outline: none;
  resize: none;
}
.form-full textarea { min-height: 90px; }
.form-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.form-submit:hover { background: #222; }
.form-success {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.form-success h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 14px; color: #444; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 28px; filter: brightness(0) invert(1); opacity: 0.5; }
.footer-brand-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 0 1.5rem 4rem; }
  .hvhr-section { grid-template-columns: 1fr; }
  .hvhr-specs { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  #services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  #why { padding: 5rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid .why-visual { display: none; }
  #contact { grid-template-columns: 1fr; }
  .contact-left { padding: 4rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-right { padding: 4rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}
