:root {
  --navy: #040e17;
  --navy-2: #071824;
  --navy-3: #0b2637;
  --paper: #06131f;
  --paper-2: #0b2132;
  --surface: #081b29;
  --surface-2: #0c2536;
  --ink: #edf2f4;
  --muted: #91a5af;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(255, 255, 255, .11);
  --copper: #b97447;
  --copper-light: #d6a27d;
  --success: #70a984;
  --shadow: 0 30px 80px rgba(3, 14, 22, .22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(185,116,71,.07), transparent 34%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  color-scheme: dark;
}
button, input, select, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.app-shell { min-height: 100vh; }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: 252px;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: white;
  border-right: 1px solid rgba(255,255,255,.08);
}
.brand-button {
  position: relative;
  flex: 0 0 112px;
  width: 100%;
  height: 112px;
  min-height: 112px;
  padding: 20px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #06131f;
  cursor: pointer;
}
.brand-button img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  max-width: none;
  height: 190px;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%) scale(1.12);
  transform-origin: center;
}
.live-site-button {
  position: relative;
  flex: 0 0 112px;
  width: 100%;
  height: 112px;
  min-height: 112px;
  padding: 15px 17px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 7px 12px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(185,116,71,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,116,71,.08) 1px, transparent 1px),
    radial-gradient(circle at 16% 56%, rgba(185,116,71,.2), transparent 34%),
    #04101a;
  background-size: 16px 16px, 16px 16px, auto, auto;
  color: white;
  text-align: left;
  cursor: pointer;
  transition: .25s ease;
}
.live-site-button::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(214,162,125,.28);
  pointer-events: none;
}
.live-site-button:hover {
  background-color: #071d2d;
  box-shadow: inset 4px 0 0 var(--copper);
}
.camera-rec {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff8378;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
}
.camera-rec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5d52;
  box-shadow: 0 0 0 4px rgba(255,93,82,.14);
  animation: pulse 1.7s ease infinite;
}
.camera-lens {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214,162,125,.58);
  background: rgba(185,116,71,.09);
}
.camera-lens::before {
  content: "";
  position: absolute;
  right: -8px;
  width: 8px;
  height: 18px;
  border: 1px solid rgba(214,162,125,.58);
  border-left: 0;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}
.camera-lens i {
  width: 14px;
  height: 14px;
  border: 2px solid var(--copper-light);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #071522;
}
.camera-copy {
  position: relative;
  z-index: 1;
  display: grid;
  line-height: 1.25;
}
.camera-copy strong { font-size: 13px; letter-spacing: .15em; }
.camera-copy small { color: #91a8b5; font-size: 9px; letter-spacing: .1em; }
.live-site-button > b {
  position: relative;
  z-index: 1;
  color: var(--copper-light);
  font-size: 18px;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,93,82,0); } }

