:root {
  --navy: #08111c;
  --navy-2: #0e1a2b;
  --ink: #132033;
  --text: #1a2736;
  --muted: #5d6b7a;
  --line: rgba(19, 32, 51, 0.1);
  --line-strong: rgba(19, 32, 51, 0.16);
  --paper: #f5f2ec;
  --cream: #fbf9f5;
  --white: #ffffff;
  --accent: #1a5ea8;
  --accent-2: #14467c;
  --accent-soft: rgba(26, 94, 168, 0.1);
  --gold: #b8924a;
  --teal: #1b6a62;
  --terracotta: #8d4d38;
  --shadow: 0 18px 40px rgba(8, 17, 28, 0.08);
  --shadow-sm: 0 8px 24px rgba(8, 17, 28, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1160px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head.center,
.center { text-align: center; margin-left: auto; margin-right: auto; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.15rem, 4.4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1.02rem; font-weight: 600; }

.lead, .section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
}

.section-head.center p { margin-left: auto; margin-right: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(8, 17, 28, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  height: 68px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  display: block;
  background: #fff;
}

.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

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

.nav a {
  color: #3a4a5c;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 9px;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--accent-soft);
}

.nav .btn { margin-left: 8px; color: #fff; }
.nav .btn:hover,
.nav .btn[aria-current="page"] { color: #fff; background: var(--accent-2); }

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: #fff;
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 94, 168, 0.28);
}

.btn-primary:hover { background: var(--accent-2); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-line:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

.hero {
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(26, 94, 168, 0.28), transparent 55%),
    radial-gradient(700px 320px at 10% 90%, rgba(184, 146, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, #0b1726 100%);
  color: #fff;
  padding: 72px 0 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255, 255, 255, 0.72); font-size: 1.06rem; }
.hero .eyebrow { color: #9ec2ea; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-visual {
  position: relative;
  min-height: 380px;
}

.device-window,
.device-phone,
.float-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.device-window {
  inset: 12px 18px 48px 0;
  border-radius: 16px;
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.window-body { padding: 18px; display: grid; gap: 12px; }

.ui-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.ui-block {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 92px;
  padding: 14px;
}

.ui-block.tall { min-height: 168px; }
.ui-line {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}
.ui-line.short { width: 46%; }
.ui-line.mid { width: 72%; }
.ui-pills { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.ui-pills span {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 5px 9px;
}

.device-phone {
  width: 148px;
  height: 250px;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  padding: 12px 10px;
  background: linear-gradient(180deg, #12243a, #0b1522);
}

.phone-notch {
  width: 48px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 auto 12px;
}

.phone-card {
  border-radius: 10px;
  background: rgba(26, 94, 168, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 54px;
  margin-bottom: 8px;
}

.phone-card.alt { background: rgba(255, 255, 255, 0.05); height: 36px; }

.float-chip {
  left: -8px;
  bottom: 28px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.float-chip small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-bottom: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 94, 168, 0.22);
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--accent-soft);
  color: var(--accent);
}

.icon-wrap svg { width: 22px; height: 22px; }

.service-card h3 { margin-bottom: 10px; }
.service-card p { margin: 0 0 16px; color: var(--muted); font-size: 0.95rem; }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chip-list li {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
}

.why {
  background: var(--navy);
  color: #fff;
}

.why h2, .why h3 { color: #fff; }
.why .lead { color: rgba(255, 255, 255, 0.68); }

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.why-points { display: grid; gap: 14px; }

.why-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-point:last-child { border-bottom: 0; padding-bottom: 0; }

.why-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9ec2ea;
  padding-top: 3px;
}

.why-point p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.64); font-size: 0.95rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.work-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.work-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.08));
}

.work-nikira {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 30%),
    linear-gradient(145deg, #f3e2cf, #c56a48 70%, #7d3a2d);
}

.work-slw {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(160deg, #16324f, #1a5ea8 65%, #0b1b2d);
}

.work-obm {
  background:
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(160deg, #13443f, #1b6a62 60%, #0c2a28);
}

.visual-art {
  position: absolute;
  inset: 0;
  padding: 22px;
  color: #fff;
}

.visual-kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
  font-weight: 700;
}

.visual-title {
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.mock-list, .mock-tiles {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 7px;
  width: 42%;
}

.mock-list span,
.mock-tiles span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.mock-tiles {
  grid-template-columns: 1fr 1fr;
  width: 46%;
}

.mock-tiles span { height: 36px; border-radius: 8px; }

.work-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-body p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.work-body .btn { margin-top: auto; align-self: flex-start; min-height: 40px; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cap-item {
  background: var(--white);
  padding: 24px 20px;
}

.cap-item h3 { margin-bottom: 8px; font-size: 1rem; }
.cap-item p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.process-wrap { position: relative; }

.process-line {
  position: absolute;
  top: 23px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line-strong);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step { text-align: left; }
.process-index {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.journey {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.journey-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 18px;
  position: relative;
}

.journey-step strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.journey-step p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.journey-step::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -10px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  transform: rotate(45deg);
}

.journey-step:last-child::after { display: none; }

.cta-band {
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(26, 94, 168, 0.24), transparent 50%),
    var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band h2 { color: #fff; max-width: 14ch; }
.cta-band p { color: rgba(255, 255, 255, 0.7); margin: 12px 0 0; max-width: 42ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

.site-footer {
  background: #060b13;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p { margin: 0; max-width: 30ch; font-size: 0.95rem; }
.site-footer h3 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.site-footer a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 52px;
}

.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255, 255, 255, 0.7); }
.page-hero .eyebrow { color: #9ec2ea; }

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.values { display: grid; gap: 16px; margin-top: 24px; }
.value {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.value h3 { margin-bottom: 6px; }
.value p { margin: 0; color: var(--muted); }

.job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.job:last-child { border-bottom: 0; }
.job p { margin: 4px 0 0; color: var(--muted); font-size: 0.92rem; }

label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.92rem; }
.field { margin-bottom: 16px; }

.input, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.input:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

textarea { min-height: 150px; resize: vertical; }

.contact-meta { display: grid; gap: 18px; }
.contact-meta p { margin: 6px 0 0; color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

@media (max-width: 1100px) {
  .cap-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid, .journey-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-line { display: none; }
  .journey-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.nav-backdrop {
  display: none;
}

@media (max-width: 1120px) {
  .brand img { height: 56px; max-width: 128px; }
  .nav-toggle { display: inline-flex; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(6, 10, 16, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease);
    z-index: 30;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 auto;
    width: min(340px, 88vw);
    background: #0b1522;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 6px;
    transform: translateX(110%);
    transition: transform 0.28s var(--ease);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.25);
    z-index: 35;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 12px 10px; color: rgba(255,255,255,0.82); }
  .nav a:hover,
  .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.08); }
  .nav .btn { margin: 10px 0 0; width: 100%; color: #fff; }
  .logo-strip, .pillar-grid { grid-template-columns: 1fr; }
  .hero-grid,
  .why-layout,
  .service-grid,
  .work-grid,
  .split-2 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  .hero-visual { min-height: 320px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
}

@media (max-width: 700px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .cap-grid,
  .process-grid,
  .journey-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .logo-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .job { flex-direction: column; align-items: flex-start; }
  .device-phone { display: none; }
  .hero h1 { max-width: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .work-visual { height: 168px; }
}

.logo-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.logo-cell {
  min-height: 148px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.logo-cell:last-child { border-right: 0; }

.logo-cell img {
  max-height: 72px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-cell .wordmark {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-cell span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.pillar-card .eyebrow { margin-bottom: 10px; }
.pillar-card p { margin: 10px 0 0; color: var(--muted); }

.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 28px;
  align-items: center;
}

.flow b {
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.flow i {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.location-card p { margin: 8px 0 0; color: var(--muted); }

.work-logo {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  max-height: 56px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 6px 8px;
  border-radius: 8px;
}

.work-logo.light-on-dark { background: rgba(255,255,255,0.95); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
