/* =========================================================
   Geospatial Tenerife — Shared Stylesheet
   Aesthetic: deep ocean-at-night, luminous aqua signal
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,300..800&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --navy-deep:  #081325;
  --navy:       #0A1A30;
  --navy-2:     #0F2341;
  --navy-3:     #152E52;
  --line:       rgba(200, 225, 255, 0.11);
  --line-soft:  rgba(200, 225, 255, 0.055);
  --line-strong:rgba(200, 225, 255, 0.22);
  --ivory:      #E8F1FA;
  --ivory-dim:  rgba(232, 241, 250, 0.70);
  --ivory-faint:rgba(232, 241, 250, 0.42);
  --aqua:       #5EEAD4;
  --aqua-bright:#7DF5E0;
  --aqua-soft:  rgba(94, 234, 212, 0.16);
  --aqua-glow:  rgba(94, 234, 212, 0.35);
  --violet:     #8B9EFF;
  --coral:      #FF8A7A;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max:    1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%,    rgba(94, 234, 212, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 20%,   rgba(139, 158, 255, 0.09), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%,  rgba(94, 234, 212, 0.07), transparent 60%),
    linear-gradient(180deg, #081325 0%, #0A1A30 50%, #081325 100%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1400' height='1400' viewBox='0 0 1400 1400'><g fill='none' stroke='%235EEAD4' stroke-width='0.7' opacity='0.08'><path d='M -100,300 Q 200,180 400,260 T 800,240 T 1300,320 T 1600,280'/><path d='M -100,360 Q 200,240 400,320 T 800,300 T 1300,380 T 1600,340'/><path d='M -100,420 Q 200,300 400,380 T 800,360 T 1300,440 T 1600,400'/><path d='M -100,500 Q 200,380 400,460 T 800,440 T 1300,520 T 1600,480'/><path d='M -100,580 Q 200,460 400,540 T 800,520 T 1300,600 T 1600,560'/><path d='M -100,660 Q 200,540 400,620 T 800,600 T 1300,680 T 1600,640'/><path d='M -100,740 Q 200,620 400,700 T 800,680 T 1300,760 T 1600,720'/><path d='M -100,820 Q 200,700 400,780 T 800,760 T 1300,840 T 1600,800'/><path d='M -100,900 Q 200,780 400,860 T 800,840 T 1300,920 T 1600,880'/><path d='M -100,980 Q 200,860 400,940 T 800,920 T 1300,1000 T 1600,960'/></g><g stroke='%235EEAD4' stroke-width='0.3' opacity='0.05'><line x1='0' y1='0' x2='1400' y2='0'/><line x1='0' y1='200' x2='1400' y2='200'/><line x1='0' y1='400' x2='1400' y2='400'/><line x1='0' y1='600' x2='1400' y2='600'/><line x1='0' y1='800' x2='1400' y2='800'/><line x1='0' y1='1000' x2='1400' y2='1000'/><line x1='0' y1='1200' x2='1400' y2='1200'/><line x1='0' y1='0' x2='0' y2='1400'/><line x1='200' y1='0' x2='200' y2='1400'/><line x1='400' y1='0' x2='400' y2='1400'/><line x1='600' y1='0' x2='600' y2='1400'/><line x1='800' y1='0' x2='800' y2='1400'/><line x1='1000' y1='0' x2='1000' y2='1400'/><line x1='1200' y1='0' x2='1200' y2='1400'/></g></svg>");
  background-size: 1400px 1400px;
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 2; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   Navigation
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 19, 37, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ivory);
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(94, 234, 212, 0.4));
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  font-variation-settings: "wdth" 95;
}

.brand__coord {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--ivory-faint);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav__links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--aqua);
  border-bottom-color: var(--aqua);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 0.5rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

@media (max-width: 780px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--line-soft);
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.hero__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: rise 0.9s ease 0.1s forwards;
}

.hero__meta::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--aqua);
  box-shadow: 0 0 8px var(--aqua-glow);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 1.75rem;
  max-width: 14ch;
  font-variation-settings: "wdth" 95, "opsz" 96;
  opacity: 0;
  animation: rise 1s ease 0.25s forwards;
}

.hero__title em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lede {
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ivory-dim);
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: rise 1s ease 0.4s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s ease 0.55s forwards;
}

/* Hero radar visualization */
.hero__viz {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: center;
  width: 100%;
  opacity: 0;
  animation: rise 1.2s ease 0.6s forwards;
}

.hero__viz svg { width: 100%; height: 100%; overflow: visible; }

.radar-ring-static {
  fill: none;
  stroke: var(--aqua);
  opacity: 0.18;
}

