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

:root {
  --green: #4F8EF7;
  --black: #0B0E1A;
  --forest: #141829;
  --grey: #8CA0C4;
  --dark: #2A3550;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
#sectors, #about, #services, #contact { scroll-margin-top: 78px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.25s, height 0.25s, opacity 0.2s;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(11, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 142, 247, 0.08);
}
.nav-logo img { height: 52px; position: relative; z-index: 1; }
.nav-links {
  display: flex; gap: 40px; align-items: center;
  position: relative; z-index: 1;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
}
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }

.nav-toggle-check { display: none; }
.nav-toggle-label { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.duotone-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.duotone-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(79,142,247,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 30% 70%, rgba(20,24,41,0.6) 0%, transparent 70%);
  z-index: 2;
  mix-blend-mode: screen;
}
.duotone-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(79,142,247,0.06) 0%,
    transparent 40%,
    rgba(10,10,10,0.92) 80%
  );
  z-index: 3;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, transparent 100%);
}

.hero-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.4;
  z-index: 4;
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0% { top: 0%; }
  100% { top: 100%; }
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6%;
  overflow: hidden;
}
.duotone-figure {
  position: relative;
  width: 52%;
  height: 92%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.figure-silhouette {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 30% 10% at 50% 12%, #4F8EF7 0%, transparent 100%),
    radial-gradient(ellipse 20% 28% at 50% 28%, #111827 0%, transparent 100%),
    radial-gradient(ellipse 35% 55% at 48% 68%, #111827 0%, #141829 60%, transparent 100%);
  filter: contrast(1.4);
}

.hero-slash {
  position: absolute;
  right: 44%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 10%, var(--green) 30%, var(--green) 70%, transparent 90%);
  opacity: 0.6;
  z-index: 5;
  transform: skewX(-8deg);
}

.hero-dots {
  position: absolute;
  top: 15%;
  right: 5%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dots span {
  display: block;
  width: 4px; height: 4px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-dots span:nth-child(2) { animation-delay: 0.3s; opacity: 0.6; }
.hero-dots span:nth-child(3) { animation-delay: 0.6s; opacity: 0.3; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-stat {
  position: absolute;
  right: 52%;
  top: 38%;
  z-index: 6;
  text-align: right;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  line-height: 1;
  color: var(--green);
  letter-spacing: 0.02em;
}
.hero-stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--grey);
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 680px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  margin-top: 120px;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--green);
}
.hero-eyebrow span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
}
h1 em {
  font-style: normal;
  color: var(--green);
  display: block;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey);
  max-width: 420px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.45s;
  opacity: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }

.btn-ghost {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 0;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s, gap 0.2s;
}
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--green); gap: 16px; }

/* ── TICKER ── */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 10;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--black);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::after {
  content: '◆';
  font-size: 8px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ── */
section { padding: 120px 48px; }

.section-label {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
}

/* ── SECTORS ── */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.sector-card {
  background: var(--forest);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover { background: #1a2238; }

.sector-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(79,142,247,0.08);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: color 0.3s;
}
.sector-card:hover .sector-num { color: rgba(79,142,247,0.15); }

.sector-icon {
  font-size: 28px;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
}
.sector-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}
.sector-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey);
}

/* ── ABOUT ── */
.about {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.about-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.about-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.about-duotone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}
.about-definition {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
  border-left: 2px solid var(--green);
  padding-left: 16px;
}
.about-definition .phonetic {
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.about-definition .def-text {
  font-size: 12px;
  color: var(--grey);
  font-style: italic;
}
.about-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
h2 span { color: var(--green); }

.about-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.value-item {
  border-left: 2px solid var(--dark);
  padding-left: 16px;
  transition: border-color 0.2s;
}
.value-item:hover { border-color: var(--green); }
.value-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.value-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--dark);
  margin-top: 64px;
}
.service-item {
  background: var(--black);
  padding: 48px 40px;
  display: flex;
  gap: 24px;
  transition: background 0.2s;
}
.service-item:hover { background: #0d1018; }
.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--green);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
}
.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.6;
}

/* ── STATS ── */
.stats {
  background: var(--green);
  padding: 80px 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.6);
  margin-top: 8px;
}

/* ── CONTACT ── */
.contact {
  background: var(--black);
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.contact-heading h2 { margin-bottom: 0; }
.contact-sub {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0;
}
.contact-details {
  padding-left: 64px;
  align-self: stretch;
  border-left: 1px solid var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-write-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.contact-email {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--green); }

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--forest);
  border: 1px solid var(--dark);
  border-radius: 0;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
footer {
  background: var(--forest);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--dark);
}
footer img { height: 40px; opacity: 0.7; transition: opacity 0.2s; }
footer img:hover { opacity: 1; }
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-copy {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.08em;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  nav { padding: 10px 24px; flex-wrap: wrap; }
  .nav-links { display: none; }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }
  .nav-toggle-label span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--white);
    transition: background 0.2s, transform 0.25s, opacity 0.2s;
  }
  .nav-toggle-label:hover span { background: var(--green); }

  .nav-toggle-check:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle-check:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle-check:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-toggle-check:checked ~ .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(79, 142, 247, 0.12);
    padding: 16px 0 8px;
    gap: 0;
  }
  .nav-toggle-check:checked ~ .nav-links li { width: 100%; text-align: center; }
  .nav-toggle-check:checked ~ .nav-links a {
    display: block;
    font-size: 13px;
    padding: 14px 0;
  }

  .hero { padding: 0 24px 60px; min-height: 100svh; }
  h1 { font-size: clamp(64px, 18vw, 100px); }
  .hero-stat { display: none; }
  .hero-sub { font-size: 16px; }
  .btn-primary { padding: 11px 13px; }

  section { padding: 72px 24px; }

  .sectors { grid-template-columns: 1fr; gap: 2px; }

  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 320px; }
  .about-content { padding: 48px 24px; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .contact { grid-template-columns: 1fr; padding: 72px 24px; gap: 40px; }
  .contact-details { padding-left: 0; border-left: none; }

  footer { flex-direction: column; gap: 24px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .contact {
    grid-template-columns: 0.9fr 1fr 1fr;
    gap: 32px;
    padding: 96px 32px;
  }
  .contact-details { padding-left: 32px; }
  .contact-email { font-size: 16px; }
}