.main-nav { padding: 22px 14px; display: grid; gap: 6px; }
.main-nav button {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: #9fb0bb;
  text-align: left;
  cursor: pointer;
  transition: .2s ease;
}
.main-nav button span {
  width: 26px;
  color: var(--copper-light);
  font-size: 11px;
  letter-spacing: .08em;
}
.main-nav button b { font-size: 13px; font-weight: 600; }
.main-nav button:hover,
.main-nav button.active {
  border-color: rgba(185,116,71,.48);
  background: rgba(185,116,71,.12);
  color: white;
}
.sidebar-foot {
  margin-top: auto;
  padding: 22px 26px 25px;
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
}
.sidebar-foot small { color: var(--copper-light); font-size: 11px; letter-spacing: .12em; }
.sidebar-foot strong { font-size: 13px; }
.sidebar-foot span { margin-top: 8px; color: #657985; font-size: 11px; }

.mobile-header { display: none; }
.main-area { min-height: 100vh; margin-left: 252px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  padding: 0 clamp(22px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(4,14,23,.92);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.system-state {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8fb49c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
}
.system-state span { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.topbar .outline-button { margin-left: auto; }
.outline-button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(237,242,244,.42);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
}
.outline-button:hover { border-color: var(--copper); color: var(--copper-light); }

.page { display: none; padding: clamp(30px, 5vw, 68px); background: transparent; animation: pageIn .28s ease; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } }
.eyebrow {
  display: inline-block;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}
.page h1, .page h2, .modal-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}
.page h1 em, .page h2 em { color: var(--copper); font-weight: inherit; }
.page-intro {
  max-width: 1050px;
  margin-bottom: 40px;
}
.page-intro h1 {
  margin: 12px 0 18px;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .98;
}
.page-intro > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.dashboard-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 110px));
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.hero-image-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  grid-template-rows: 1fr 1fr;
}
.hero-image-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.42) contrast(1.12) brightness(.72); }
.hero-image-grid img:first-child { grid-row: 1 / 3; }
.hero-image-grid.single { display: block; }
.hero-image-grid.single img { width: 100%; height: 100%; object-position: center top; }
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,10,17,.98) 0%, rgba(4,17,28,.88) 48%, rgba(4,17,28,.28) 100%),
    linear-gradient(0deg, rgba(2,10,17,.88), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 88px);
  color: white;
}
.hero-copy h1 {
  margin: 16px 0 25px;
  max-width: 880px;
  font-size: clamp(52px, 6.5vw, 98px);
  line-height: .92;
}
.hero-copy p { max-width: 680px; color: #b4c2c9; font-size: 17px; line-height: 1.85; }
.hero-actions { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 12px; }
.primary-button {
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
}
.primary-button:hover { background: #9f603a; border-color: #9f603a; transform: translateY(-1px); }
.text-button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(7,21,34,.36);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  cursor: pointer;
}
.hero-command {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: 55px;
  z-index: 3;
  width: min(300px, 32%);
  padding: 22px 24px;
  display: grid;
  gap: 5px;
  background: rgba(4,14,23,.78);
  border: 1px solid rgba(214,162,125,.3);
  backdrop-filter: blur(15px);
}
.hero-command small { color: var(--copper-light); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.hero-command strong { font-size: 15px; letter-spacing: .08em; }
.hero-command span { margin-top: 10px; display: flex; align-items: center; gap: 8px; color: #9cafb8; font-size: 9px; letter-spacing: .1em; }
.hero-command i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(112,169,132,.12); }
.hero-index { position: absolute; right: 22px; bottom: 16px; z-index: 2; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .15em; }

.corporate-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line-dark);
  border-top: 0;
}
.corporate-metrics article {
  position: relative;
  min-height: 205px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}