.radar-pulse {
  fill: none;
  stroke: var(--aqua);
  stroke-width: 1.5;
  transform-origin: 250px 250px;
  animation: pulse-out 4s ease-out infinite;
}

.radar-pulse:nth-child(1) { animation-delay: 0s; }
.radar-pulse:nth-child(2) { animation-delay: 1.3s; }
.radar-pulse:nth-child(3) { animation-delay: 2.6s; }

@keyframes pulse-out {
  0%   { r: 20;  opacity: 0.9; stroke-width: 2;   }
  100% { r: 220; opacity: 0;   stroke-width: 0.3; }
}

.radar-sweep {
  transform-origin: 250px 250px;
  animation: sweep 7s linear infinite;
}

@keyframes sweep {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

.radar-node {
  fill: var(--aqua);
  filter: drop-shadow(0 0 6px var(--aqua-glow));
  animation: node-blink 3s ease-in-out infinite;
}

.radar-node:nth-child(odd)  { animation-delay: 0s;   }
.radar-node:nth-child(even) { animation-delay: 1.5s; }

@keyframes node-blink {
  0%,100% { opacity: 1;   }
  50%     { opacity: 0.3; }
}

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

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  box-shadow: 0 0 24px -4px var(--aqua-glow);
}

.btn--filled {
  background: var(--aqua);
  color: var(--navy-deep);
  border-color: var(--aqua);
  font-weight: 500;
  box-shadow: 0 0 20px -2px var(--aqua-glow);
}

.btn--filled:hover {
  background: var(--aqua-bright);
  color: var(--navy-deep);
  border-color: var(--aqua-bright);
  box-shadow: 0 0 30px -2px var(--aqua-glow);
}

.btn__arrow { transition: transform 0.25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* =========================================================
   Sections
   ========================================================= */
.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.section__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--aqua);
  text-transform: uppercase;
  padding-top: 0.85rem;
  border-top: 1px solid var(--aqua);
  align-self: start;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 20ch;
  font-variation-settings: "wdth" 95, "opsz" 72;
}

.section__title em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 640px) {
  .section__head { grid-template-columns: 1fr; gap: 1rem; }
}

/* =========================================================
   Prose
   ========================================================= */
.prose {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
}

.prose__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--ivory-faint);
  text-transform: uppercase;
  padding-top: 0.35rem;
}

.prose__body { max-width: 68ch; }

.prose__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ivory-dim);
  margin: 0 0 1.5rem;
}

.prose__body p:last-child { margin-bottom: 0; }

.prose__body strong {
  color: var(--ivory);
  font-weight: 500;
}

@media (max-width: 640px) {
  .prose { grid-template-columns: 1fr; gap: 1rem; }
}

/* =========================================================
   Capabilities grid with icons
   ========================================================= */
.caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(15, 35, 65, 0.35) 100%);
}

.cap {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.35s ease;
  overflow: hidden;
}

.cap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cap:hover { background: rgba(15, 35, 65, 0.5); }
.cap:hover::before { opacity: 1; }

.cap:hover .cap__icon {
  filter: drop-shadow(0 0 10px var(--aqua-glow));
  transform: translateY(-2px);
}

.cap__icon {
  width: 44px;
  height: 44px;
  color: var(--aqua);
  margin-bottom: 1.5rem;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.cap__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--ivory-faint);
  margin-bottom: 1rem;
}

.cap__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 95, "opsz" 36;
}

.cap__body {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ivory-dim);
  margin: 0;
}

@media (max-width: 780px) {
  .caps { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.foot {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.5rem;
  margin-top: 4rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.foot::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
  opacity: 0.5;
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.foot__col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.foot__col p,
.foot__col address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ivory-dim);
  margin: 0;
}

.foot__col a {
  color: var(--ivory-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.foot__col a:hover {
  color: var(--aqua);
  border-bottom-color: var(--aqua);
}

.foot__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.foot__links a {
  border-bottom: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot__compass {
  width: 80px;
  height: 80px;
  color: var(--aqua);
  opacity: 0.75;
  animation: slow-rotate 60s linear infinite;
  filter: drop-shadow(0 0 12px var(--aqua-glow));
}

@keyframes slow-rotate {
  from { transform: rotate(0);      }
  to   { transform: rotate(360deg); }
}

.foot__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 900px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .foot__col--compass { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Contact form
   ========================================================= */
.form {
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.75rem 0;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  border-radius: 0;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--aqua);
  box-shadow: 0 1px 0 0 var(--aqua), 0 8px 16px -8px var(--aqua-glow);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%235EEAD4' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.75rem;
  cursor: pointer;
}

.field select option {
  background: var(--navy);
  color: var(--ivory);
}

.form__status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  display: none;
  border-radius: 2px;
}

.form__status.is-visible { display: block; }
.form__status.is-success {
  border-color: var(--aqua);
  color: var(--aqua);
  background: var(--aqua-soft);
}
.form__status.is-error {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 138, 122, 0.08);
}

/* =========================================================
   Careers
   ========================================================= */
.jobs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.job {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: start;
  transition: padding-left 0.35s ease, background 0.35s ease;
  position: relative;
}

.job::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--aqua);
  box-shadow: 0 0 12px var(--aqua-glow);
  transition: height 0.35s ease;
}

.job:hover {
  padding-left: 1.25rem;
  background: linear-gradient(90deg, rgba(94, 234, 212, 0.04), transparent 60%);
}

.job:hover::before { height: 60%; }

.job__meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  padding-top: 0.35rem;
}

.job__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
  font-variation-settings: "wdth" 95, "opsz" 48;
}

.job__tags {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin: 0 0 1rem;
}

.job__tags span::before {
  content: "◦ ";
  color: var(--aqua);
}

.job__tags span:first-child::before { content: ""; }

.job__desc {
  color: var(--ivory-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  max-width: 62ch;
}

.job__subhead {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 1.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.job__subhead::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--aqua);
  box-shadow: 0 0 6px var(--aqua-glow);
}

.job__resp {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  color: var(--ivory-dim);
  font-size: 0.96rem;
  line-height: 1.7;
}

.job__resp li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.3rem;
}

.job__resp li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-size: 0.85rem;
}

/* =========================================================
   "What do we offer?" section
   ========================================================= */
.offer {
  margin-top: 4rem;
  padding: 2.5rem 2.5rem 2.75rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.05) 0%, rgba(139, 158, 255, 0.04) 100%),
    rgba(15, 35, 65, 0.4);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--aqua), var(--violet));
  box-shadow: 0 0 12px var(--aqua-glow);
}

.offer::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--aqua-soft) 0%, transparent 60%);
  pointer-events: none;
}

.offer__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 1rem;
}

.offer__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1.75rem;
  font-variation-settings: "wdth" 95, "opsz" 36;
  position: relative;
  z-index: 1;
}

.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  position: relative;
  z-index: 1;
}

.offer__list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ivory-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}

.offer__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--aqua);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 4px var(--aqua-glow));
}

@media (max-width: 780px) {
  .offer { padding: 2rem 1.5rem; }
  .offer__list { grid-template-columns: 1fr; }
}

.job__apply { align-self: center; }

.jobs__empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--ivory-faint);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 780px) {
  .job { grid-template-columns: 1fr; gap: 1rem; }
  .job:hover { padding-left: 0; }
  .job:hover::before { height: 0; }
  .job__apply { justify-self: start; }
}

/* =========================================================
   Page header
   ========================================================= */
.pagehead {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.pagehead__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .pagehead__grid { grid-template-columns: 1fr; }
}

.pagehead__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.pagehead__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--aqua);
  box-shadow: 0 0 8px var(--aqua-glow);
}

.pagehead__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem;
  max-width: 14ch;
  font-variation-settings: "wdth" 95, "opsz" 72;
}

.pagehead__title em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(135deg, var(--aqua) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pagehead__lede {
  max-width: 56ch;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ivory-dim);
  margin: 0;
}

.pagehead__viz {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  aspect-ratio: 1 / 1;
  opacity: 0;
  animation: rise 1.2s ease 0.4s forwards;
}
.pagehead__viz svg { width: 100%; height: 100%; overflow: visible; }

/* =========================================================
   Two-column layout (contact page)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.split__aside h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 1.1rem;
  font-weight: 500;
}

.split__aside p,
.split__aside address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  margin: 0 0 2rem;
}

.split__aside a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--aqua);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.split__aside a:hover {
  color: var(--aqua);
  text-shadow: 0 0 8px var(--aqua-glow);
}

@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   Coordinate strip
   ========================================================= */
.coords {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}

.coords::before, .coords::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua-glow), transparent);
  opacity: 0.6;
}
.coords::before { top: 0;    }
.coords::after  { bottom: 0; }

.coords span::before {
  content: "●";
  color: var(--aqua);
  margin-right: 0.5rem;
  font-size: 0.5rem;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px var(--aqua-glow));
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Selection
   ========================================================= */
::selection {
  background: var(--aqua);
  color: var(--navy-deep);
}