.corporate-metrics article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(185,116,71,.12);
  transform: rotate(45deg);
}
.corporate-metrics article:last-child { border-right: 0; }
.corporate-metrics small { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.corporate-metrics strong { display: block; margin: 12px 0 6px; color: #f4f6f7; font-family: var(--serif); font-size: 42px; font-weight: 500; }
.corporate-metrics p { margin: 0; color: var(--muted); font-size: 13px; }

.operations-grid { margin-top: 28px; display: grid; grid-template-columns: 1.55fr .8fr; gap: 28px; }
.operations-card, .principles-card { padding: clamp(26px, 4vw, 48px); background: var(--surface); border: 1px solid var(--line-dark); }
.section-heading { margin-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-heading span { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.section-heading h2 { margin: 8px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.section-heading p { max-width: 420px; margin: 0; color: var(--muted); }
.section-heading.compact small { color: var(--muted); font-size: 11px; letter-spacing: .1em; }
.site-bars { display: grid; gap: 18px; }
.site-bars article { padding: 14px 0 4px; display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; border-top: 1px solid var(--line-dark); }
.site-bars article > div { display: grid; }
.site-bars strong { font-size: 14px; }
.site-bars span { color: var(--muted); font-size: 12px; }
.site-bars b { max-width: 280px; color: var(--copper); font-size: 11px; line-height: 1.4; letter-spacing: .07em; text-align: right; }
.site-bars i { grid-column: 1 / 3; height: 5px; overflow: hidden; background: #102c3d; }
.site-bars i span { display: block; width: var(--progress); height: 100%; background: linear-gradient(90deg, var(--copper), var(--copper-light)); }
.principles-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(185,116,71,.11), transparent 45%),
    var(--navy-2);
  color: white;
}
.principles-card::after {
  content: "KY";
  position: absolute;
  right: -18px;
  bottom: -45px;
  color: rgba(255,255,255,.025);
  font-family: var(--serif);
  font-size: 190px;
  line-height: 1;
}
.principles-card h2 { margin: 12px 0 25px; font-size: 38px; line-height: 1.05; }
.principles-card ul { padding: 0; margin: 0; list-style: none; }
.principles-card li { padding: 15px 0; display: flex; gap: 15px; border-top: 1px solid var(--line); color: #c7d1d6; }
.principles-card li span { color: var(--copper-light); font-size: 12px; }

.enterprise-band {
  margin-top: 28px;
  padding: clamp(36px, 6vw, 78px);
  background:
    linear-gradient(115deg, rgba(185,116,71,.11), transparent 36%),
    var(--navy-2);
  border: 1px solid var(--line-dark);
}
.enterprise-lead { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 34px 70px; align-items: end; }
.enterprise-lead > span { grid-column: 1 / -1; }
.enterprise-lead h2 { margin: 0; max-width: 850px; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; }
.enterprise-lead p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.9; }
.enterprise-pillars { margin-top: 55px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.enterprise-pillars article { min-height: 260px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.enterprise-pillars span { color: var(--copper-light); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.enterprise-pillars h3 { margin: 38px 0 14px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.1; }
.enterprise-pillars p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.service-card {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, rgba(185,116,71,.045), transparent 45%),
    var(--surface);
  border: 1px solid var(--line-dark);
  transition: .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(185,116,71,.65); box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.service-card > span { color: var(--copper); font-family: var(--serif); font-size: 26px; }
.service-card h3 { margin: 36px 0 12px; font-family: var(--serif); font-size: 31px; line-height: 1.05; font-weight: 500; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card button {
  margin-top: auto;
  padding: 18px 0 0;
  display: flex;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.project-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.project-intro > p { max-width: 400px; }
.project-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); border: 1px solid var(--line-dark); background: var(--surface); }
.project-selector { background: var(--navy); color: white; }
.project-selector-head { padding: 22px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.project-selector-head span { font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.project-selector-head small { color: var(--copper-light); }
.project-selector button {
  width: 100%;
  min-height: 84px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 26px 1fr 16px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #91a4af;
  text-align: left;
  cursor: pointer;
}
.project-selector button > span { color: var(--copper-light); font-size: 11px; }
.project-selector button div { display: grid; }
.project-selector button strong { color: inherit; font-size: 13px; }
.project-selector button small { color: #6f8490; font-size: 11px; }
.project-selector button.active { background: var(--copper); color: white; }
.project-selector button.active span, .project-selector button.active small { color: white; }
.project-stage { min-width: 0; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(340px,.7fr); }
.project-visual { position: relative; min-height: 760px; overflow: hidden; background: #06131f; }
.project-visual > img { width: 100%; height: 100%; object-fit: cover; }
.project-visual.placeholder > img { padding: 12%; object-fit: contain; opacity: .72; }
.visual-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(4,17,28,.84), transparent 38%); }
.gallery-tabs {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 50%;
  display: flex;
  transform: translateX(-50%);
  padding: 4px;
  background: rgba(4,17,28,.82);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.gallery-tabs button {
  min-width: 126px;
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  color: #a7b5bd;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.gallery-tabs button.active { background: var(--copper); color: white; }
.gallery-tabs button + button { border-left: 1px solid rgba(255,255,255,.12); }
.visual-counter {
  position: absolute;
  z-index: 4;
  top: 78px;
  right: 20px;
  padding: 7px 10px;
  background: rgba(4,17,28,.75);
  color: white;
  font-size: 11px;
  letter-spacing: .08em;
}
.thumbnail-strip {
  position: absolute;
  z-index: 4;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  padding: 3px 0 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) rgba(255,255,255,.18);
}
.thumbnail-strip button {
  flex: 0 0 72px;
  width: 72px;
  height: 52px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.45);
  background: var(--navy);
  opacity: .65;
  cursor: pointer;
}
.thumbnail-strip button.active { border: 2px solid var(--copper-light); opacity: 1; }
.thumbnail-strip img { width: 100%; height: 100%; object-fit: cover; }
.project-content { max-height: 760px; padding: 30px; overflow-y: auto; }
.project-status { display: inline-flex; padding: 7px 10px; background: rgba(185,116,71,.12); color: var(--copper-light); font-size: 11px; font-weight: 700; }
.project-type { display: block; margin-top: 23px; color: var(--copper); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.project-content h2 { margin: 5px 0 4px; font-size: clamp(38px, 4vw, 58px); line-height: .98; }
.project-location { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.project-meta { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.project-meta div { min-height: 84px; padding: 14px; display: grid; gap: 4px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.project-meta span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.project-meta strong { font-size: 14px; line-height: 1.35; }
.project-copy { margin-top: 25px; }
.project-copy h3, .project-details::before { color: var(--copper); font-size: 11px; font-family: var(--sans); font-weight: 800; letter-spacing: .12em; }
.project-copy p { margin: 8px 0; color: #a7b7bf; font-size: 14px; line-height: 1.75; }
.project-details { margin: 25px 0; border-top: 1px solid var(--line-dark); }
.project-details::before { content: "PROJE BİLGİLERİ"; display: block; padding: 20px 0 8px; }
.project-details div { padding: 9px 0; display: grid; grid-template-columns: 42% 58%; border-bottom: 1px solid var(--line-dark); }
.project-details dt { color: var(--muted); font-size: 13px; }
.project-details dd { margin: 0; font-size: 13px; font-weight: 700; }
.project-progress { margin: 20px 0; }
.project-progress > div { display: flex; justify-content: space-between; font-size: 12px; font-weight: 800; }
.project-progress > div strong { color: var(--copper); }
.project-progress i { height: 5px; margin-top: 8px; display: block; background: var(--paper-2); }
.project-progress i span { display: block; height: 100%; background: var(--copper); }

.about-hero { position: relative; min-height: 610px; overflow: hidden; background: var(--navy); color: white; }
.about-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); }
.about-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,17,28,.94), rgba(4,17,28,.42)); }
.about-hero > div:not(.about-hero-overlay) { position: relative; z-index: 2; max-width: 820px; padding: clamp(55px, 8vw, 105px); }
.about-hero h1 { margin: 14px 0 25px; font-size: clamp(50px, 6vw, 88px); line-height: .94; }
.about-hero p { max-width: 620px; color: #c9d3d8; font-size: 17px; }
.about-year { position: absolute; right: 28px; bottom: 0; z-index: 2; color: rgba(255,255,255,.1); font-family: var(--serif); font-size: clamp(100px, 16vw, 230px); line-height: .72; }
.about-story { padding: clamp(35px, 6vw, 70px); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; background: var(--surface); border: 1px solid var(--line-dark); }
.story-lead span { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.story-lead h2 { margin: 15px 0 0; font-size: clamp(36px, 4vw, 55px); line-height: 1.08; }
.story-copy p { margin: 0 0 18px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.strategy-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); color: white; }
.strategy-band article { min-height: 330px; padding: clamp(35px, 5vw, 65px); border-right: 1px solid var(--line); }
.strategy-band article:last-child { border-right: 0; }
.strategy-band span { color: var(--copper-light); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.strategy-band h2 { margin: 18px 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.03; }
.strategy-band p { color: #aebdc5; font-size: 15px; }
.values-section { margin-top: 28px; padding: clamp(30px, 5vw, 60px); background: var(--surface); border: 1px solid var(--line-dark); }
.values-track { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.values-track article { min-height: 210px; padding: 25px; display: flex; gap: 18px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.values-track article > span { color: var(--copper); font-family: var(--serif); font-size: 27px; }
.values-track h3 { margin: 3px 0 10px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.values-track p { margin: 0; color: var(--muted); font-size: 14px; }

.contact-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; }
.map-card { position: relative; min-height: 650px; overflow: hidden; background: var(--navy); }
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  user-select: none;
  filter: saturate(1.06) contrast(1.02);
}
.map-filter { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(4,17,28,.18), transparent 34%); }
.map-pin { position: absolute; left: 53%; top: 43%; display: grid; place-items: center; transform: translate(-50%,-50%); }
.map-pin img { width: 54px; height: 54px; padding: 10px; object-fit: contain; border-radius: 50%; background: #d2a04c; box-shadow: 0 0 0 12px rgba(210,160,76,.18); }
.map-pin span { margin-top: 12px; padding: 5px 9px; background: var(--navy); color: #f1c578; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.office-card { position: absolute; left: 25px; right: 25px; bottom: 25px; padding: 23px; display: grid; gap: 5px; background: rgba(4,17,28,.9); color: white; border: 1px solid rgba(255,255,255,.15); }
.office-card small { color: var(--copper-light); font-size: 11px; letter-spacing: .13em; }
.office-card strong { font-family: var(--serif); font-size: 24px; line-height: 1.25; }
.office-card span { color: #91a5af; font-size: 12px; }
.panel-form { padding: clamp(28px, 4vw, 48px); display: grid; align-content: start; gap: 20px; background: var(--surface); border: 1px solid var(--line-dark); }
.form-title span { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.form-title h2 { margin: 7px 0 8px; font-size: 38px; line-height: 1.05; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.panel-form label { display: grid; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.panel-form input, .panel-form select, .panel-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
}
.panel-form select option { background: var(--navy-2); color: var(--ink); }
.panel-form input:focus, .panel-form select:focus, .panel-form textarea:focus { border-color: var(--copper); }
.panel-form textarea { resize: vertical; }
.panel-form .primary-button { justify-self: start; }
.trap-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { min-height: 24px; margin: 0; font-size: 13px; }
.form-status.success { color: #79ba8f; }
.form-status.error { color: #e48377; }
.contact-channels { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); border: 1px solid var(--line-dark); }
.contact-channels a { padding: 22px; display: grid; gap: 4px; border-right: 1px solid var(--line-dark); color: inherit; text-decoration: none; }
.contact-channels a:last-child { border-right: 0; }
.contact-channels small { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.contact-channels strong { font-size: 14px; }

.career-layout { min-height: calc(100vh - 170px); display: grid; grid-template-columns: 1fr 1fr; }
.career-copy { padding: clamp(38px, 6vw, 80px); background: var(--navy); color: white; }
.career-copy h1 { margin: 14px 0 25px; font-size: clamp(48px, 6vw, 82px); line-height: .94; }
.career-copy > p { max-width: 620px; color: #aebdc5; font-size: 16px; }
.career-points { margin-top: 45px; display: grid; gap: 4px; }
.career-points article { padding: 18px 0; display: flex; gap: 20px; border-top: 1px solid var(--line); }
.career-points article > span { color: var(--copper-light); font-size: 12px; }
.career-points h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.career-points p { margin: 2px 0 0; color: #8297a3; font-size: 13px; }
.upload-box {
  min-height: 160px;
  padding: 25px !important;
  display: grid !important;
  place-items: center;
  align-content: center;
  gap: 5px !important;
  border: 1px dashed #aeb6b3;
  background: var(--paper);
  text-align: center;
  cursor: pointer;
}
.upload-box input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-box > span { color: var(--copper); font-size: 32px; }
.upload-box > strong { color: var(--ink); font-size: 12px; }
.upload-box > small { color: var(--muted); font-size: 11px; font-weight: 500; letter-spacing: normal; text-transform: none; }
.consent-line { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 10px !important; text-transform: none !important; letter-spacing: normal !important; }
.consent-line input { width: 16px; height: 16px; margin-top: 2px; }
.consent-line span { color: var(--muted); font-size: 12px; font-weight: 500; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(1,10,16,.82);
  backdrop-filter: blur(10px);
}
.modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  padding: clamp(28px, 5vw, 50px);
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid rgba(185,116,71,.55);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}
.modal-index { display: block; color: var(--copper); font-family: var(--serif); font-size: 30px; }
.modal-card > small { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.service-modal h2 { margin: 12px 0 20px; font-size: clamp(40px, 6vw, 62px); line-height: .95; }
.service-modal p { color: var(--muted); font-size: 15px; line-height: 1.85; }
.service-modal .primary-button { margin-top: 12px; }
.live-modal {
  width: min(940px, 100%);
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(69,116,140,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69,116,140,.055) 1px, transparent 1px),
    #030c13;
  background-size: 24px 24px;
  color: white;
  border-color: rgba(117,165,188,.36);
  box-shadow: 0 40px 120px rgba(0,0,0,.7), inset 0 0 60px rgba(19,70,92,.16);
}
.live-modal .modal-close {
  z-index: 8;
  top: 15px;
  right: 17px;
  color: #c9d7de;
  border-color: rgba(132,173,193,.32);
  background: rgba(2,10,16,.62);
}
#liveProjectStep { position: relative; }
.security-console-bar {
  min-height: 70px;
  padding: 0 78px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8,29,42,.86);
  border-bottom: 1px solid rgba(117,165,188,.25);
}
.security-console-bar span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d4e0e6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}
.security-console-bar span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef5e54;
  box-shadow: 0 0 0 5px rgba(239,94,84,.12);
  animation: pulseText 1.4s ease infinite;
}
.security-console-bar b { color: #7292a2; font-size: 9px; letter-spacing: .12em; }
.security-console-intro {
  padding: 38px 40px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}
.live-modal .security-console-intro h2 {
  max-width: 650px;
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 55px);
  line-height: .98;
}
.camera-system-count {
  min-width: 125px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(117,165,188,.26);
  background: rgba(9,35,49,.64);
}
.camera-system-count strong { color: var(--copper-light); font-family: var(--serif); font-size: 35px; line-height: 1; }
.camera-system-count span { color: #829ba7; font-size: 8px; font-weight: 800; line-height: 1.5; letter-spacing: .12em; }
.security-console-note {
  max-width: 720px;
  margin: 0;
  padding: 0 40px 28px;
  color: #8097a2;
  font-size: 12px;
  line-height: 1.7;
}
.camera-list {
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.camera-list button {
  position: relative;
  min-height: 132px;
  padding: 19px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(105deg, rgba(24,74,96,.18), transparent 62%),
    rgba(3,15,23,.9);
  color: white;
  text-align: left;
  cursor: pointer;
  transition: .22s ease;
}
.camera-list button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(117,165,188,.025) 4px 5px);
}
.camera-list button:last-child:nth-child(odd) { grid-column: 1 / -1; }
.camera-list button:hover {
  border-color: var(--copper);
  background:
    linear-gradient(105deg, rgba(185,116,71,.16), transparent 62%),
    rgba(6,23,33,.96);
  transform: translateY(-2px);
}
.camera-feed-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148,181,197,.55);
  background: #071c28;
}
.camera-feed-icon::before {
  content: "";
  position: absolute;
  right: -10px;
  width: 10px;
  height: 21px;
  border: 1px solid rgba(148,181,197,.55);
  border-left: 0;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}
.camera-feed-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  bottom: -9px;
  width: 25px;
  height: 8px;
  border-left: 2px solid #65899b;
  border-bottom: 2px solid #65899b;
  transform: skewX(-24deg);
}
.camera-feed-icon i {
  width: 17px;
  height: 17px;
  border: 2px solid var(--copper-light);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #04101a;
}
.camera-feed-copy { position: relative; z-index: 1; display: grid; gap: 5px; }
.camera-feed-copy strong { color: #edf3f5; font-size: 14px; }
.camera-feed-copy small { color: #688594; font-size: 8px; letter-spacing: .11em; }
.camera-feed-meta {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 4px;
}
.camera-feed-meta > i { width: 7px; height: 7px; border-radius: 50%; background: #ef5e54; box-shadow: 0 0 0 4px rgba(239,94,84,.1); }
.camera-feed-meta small { color: #6f8d9b; font-size: 7px; letter-spacing: .09em; }
.camera-feed-meta b { color: var(--copper-light); font-size: 10px; letter-spacing: .1em; }
.camera-auth { padding: clamp(34px, 6vw, 62px); display: grid; gap: 18px; }
.camera-auth h2 { margin: 6px 0 10px; font-size: clamp(34px, 5vw, 52px); line-height: 1; }
.back-button { justify-self: start; padding: 0; border: 0; background: transparent; color: var(--copper-light); font-size: 11px; font-weight: 800; cursor: pointer; }
.camera-symbol { color: #e14e42; font-size: 28px; animation: pulseText 1.4s ease infinite; }
@keyframes pulseText { 50% { opacity: .35; } }
.camera-auth > small { color: var(--copper-light); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.camera-auth label { display: grid; gap: 7px; color: #9cafb8; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.camera-auth input { height: 58px; padding: 0 16px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.05); color: white; font-size: 22px; letter-spacing: .3em; outline: none; }
.camera-auth input:focus { border-color: var(--copper); }
.camera-status { min-height: 24px; margin: 0; color: var(--copper-light); font-size: 13px; }
.toast { position: fixed; right: 25px; bottom: 25px; z-index: 150; max-width: 380px; padding: 15px 18px; background: var(--navy); color: white; border-left: 4px solid var(--copper); box-shadow: var(--shadow); font-size: 13px; }

@media (max-width: 1240px) {
  .corporate-metrics { grid-template-columns: 1fr 1fr; }
  .corporate-metrics article:nth-child(2) { border-right: 0; }
  .corporate-metrics article:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .project-layout { grid-template-columns: 210px minmax(0,1fr); }
  .project-stage { grid-template-columns: 1fr; }
  .project-visual { min-height: 650px; }
  .project-content { max-height: none; }
  .enterprise-lead { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .sidebar {
    width: min(320px, 86vw);
    transform: translateX(-102%);
    box-shadow: 30px 0 80px rgba(0,0,0,.35);
    transition: transform .25s ease;
  }
  .sidebar.open { transform: translateX(0); }
  .brand-button, .live-site-button { flex-basis: 108px; height: 108px; min-height: 108px; }
  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 76px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
  }
  .mobile-brand {
    position: relative;
    width: 150px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    overflow: hidden;
  }
  .mobile-brand img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 132px;
    max-width: none;
    height: 132px;
    object-fit: contain;
    object-position: center;
    transform: translate(-50%, -50%) scale(1.14);
    transform-origin: center;
  }
  .menu-toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); background: transparent; }
  .menu-toggle span { width: 22px; height: 2px; background: var(--copper-light); }
  .main-area { margin-left: 0; }
  .topbar { top: 76px; height: 60px; }
  .page { padding: 24px; }
  .operations-grid, .contact-layout, .career-layout { grid-template-columns: 1fr; }
  .project-layout { grid-template-columns: 1fr; }
  .project-selector { display: grid; grid-template-columns: repeat(5, minmax(180px,1fr)); overflow-x: auto; }
  .project-selector-head { display: none; }
  .project-selector button { min-width: 180px; border-right: 1px solid var(--line); }
  .values-track { grid-template-columns: 1fr 1fr; }
  .map-card { min-height: 560px; }
  .hero-command { width: 300px; }
}

@media (max-width: 700px) {
  .topbar { padding: 0 16px; }
  .topbar .outline-button { margin-left: auto; }
  .dashboard-hero { min-height: 650px; }
  .hero-image-grid { grid-template-columns: 1fr; }
  .hero-image-grid img:not(:first-child) { display: none; }
  .hero-copy { padding: 60px 24px 205px; }
  .hero-copy h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-command { left: 24px; right: 24px; bottom: 26px; width: auto; }
  .hero-index { display: none; }
  .corporate-metrics { grid-template-columns: 1fr; }
  .corporate-metrics article { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .site-bars article { grid-template-columns: 1fr; }
  .site-bars b { grid-column: 1; max-width: none; text-align: left; }
  .site-bars i { grid-column: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .project-intro, .section-heading { display: block; }
  .project-intro > p, .section-heading > p { margin-top: 18px; }
  .project-visual { min-height: 560px; }
  .gallery-tabs { top: auto; left: 16px; right: 16px; bottom: 88px; transform: none; }
  .gallery-tabs button { flex: 1; min-width: 0; }
  .visual-counter { top: 18px; right: 18px; }
  .thumbnail-strip { left: 16px; right: 16px; bottom: 16px; }
  .project-content { padding: 25px 20px; }
  .project-meta { grid-template-columns: 1fr; }
  .about-story, .strategy-band { grid-template-columns: 1fr; gap: 0; }
  .about-story { gap: 30px; }
  .strategy-band article { border-right: 0; border-bottom: 1px solid var(--line); }
  .values-track { grid-template-columns: 1fr; }
  .values-track article { min-height: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channels a { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .career-copy, .panel-form { padding: 30px 22px; }
  .enterprise-band { padding: 34px 22px; }
  .enterprise-pillars { grid-template-columns: 1fr; }
  .enterprise-pillars article { min-height: auto; }
  .security-console-bar { min-height: 62px; padding: 0 62px 0 20px; }
  .security-console-bar b { display: none; }
  .security-console-intro { padding: 28px 20px 12px; grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .camera-system-count { min-width: 0; width: fit-content; }
  .security-console-note { padding: 0 20px 22px; }
  .camera-list { padding: 0 20px 25px; grid-template-columns: 1fr; }
  .camera-list button, .camera-list button:last-child:nth-child(odd) { grid-column: auto; }
  .camera-auth { padding: 30px 22px; }
  .modal-backdrop { padding: 10px; }
}

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