:root {
  --ink: #c7dbe5;
  --muted: #9fb9c8;
  --paper: #071625;
  --mist: #0d263c;
  --line: #254962;
  --deep: #071625;
  --sea: #075c98;
  --moss: #6f92aa;
  --copper: #776039;
  --sun: #a9823a;
  --gold: #a9823a;
  --gold-soft: #b99656;
  --foam: #c7dbe5;
  --white: #c7dbe5;
  --shadow: 0 18px 55px rgba(7, 22, 37, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(73, 184, 255, 0.2);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: rgba(199, 219, 229, 0.96);
  background:
    linear-gradient(90deg, rgba(169, 130, 58, 0.18), rgba(199, 219, 229, 0.035) 42%, rgba(169, 130, 58, 0.12)),
    linear-gradient(180deg, rgba(169, 130, 58, 0.26), rgba(82, 62, 31, 0.16));
  border-bottom: 1px solid rgba(169, 130, 58, 0.14);
  box-shadow: 0 12px 28px rgba(7, 22, 37, 0.1);
  backdrop-filter: blur(18px) saturate(112%);
}

.site-header.is-open {
  padding-block: 12px;
  color: rgba(199, 219, 229, 0.96);
  background:
    linear-gradient(90deg, rgba(169, 130, 58, 0.22), rgba(199, 219, 229, 0.04) 42%, rgba(169, 130, 58, 0.15)),
    linear-gradient(180deg, rgba(169, 130, 58, 0.32), rgba(82, 62, 31, 0.2));
  border-bottom: 1px solid rgba(169, 130, 58, 0.16);
  box-shadow: 0 12px 28px rgba(7, 22, 37, 0.12);
  backdrop-filter: blur(18px) saturate(112%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(199, 219, 229, 0.42);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 22, 37, 0.74);
  box-shadow: 0 10px 28px rgba(7, 22, 37, 0.26);
  transform: translateZ(0);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  border-color: rgba(7, 22, 37, 0.34);
  background: var(--deep);
  box-shadow:
    0 9px 24px rgba(7, 22, 37, 0.24),
    inset 0 0 0 1px rgba(169, 130, 58, 0.22);
}

.brand-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: translateY(18px) scale(2.75);
  transition: opacity 180ms ease;
}

.brand-mark-light {
  opacity: 0;
}

.brand-text {
  display: none;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.05;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 3px 0 7px;
  text-decoration: none;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: -8px;
  bottom: -13px;
  left: -8px;
  height: 15px;
  background:
    linear-gradient(90deg, #b99656, #5ec8ff, #c7dbe5, #b99656);
  background-size: 260% 100%;
  content: "";
  opacity: 0;
  filter:
    drop-shadow(0 3px 7px rgba(7, 22, 37, 0.3))
    drop-shadow(0 0 8px rgba(169, 130, 58, 0.42));
  transform: scaleX(0.25) translateY(4px);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2096%2015'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%208C8%201%2016%201%2024%208S40%2015%2048%208S64%201%2072%208S88%2015%2096%208'%20fill='none'%20stroke='black'%20stroke-width='4.5'%20stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2096%2015'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%208C8%201%2016%201%2024%208S40%2015%2048%208S64%201%2072%208S88%2015%2096%208'%20fill='none'%20stroke='black'%20stroke-width='4.5'%20stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.site-header.is-scrolled .site-nav a::after,
.site-header.is-open .site-nav a::after {
  background: linear-gradient(90deg, #071625, #075c98, #c7dbe5, #071625);
  background-size: 260% 100%;
  filter:
    drop-shadow(0 3px 6px rgba(7, 22, 37, 0.28))
    drop-shadow(0 0 9px rgba(199, 219, 229, 0.44));
}

.site-nav a:hover,
.site-nav a:focus-visible {
  text-shadow: 0 0 18px rgba(169, 130, 58, 0.26);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  color: #e4f7ff;
  text-shadow:
    0 0 14px rgba(94, 200, 255, 0.36),
    0 1px 10px rgba(7, 22, 37, 0.58);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
  animation: nav-wave-glide 1.35s ease-in-out infinite;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.anchor-alias {
  position: relative;
  display: block;
  top: -92px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/lerwick-from-bressay-sound.jpg");
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.86) 0%, rgba(7, 22, 37, 0.58) 48%, rgba(7, 22, 37, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 22, 37, 0.26), rgba(7, 22, 37, 0.76));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(860px, calc(100% - 36px));
  margin-inline: clamp(18px, 7vw, 96px);
  padding-block: 112px 98px;
}

.hero-brand-visual {
  position: absolute;
  top: clamp(82px, 11vh, 124px);
  right: clamp(28px, 5vw, 92px);
  z-index: 1;
  width: clamp(230px, 27vw, 440px);
  overflow: hidden;
  pointer-events: none;
  isolation: isolate;
  transform-origin: center;
  filter:
    drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 32px rgba(7, 92, 152, 0.18));
}

.hero-brand-visual::before {
  position: absolute;
  inset: 8% 6% 14%;
  background:
    radial-gradient(circle at 50% 40%, rgba(169, 130, 58, 0.13), transparent 36%),
    radial-gradient(circle at 52% 58%, rgba(7, 92, 152, 0.18), transparent 58%);
  content: "";
  filter: blur(20px);
}

.hero-brand-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

.hero-tagline {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.36em;
  width: fit-content;
  max-width: 100%;
  padding: 8px 2px 11px;
  color: var(--gold-soft);
  letter-spacing: 0;
  text-transform: none;
  text-shadow:
    0 0 14px rgba(169, 130, 58, 0.26),
    0 2px 18px rgba(7, 22, 37, 0.72);
}

.hero-tagline::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 15px;
  background:
    linear-gradient(90deg, rgba(185, 150, 86, 0.1), rgba(94, 200, 255, 0.7), rgba(185, 150, 86, 0.46), rgba(94, 200, 255, 0.1));
  background-size: 220% 100%;
  content: "";
  filter:
    drop-shadow(0 0 10px rgba(94, 200, 255, 0.2))
    drop-shadow(0 0 8px rgba(169, 130, 58, 0.2));
  opacity: 0.78;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%2016'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%209C35%202%2057%2014%2090%208S148%202%20180%209S236%2015%20270%208S328%202%20360%209'%20fill='none'%20stroke='black'%20stroke-width='4'%20stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20360%2016'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%209C35%202%2057%2014%2090%208S148%202%20180%209S236%2015%20270%208S328%202%20360%209'%20fill='none'%20stroke='black'%20stroke-width='4'%20stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-tagline span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(100deg, var(--gold-soft), #c7dbe5 36%, #5ec8ff 52%, var(--gold-soft) 74%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  transform-origin: 50% 80%;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3.8rem, 7.4vw, 6.4rem);
  font-weight: 860;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  color: rgba(199, 219, 229, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button::after,
.service-card a::after,
.seo-page-links a::after,
.map-pin-link::after,
.footer-credit::after,
.ai-smart-actions a::after,
.contact-photo figcaption a::after {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  opacity: 0.84;
  transform: rotate(45deg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after,
.service-card a:hover::after,
.service-card a:focus-visible::after,
.seo-page-links a:hover::after,
.seo-page-links a:focus-visible::after,
.map-pin-link:hover::after,
.map-pin-link:focus-visible::after,
.footer-credit:hover::after,
.footer-credit:focus-visible::after,
.ai-smart-actions a:hover::after,
.ai-smart-actions a:focus-visible::after,
.contact-photo figcaption a:hover::after,
.contact-photo figcaption a:focus-visible::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.button-primary {
  border-color: rgba(199, 219, 229, 0.18);
  color: var(--white);
  background: var(--copper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ab5730;
}

.button-secondary {
  border-color: rgba(199, 219, 229, 0.62);
  color: var(--white);
  background: rgba(199, 219, 229, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(199, 219, 229, 0.08),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(199, 219, 229, 0.16);
}

.button-dark {
  border-color: rgba(199, 219, 229, 0.28);
  color: var(--white);
  background: rgba(199, 219, 229, 0.08);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: rgba(169, 130, 58, 0.58);
  background: rgba(199, 219, 229, 0.14);
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 22px;
  left: clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(169, 130, 58, 0.55);
  border-radius: var(--radius);
  background: rgba(7, 22, 37, 0.5);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  overflow: hidden;
  isolation: isolate;
}

.hero-strip::before {
  position: absolute;
  inset: 6px;
  z-index: 0;
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(94, 200, 255, 0.18), transparent 34%),
    linear-gradient(90deg, transparent, rgba(185, 150, 86, 0.1), rgba(94, 200, 255, 0.1), transparent);
  background-size: 42% 100%, 68% 100%;
  background-position: -42% 0, -68% 0;
  background-repeat: no-repeat;
  content: "";
  opacity: 0.86;
  animation: heroStripSeaSweep 8.6s ease-in-out infinite;
}

.hero-strip span {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 74px;
  padding: 34px 12px 12px;
  border: 1px solid rgba(169, 130, 58, 0.3);
  border-radius: calc(var(--radius) - 2px);
  color: var(--white);
  background: linear-gradient(135deg, #09233c, #0e3c64);
  box-shadow: inset 0 1px 0 rgba(199, 219, 229, 0.08);
  font-size: 0.86rem;
  font-weight: 860;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
  isolation: isolate;
  overflow: hidden;
  will-change: transform, box-shadow;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  animation: heroStripCardRise 7.8s ease-in-out infinite;
}

.hero-strip span:hover {
  border-color: rgba(185, 150, 86, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(199, 219, 229, 0.12),
    0 0 26px rgba(73, 184, 255, 0.14),
    0 0 18px rgba(169, 130, 58, 0.14);
  transform: translateY(-3px);
  animation: none;
}

.hero-strip span::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(185, 150, 86, 0.42), rgba(94, 200, 255, 0.64), rgba(185, 150, 86, 0.72));
  background-size: 220% 100%;
  content: "";
  animation: heroStripTopWave 3.8s ease-in-out infinite;
}

.hero-strip span::after {
  position: absolute;
  inset: 8px 13px auto;
  z-index: 0;
  height: 18px;
  content: "";
  opacity: 0.74;
  pointer-events: none;
  will-change: transform, opacity, background-position, box-shadow;
}

.hero-strip span:nth-child(1) {
  background: linear-gradient(135deg, #0a2947, #0d5282);
  animation-delay: 0s;
}

.hero-strip span:nth-child(1)::after {
  left: 18px;
  width: 28px;
  height: 28px;
  background: linear-gradient(180deg, rgba(185, 150, 86, 0.86), rgba(199, 219, 229, 0.58));
  clip-path: polygon(50% 0, 88% 60%, 64% 60%, 64% 100%, 36% 100%, 36% 60%, 12% 60%);
  transform-origin: 50% 100%;
  animation: heroStripLaunch 2.9s ease-in-out infinite;
}

.hero-strip span:nth-child(2) {
  background: linear-gradient(135deg, #07395f, #0870a7);
  animation-delay: 0.18s;
}

.hero-strip span:nth-child(2)::after {
  inset: 8px 18px auto;
  height: 25px;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(185, 150, 86, 0.82) 9% 21%, transparent 21% 31%, rgba(94, 200, 255, 0.72) 31% 46%, transparent 46% 57%, rgba(199, 219, 229, 0.72) 57% 76%, transparent 76% 100%);
  transform-origin: bottom;
  animation: heroStripGrowthBars 3.6s ease-in-out infinite;
}

.hero-strip span:nth-child(3) {
  background: linear-gradient(135deg, #08213b, #10588f);
  animation-delay: 0.36s;
}

.hero-strip span:nth-child(3)::after {
  inset: 10px 20px auto;
  height: 20px;
  border: 1px solid rgba(185, 150, 86, 0.4);
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 50%, rgba(185, 150, 86, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(94, 200, 255, 0.76) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 50%, rgba(199, 219, 229, 0.78) 0 4px, transparent 5px),
    linear-gradient(90deg, rgba(185, 150, 86, 0.34), rgba(94, 200, 255, 0.2));
  animation: heroStripCorporatePulse 3.4s ease-in-out infinite;
}

.hero-strip span:nth-child(4) {
  background: linear-gradient(135deg, #0e314d, #1f6f9e);
  animation-delay: 0.54s;
}

.hero-strip span:nth-child(4)::after {
  inset: 10px 18px auto;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(199, 219, 229, 0.18) 0 72%, transparent 72%),
    linear-gradient(90deg, transparent, rgba(94, 200, 255, 0.72), transparent);
  background-size: 100% 100%, 45% 100%;
  background-position: 0 0, -60% 0;
  background-repeat: no-repeat;
  animation: heroStripClarityScan 3.1s ease-in-out infinite;
}

.hero-strip span:nth-child(5) {
  background: linear-gradient(135deg, #061b34, #0a4a7b);
  animation-delay: 0.72s;
}

.hero-strip span:nth-child(5)::after {
  inset: 8px 50% auto auto;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(185, 150, 86, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 150, 86, 0.68), rgba(94, 200, 255, 0.08) 56%, transparent 60%);
  box-shadow:
    18px 0 0 rgba(94, 200, 255, 0.12),
    -18px 0 0 rgba(199, 219, 229, 0.1);
  transform: translateX(50%);
  animation: heroStripScalePulse 3.3s ease-in-out infinite;
}

.hero-strip span:last-child {
  border-right: 1px solid rgba(169, 130, 58, 0.3);
}

@keyframes heroStripSeaSweep {
  0%,
  14% {
    background-position: -42% 0, -68% 0;
    opacity: 0.54;
  }
  50% {
    background-position: 52% 0, 42% 0;
    opacity: 0.92;
  }
  100% {
    background-position: 142% 0, 168% 0;
    opacity: 0.54;
  }
}

@keyframes heroStripCardRise {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(199, 219, 229, 0.08);
  }
  48% {
    transform: translateY(-4px);
    box-shadow:
      inset 0 1px 0 rgba(199, 219, 229, 0.12),
      0 0 18px rgba(73, 184, 255, 0.08);
  }
}

@keyframes heroStripTopWave {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

@keyframes heroStripLaunch {
  0%,
  100% {
    transform: translateY(2px) scale(0.94);
    opacity: 0.58;
  }
  45% {
    transform: translateY(-5px) scale(1.08);
    opacity: 0.98;
  }
}

@keyframes heroStripGrowthBars {
  0%,
  100% {
    transform: scaleY(0.62);
    opacity: 0.56;
  }
  48% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

@keyframes heroStripCorporatePulse {
  0%,
  100% {
    transform: scaleX(0.94);
    opacity: 0.58;
  }
  50% {
    transform: scaleX(1.04);
    opacity: 0.98;
    box-shadow: 0 0 18px rgba(185, 150, 86, 0.16);
  }
}

@keyframes heroStripClarityScan {
  0%,
  100% {
    background-position: 0 0, -65% 0;
    opacity: 0.58;
  }
  52% {
    background-position: 0 0, 145% 0;
    opacity: 1;
  }
}

@keyframes heroStripScalePulse {
  0%,
  100% {
    transform: translateX(50%) scale(0.82);
    opacity: 0.58;
    box-shadow:
      18px 0 0 rgba(94, 200, 255, 0.12),
      -18px 0 0 rgba(199, 219, 229, 0.1);
  }
  50% {
    transform: translateX(50%) scale(1.12);
    opacity: 1;
    box-shadow:
      23px 0 0 rgba(94, 200, 255, 0.2),
      -23px 0 0 rgba(199, 219, 229, 0.16),
      0 0 22px rgba(185, 150, 86, 0.22);
  }
}

.careers-hero {
  position: relative;
  min-height: 86svh;
  padding: clamp(118px, 16vw, 168px) clamp(18px, 4vw, 54px) clamp(64px, 8vw, 100px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.72) 46%, rgba(7, 22, 37, 0.9)),
    linear-gradient(180deg, rgba(7, 22, 37, 0.38), rgba(7, 22, 37, 0.9)),
    url("assets/lerwick-from-bressay-sound.jpg") center 44% / cover no-repeat,
    linear-gradient(135deg, var(--deep), var(--sea));
  isolation: isolate;
  overflow: hidden;
}

.careers-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("assets/aog-logo-transparent.png") 8% 18% / 170px auto no-repeat,
    url("assets/aog-logo-transparent.png") 58% 13% / 124px auto no-repeat,
    url("assets/aog-logo-transparent.png") 88% 68% / 210px auto no-repeat,
    linear-gradient(90deg, rgba(199, 219, 229, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.05) 1px, transparent 1px);
  background-size: 170px auto, 124px auto, 210px auto, 68px 68px, 68px 68px;
  content: "";
  opacity: 0.2;
  mix-blend-mode: screen;
}

.careers-hero::after {
  position: absolute;
  right: -10%;
  bottom: -18%;
  z-index: -1;
  width: min(560px, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(169, 130, 58, 0.24);
  border-radius: 50%;
  content: "";
}

.careers-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.careers-copy h1 {
  max-width: min(16ch, 100%);
  font-size: clamp(3.4rem, 6.4vw, 6rem);
}

.careers-copy p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(199, 219, 229, 0.8);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.careers-visual {
  position: relative;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.careers-photo-card {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1.2;
  overflow: hidden;
  border: 1px solid rgba(199, 219, 229, 0.18);
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.careers-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(1.05) contrast(1.04) brightness(0.94);
}

.careers-photo-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 22, 37, 0.7), transparent 54%),
    linear-gradient(90deg, rgba(7, 22, 37, 0.22), transparent);
  content: "";
}

.careers-photo-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 11px;
  border: 1px solid rgba(169, 130, 58, 0.42);
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.candidate-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.candidate-stack span {
  padding: 9px 12px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: 999px;
  color: rgba(199, 219, 229, 0.9);
  background: rgba(199, 219, 229, 0.08);
  font-size: 0.86rem;
  font-weight: 820;
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 54px);
}

main > .section {
  position: relative;
}

main > section + .section {
  margin-top: -34px;
  padding-top: clamp(90px, 11vw, 152px);
  clip-path: polygon(
    0 34px,
    6% 24px,
    13% 38px,
    21% 20px,
    31% 34px,
    42% 18px,
    54% 34px,
    66% 22px,
    78% 38px,
    90% 24px,
    100% 34px,
    100% 100%,
    0 100%
  );
  filter:
    drop-shadow(0 -10px 18px rgba(73, 184, 255, 0.08))
    drop-shadow(0 -2px 8px rgba(169, 130, 58, 0.11));
}

.section-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.intro-band {
  position: relative;
  padding-block: clamp(58px, 8vw, 104px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.98), rgba(7, 92, 152, 0.62)),
    var(--deep);
  isolation: isolate;
  overflow: hidden;
}

.intro-band::before {
  position: absolute;
  inset: -12% -18% -8%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 10% 58%, rgba(199, 219, 229, 0.36) 0 2%, transparent 11%),
    radial-gradient(ellipse at 28% 64%, rgba(131, 216, 255, 0.28) 0 3%, transparent 16%),
    radial-gradient(ellipse at 52% 54%, rgba(199, 219, 229, 0.26) 0 2%, transparent 14%),
    radial-gradient(ellipse at 78% 62%, rgba(131, 216, 255, 0.24) 0 3%, transparent 17%),
    linear-gradient(112deg, transparent 15%, rgba(199, 219, 229, 0.16) 21%, transparent 32%),
    linear-gradient(108deg, transparent 32%, rgba(131, 216, 255, 0.15) 40%, transparent 55%),
    linear-gradient(90deg, rgba(199, 219, 229, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.045) 1px, transparent 1px);
  background-position:
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
  background-size:
    760px 280px,
    860px 310px,
    920px 290px,
    840px 320px,
    980px 260px,
    1120px 310px,
    72px 72px,
    72px 72px;
  content: "";
  opacity: 0.52;
  filter: blur(0.4px);
  animation: intro-ghost-wave-drift 18s ease-in-out infinite alternate;
  mask-image: linear-gradient(180deg, transparent 2%, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0.82) 78%, transparent 98%);
}

.intro-band::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 22, 37, 0.1), rgba(7, 22, 37, 0.52) 58%, rgba(7, 22, 37, 0.82)),
    radial-gradient(ellipse at 72% 74%, rgba(169, 130, 58, 0.08), transparent 42%);
  content: "";
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.intro-band .section-kicker {
  color: var(--sun);
}

.intro-band h2 {
  color: var(--white);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading > p,
.support-copy p,
.inquiry-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.intro-copy {
  display: grid;
  gap: 22px;
  align-self: start;
}

.intro-band .intro-copy p {
  color: rgba(199, 219, 229, 0.78);
}

.support-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-highlights li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  background: rgba(199, 219, 229, 0.08);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.support-highlights li::before {
  position: absolute;
  inset: -42%;
  background:
    conic-gradient(
      from -18deg,
      transparent 0 54deg,
      rgba(131, 216, 255, 0.18) 64deg,
      rgba(169, 130, 58, 0.22) 82deg,
      transparent 102deg 360deg
    );
  content: "";
  opacity: 0.38;
  animation: supportHighlightSweep 8s linear infinite;
  pointer-events: none;
}

.support-highlights li:hover,
.support-highlights li:focus-within {
  transform: translateY(-4px);
  border-color: rgba(169, 130, 58, 0.3);
  background: rgba(199, 219, 229, 0.11);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(169, 130, 58, 0.13);
}

.support-highlights li:hover::before,
.support-highlights li:focus-within::before {
  opacity: 0.64;
  animation-duration: 3.2s;
}

.support-highlight-icon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(199, 219, 229, 0.22);
  border-radius: 50%;
  color: var(--deep);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 26%),
    linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.support-highlight-icon::before {
  position: absolute;
  inset: -36%;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 54deg,
      rgba(199, 219, 229, 0.72) 68deg,
      rgba(169, 130, 58, 0.75) 82deg,
      transparent 100deg 360deg
    );
  content: "";
  opacity: 0.3;
  animation: supportHighlightIconSweep 5.5s linear infinite;
}

.support-highlight-svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 2px 6px rgba(199, 219, 229, 0.28));
}

.support-highlight-svg * {
  transform-box: fill-box;
  transform-origin: center;
}

.support-highlight-screen {
  animation: supportHighlightScreenGlow 3.2s ease-in-out infinite;
}

.support-highlight-line {
  stroke-dasharray: 38;
  animation: supportHighlightLineDraw 3.1s ease-in-out infinite;
}

.support-highlight-dot {
  fill: currentColor;
  stroke: rgba(199, 219, 229, 0.72);
  stroke-width: 1.25;
  animation: supportHighlightDotPulse 2.6s ease-in-out infinite;
}

.support-highlight-dot-delay {
  animation-delay: 0.36s;
}

.support-highlight-signal {
  stroke-dasharray: 22;
  animation: supportHighlightSignal 2.5s ease-in-out infinite;
}

.support-highlight-route {
  stroke-dasharray: 12 8;
  animation: supportHighlightRoute 3s linear infinite;
}

.support-highlight-check {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: supportHighlightCheck 3s ease-in-out infinite;
}

.support-highlight-bar {
  stroke-width: 5;
  animation: supportHighlightBarGrow 2.8s ease-in-out infinite;
}

.support-highlight-bar-two {
  animation-delay: 0.18s;
}

.support-highlight-bar-three {
  animation-delay: 0.36s;
}

.support-highlight-growth-line {
  stroke-dasharray: 56;
  animation: supportHighlightGrowthLine 3.1s ease-in-out infinite;
}

.support-highlights span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: block;
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-highlights strong {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.14;
}

.intro-photo {
  position: relative;
  height: clamp(280px, 30vw, 400px);
  margin: 0;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.intro-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 22, 37, 0.72));
  content: "";
  pointer-events: none;
}

.intro-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--white);
}

.intro-photo figcaption span {
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-photo figcaption strong {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.12;
}

.support-portal-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(280px, 30vw, 400px);
  align-content: start;
  gap: 14px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid rgba(199, 219, 229, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.94), rgba(7, 22, 37, 0.76)),
    linear-gradient(145deg, rgba(169, 130, 58, 0.18), transparent 38%),
    linear-gradient(135deg, var(--deep), var(--sea));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
  animation: supportPortalFloat 6.5s ease-in-out infinite;
}

.support-portal-card::before {
  position: absolute;
  right: -40px;
  bottom: -36px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(169, 130, 58, 0.28);
  border-radius: 50%;
  content: "";
  animation: supportPortalRing 4.8s ease-in-out infinite;
}

.support-portal-card::after {
  position: absolute;
  right: 40px;
  bottom: 38px;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(169, 130, 58, 0.7);
  border-radius: 10px;
  content: "";
  transform: rotate(8deg);
  box-shadow:
    0 0 0 8px rgba(169, 130, 58, 0.08),
    0 0 24px rgba(169, 130, 58, 0.24);
  animation: supportPortalDevice 3.8s ease-in-out infinite;
}

.support-portal-card:hover,
.support-portal-card:focus-within {
  animation: supportPortalActive 2.8s ease-in-out infinite;
  border-color: rgba(169, 130, 58, 0.36);
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.4),
    0 0 42px rgba(169, 130, 58, 0.18),
    inset 0 0 0 1px rgba(199, 219, 229, 0.08);
  filter: saturate(1.06);
}

.support-portal-card:hover::before,
.support-portal-card:focus-within::before {
  border-color: rgba(169, 130, 58, 0.48);
  animation-duration: 2.7s;
}

.support-portal-card:hover::after,
.support-portal-card:focus-within::after {
  border-color: rgba(204, 176, 111, 0.92);
  box-shadow:
    0 0 0 9px rgba(169, 130, 58, 0.13),
    0 0 34px rgba(169, 130, 58, 0.34);
}

.support-portal-card > * {
  position: relative;
  z-index: 1;
}

.portal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.portal-topline span,
.portal-topline strong {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-topline span {
  color: var(--sun);
}

.portal-topline strong {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
}

.portal-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  min-height: 72px;
  padding: 13px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(199, 219, 229, 0.1), rgba(199, 219, 229, 0.05)),
    rgba(199, 219, 229, 0.06);
  overflow: hidden;
}

.portal-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(131, 216, 255, 0.16) 44%, rgba(169, 130, 58, 0.14) 50%, transparent 62% 100%);
  content: "";
  transform: translateX(-120%);
  animation: supportPortalScan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.portal-visual span {
  position: relative;
  z-index: 1;
  align-self: end;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--sun), rgba(199, 219, 229, 0.72));
  transform-origin: 50% 100%;
  animation: supportPortalBars 2.9s ease-in-out infinite;
}

.portal-visual span:first-child {
  height: 42%;
  animation-delay: 0.1s;
}

.portal-visual span:nth-child(2) {
  height: 68%;
  animation-delay: 0.28s;
}

.portal-visual span:nth-child(3) {
  height: 88%;
  animation-delay: 0.46s;
}

.portal-visual i {
  position: absolute;
  right: 14px;
  top: 13px;
  z-index: 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ce7b2;
  box-shadow:
    -16px 0 0 rgba(199, 219, 229, 0.26),
    0 0 0 7px rgba(124, 231, 178, 0.12);
  animation: supportPortalStatus 1.8s ease-in-out infinite;
}

.support-portal-card h3 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.32rem, 2.1vw, 1.82rem);
  line-height: 1.05;
}

.support-portal-card p {
  max-width: 54ch;
  margin: 0;
  color: rgba(199, 219, 229, 0.78);
  font-size: 0.96rem;
}

.portal-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-steps li {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  color: rgba(199, 219, 229, 0.9);
  background: rgba(199, 219, 229, 0.08);
  font-size: 0.84rem;
  font-weight: 820;
  text-align: center;
}

.portal-steps li::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 34%, rgba(169, 130, 58, 0.13) 50%, transparent 66% 100%);
  content: "";
  transform: translateX(-120%);
  animation: supportPortalStepGlow 5.2s ease-in-out infinite;
}

.portal-steps li:nth-child(2)::after {
  animation-delay: 0.45s;
}

.portal-steps li:nth-child(3)::after {
  animation-delay: 0.9s;
}

.support-portal-card .button-primary {
  box-shadow:
    0 12px 24px rgba(169, 130, 58, 0.16),
    0 0 0 1px rgba(199, 219, 229, 0.08);
  animation: supportPortalButtonGlow 3.8s ease-in-out infinite;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.stage-track {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  background: rgba(199, 219, 229, 0.08);
  backdrop-filter: blur(16px);
}

.stage-track span {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 64px;
  min-width: 0;
  place-items: center;
  padding: 10px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 22, 37, 0.82);
  font-weight: 850;
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  line-height: 1.16;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(199, 219, 229, 0.08);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.stage-track span::before {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 17px;
  height: 17px;
  border-top: 2px solid rgba(169, 130, 58, 0.72);
  border-right: 2px solid rgba(169, 130, 58, 0.72);
  content: "";
  opacity: 0.42;
  transform: rotate(45deg) translate(-2px, 2px);
  animation: stageCardArrow 2.8s ease-in-out infinite;
}

.stage-track span::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 34%, rgba(131, 216, 255, 0.09) 45%, rgba(169, 130, 58, 0.09) 52%, transparent 66% 100%);
  content: "";
  opacity: 0.8;
  transform: translateX(-120%);
  animation: stageCardSheen 6s ease-in-out infinite;
  pointer-events: none;
}

.stage-track span:nth-of-type(2)::before,
.stage-track span:nth-of-type(2)::after {
  animation-delay: 0.25s;
}

.stage-track span:nth-of-type(3)::before,
.stage-track span:nth-of-type(3)::after {
  animation-delay: 0.5s;
}

.stage-track span:nth-of-type(4)::before,
.stage-track span:nth-of-type(4)::after {
  animation-delay: 0.75s;
}

.stage-track span:hover,
.stage-track span:focus-within {
  transform: translateY(-3px);
  background: rgba(7, 22, 37, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(169, 130, 58, 0.16),
    0 16px 28px rgba(0, 0, 0, 0.22);
}

.stage-track small {
  position: relative;
  z-index: 1;
  color: rgba(199, 219, 229, 0.68);
  font-size: 0.76rem;
  font-weight: 760;
}

.stage-track strong {
  position: relative;
  z-index: 1;
}

.stage-track i {
  position: relative;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(169, 130, 58, 0.15), rgba(204, 176, 111, 0.92), rgba(131, 216, 255, 0.45), rgba(169, 130, 58, 0.15));
  background-size: 220% 100%;
  box-shadow: 0 0 12px rgba(169, 130, 58, 0.2);
  animation: stageConnectorFlow 2.8s linear infinite;
}

.stage-track i::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(204, 176, 111, 0.92);
  box-shadow: 0 0 14px rgba(204, 176, 111, 0.46);
  content: "";
  transform: translate(-50%, -50%);
  animation: stageConnectorPulse 2.8s ease-in-out infinite;
}

.stage-track i::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(204, 176, 111, 0.92);
  border-right: 2px solid rgba(204, 176, 111, 0.92);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  animation: stageConnectorArrow 1.9s ease-in-out infinite;
}

.ai-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 19, 33, 0.96), rgba(6, 19, 33, 0.78) 48%, rgba(7, 22, 37, 0.96)),
    linear-gradient(180deg, rgba(7, 22, 37, 0.28), rgba(7, 22, 37, 0.92)),
    url("assets/solution-digital-colour.jpg");
  background-position: center;
  background-size: cover;
}

.ai-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(169, 130, 58, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(7, 92, 152, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(199, 219, 229, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px, 58px 58px;
  content: "";
  opacity: 0.44;
  pointer-events: none;
}

.ai-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    linear-gradient(112deg, transparent 18%, rgba(131, 216, 255, 0.11) 24%, transparent 38%),
    linear-gradient(108deg, transparent 42%, rgba(169, 130, 58, 0.09) 48%, transparent 62%);
  background-position:
    8% 72%,
    92% 14%,
    0 54%,
    0 68%;
  background-repeat: no-repeat;
  background-size:
    clamp(170px, 16vw, 260px) auto,
    clamp(170px, 16vw, 260px) auto,
    960px 240px,
    1080px 260px;
  content: "";
  filter: saturate(0.82) contrast(1.05);
  opacity: 0.11;
  mix-blend-mode: screen;
  pointer-events: none;
}

.ai-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
}

.ai-copy .section-kicker {
  color: var(--sun);
}

.ai-copy h2 {
  max-width: min(16ch, 100%);
  color: var(--white);
}

.ai-copy > p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(199, 219, 229, 0.76);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.ai-capabilities {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.ai-capabilities li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  background: rgba(199, 219, 229, 0.07);
  backdrop-filter: blur(14px);
}

.ai-capability-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow:
    inset 0 0 0 1px rgba(199, 219, 229, 0.2),
    0 12px 24px rgba(0, 0, 0, 0.22);
  font-size: 0.8rem;
  font-weight: 900;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.ai-capability-icon::before,
.ai-capability-icon::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.ai-capability-icon::before {
  inset: -36%;
  z-index: 0;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 54deg,
      rgba(131, 216, 255, 0.76) 66deg,
      rgba(169, 130, 58, 0.78) 84deg,
      transparent 104deg 360deg
    );
  opacity: 0.34;
  animation: aiCapabilitySweep 6s linear infinite;
}

.ai-capability-icon::after {
  inset: 7px;
  z-index: 0;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.36), transparent 25%),
    radial-gradient(circle at 58% 66%, rgba(199, 219, 229, 0.16), transparent 58%);
  opacity: 0.72;
}

.ai-capability-svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 2px 7px rgba(199, 219, 229, 0.32));
}

.ai-capability-svg * {
  transform-box: fill-box;
  transform-origin: center;
}

.ai-capability-node {
  fill: currentColor;
  stroke: rgba(199, 219, 229, 0.72);
  stroke-width: 1.25;
  animation: aiCapabilityNodePulse 2.7s ease-in-out infinite;
}

.ai-capability-node-delay {
  animation-delay: 0.26s;
}

.ai-capability-node-late {
  animation-delay: 0.52s;
}

.ai-capability-route-line {
  stroke-dasharray: 62;
  animation: aiCapabilityRouteFlow 3.1s ease-in-out infinite;
}

.ai-capability-route-line-alt {
  animation-delay: 0.28s;
  opacity: 0.68;
}

.ai-capability-arrow {
  animation: aiCapabilityArrowNudge 2.4s ease-in-out infinite;
}

.ai-capability-wave {
  stroke-dasharray: 14 9;
  animation: aiCapabilityWaveFlow 2.7s linear infinite;
}

.ai-capability-wave-two {
  animation-delay: 0.24s;
}

.ai-capability-wave-three {
  animation-delay: 0.48s;
}

.ai-capability-check {
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: aiCapabilityCheckResolve 3.1s ease-in-out infinite;
}

.ai-capability-screen {
  animation: aiCapabilityScreenGlow 3.4s ease-in-out infinite;
}

.ai-capability-message {
  stroke-dasharray: 44;
  animation: aiCapabilityMessageType 3.2s ease-in-out infinite;
}

.ai-capability-spark {
  animation: aiCapabilitySpark 1.8s ease-in-out infinite;
}

.ai-capability-cursor {
  animation: aiCapabilityCursorMove 3s ease-in-out infinite;
}

.ai-capabilities li:hover .ai-capability-icon,
.ai-capabilities li:focus-within .ai-capability-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    inset 0 0 0 1px rgba(199, 219, 229, 0.34),
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(169, 130, 58, 0.24);
  filter: saturate(1.1);
}

.ai-capabilities li:hover .ai-capability-icon::before,
.ai-capabilities li:focus-within .ai-capability-icon::before {
  opacity: 0.58;
  animation-duration: 2.6s;
}

.ai-capabilities strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
}

.ai-capabilities p {
  grid-column: 2;
  margin: -8px 0 0;
  color: rgba(199, 219, 229, 0.68);
}

.ai-console {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(169, 130, 58, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 22, 37, 0.76);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.ai-console::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(199, 219, 229, 0.12), rgba(199, 219, 229, 0.04)),
    linear-gradient(90deg, rgba(7, 22, 37, 0.9), rgba(7, 22, 37, 0.56)),
    url("assets/solution-digital-colour.jpg");
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(0.2) saturate(0.7) contrast(1.08);
  opacity: 0.42;
  pointer-events: none;
}

.ai-console::after {
  position: absolute;
  right: -110px;
  top: -100px;
  z-index: 0;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(169, 130, 58, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131, 216, 255, 0.12), transparent 60%);
  content: "";
  pointer-events: none;
}

.ai-console > * {
  position: relative;
  z-index: 1;
}

.ai-orb-shell {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 70%, rgba(169, 130, 58, 0.12), transparent 48%),
    radial-gradient(circle at 50% 48%, rgba(7, 92, 152, 0.34), transparent 42%),
    rgba(199, 219, 229, 0.05);
  box-shadow: inset 0 0 44px rgba(169, 130, 58, 0.05);
}

.ai-orb {
  position: relative;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(169, 130, 58, 0.48);
  border-radius: 45% 55% 50% 50% / 57% 43% 58% 42%;
  background:
    radial-gradient(ellipse at 26% 18%, rgba(199, 219, 229, 0.52), transparent 15%),
    radial-gradient(ellipse at 38% 52%, rgba(169, 130, 58, 0.5), transparent 36%),
    radial-gradient(ellipse at 72% 78%, rgba(131, 216, 255, 0.42), transparent 44%),
    radial-gradient(ellipse at 52% 108%, rgba(7, 92, 152, 0.72), transparent 52%),
    linear-gradient(145deg, rgba(169, 130, 58, 0.7), #075c98 50%, #071625 94%);
  box-shadow:
    inset 0 0 28px rgba(199, 219, 229, 0.13),
    inset 0 -18px 30px rgba(7, 22, 37, 0.42),
    0 0 0 16px rgba(169, 130, 58, 0.065),
    0 0 46px rgba(169, 130, 58, 0.26),
    0 0 74px rgba(7, 126, 184, 0.34);
  animation:
    atlantic-orb-morph 5.2s cubic-bezier(0.45, 0, 0.2, 1) infinite,
    atlantic-orb-current 3.6s ease-in-out infinite;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  overflow: hidden;
}

.ai-orb::before,
.ai-orb::after { position: absolute; content: ""; pointer-events: none; }

.ai-orb::before {
  inset: -28%;
  background:
    radial-gradient(ellipse at 30% 48%, rgba(131, 216, 255, 0.2), transparent 34%),
    radial-gradient(ellipse at 60% 38%, rgba(169, 130, 58, 0.24), transparent 38%),
    conic-gradient(from 90deg, transparent 0 38deg, rgba(131, 216, 255, 0.18) 84deg, rgba(169, 130, 58, 0.34) 132deg, transparent 206deg 360deg);
  animation: atlantic-water-glimmer 4.9s ease-in-out infinite;
  opacity: 0.86;
}

.ai-orb::after {
  right: -52%; bottom: -9%; left: -52%; height: 56%;
  border-radius: 50% 50% 45% 55% / 58% 42% 66% 34%;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(199, 219, 229, 0.28), transparent 38%),
    radial-gradient(ellipse at 47% 26%, rgba(169, 130, 58, 0.54), transparent 44%),
    radial-gradient(ellipse at 78% 45%, rgba(131, 216, 255, 0.54), transparent 48%),
    radial-gradient(ellipse at 50% 78%, rgba(7, 92, 152, 0.54), transparent 58%);
  background-size: 175% 100%;
  filter: blur(0.55px) drop-shadow(0 0 18px rgba(169, 130, 58, 0.22));
  opacity: 0.9;
  animation: atlantic-wave-tide 3.05s ease-in-out infinite;
}

.ai-console:hover .ai-orb,
.ai-console:focus-within .ai-orb {
  border-color: rgba(169, 130, 58, 0.62);
  box-shadow: inset 0 0 28px rgba(199, 219, 229, 0.16), 0 0 0 18px rgba(169, 130, 58, 0.1), 0 0 58px rgba(169, 130, 58, 0.34), 0 0 86px rgba(131, 216, 255, 0.42);
  filter: brightness(1.08) saturate(1.1);
  animation-duration: 4.8s, 3.4s;
}

.ai-orb span,
.ai-launcher-orb span {
  position: absolute; z-index: 2; right: -52%; left: -52%; height: 44%;
  border-radius: 54% 46% 50% 50% / 58% 42% 62% 38%;
  filter: blur(0.42px) drop-shadow(0 0 12px rgba(169, 130, 58, 0.22));
  mix-blend-mode: screen; pointer-events: none; transform-origin: center;
  background-size: 190% 100%;
}

.ai-orb span:first-child,
.ai-launcher-orb span:first-child {
  bottom: 35%;
  background:
    radial-gradient(ellipse at 18% 58%, rgba(199, 219, 229, 0.42), transparent 36%),
    radial-gradient(ellipse at 48% 44%, rgba(169, 130, 58, 0.68), transparent 42%),
    radial-gradient(ellipse at 82% 58%, rgba(131, 216, 255, 0.48), transparent 46%);
  opacity: 0.78;
  animation: atlantic-wave-swell-one 3.15s ease-in-out infinite;
}

.ai-orb span:nth-child(2),
.ai-launcher-orb span:nth-child(2) {
  bottom: 19%; height: 48%;
  background:
    radial-gradient(ellipse at 14% 54%, rgba(7, 92, 152, 0.76), transparent 44%),
    radial-gradient(ellipse at 46% 40%, rgba(169, 130, 58, 0.8), transparent 42%),
    radial-gradient(ellipse at 76% 62%, rgba(199, 219, 229, 0.34), transparent 46%),
    radial-gradient(ellipse at 94% 48%, rgba(131, 216, 255, 0.48), transparent 44%);
  opacity: 0.94;
  animation: atlantic-wave-swell-two 2.85s ease-in-out infinite;
}

.ai-orb span:nth-child(3),
.ai-launcher-orb span:nth-child(3) {
  bottom: 4%; height: 50%;
  background:
    radial-gradient(ellipse at 24% 48%, rgba(169, 130, 58, 0.56), transparent 42%),
    radial-gradient(ellipse at 56% 34%, rgba(131, 216, 255, 0.78), transparent 44%),
    radial-gradient(ellipse at 84% 58%, rgba(7, 92, 152, 0.74), transparent 48%),
    radial-gradient(ellipse at 108% 52%, rgba(169, 130, 58, 0.34), transparent 42%);
  opacity: 0.86;
  animation: atlantic-wave-swell-three 3.45s ease-in-out infinite;
}

.ai-console:hover .ai-orb span,
.ai-console:focus-within .ai-orb span,
.ai-launcher:hover .ai-launcher-orb span,
.ai-launcher:focus-visible .ai-launcher-orb span,
.ai-launcher[aria-expanded="true"] .ai-launcher-orb span {
  filter: blur(0.18px) drop-shadow(0 0 13px rgba(169, 130, 58, 0.36));
  opacity: 1;
  animation-duration: 2.05s;
}

.ai-console-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.ai-console-topline span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-console-topline strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-console h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.ai-chat-preview {
  display: grid;
  gap: 10px;
}

.ai-chat-preview p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  color: rgba(199, 219, 229, 0.78);
  background: rgba(199, 219, 229, 0.08);
}

.ai-chat-preview strong {
  color: var(--sun);
}

.ai-prompt-row,
.ai-widget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-prompt-row button,
.ai-widget-options button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid rgba(169, 130, 58, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(199, 219, 229, 0.08);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.ai-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 74;
  display: grid;
  width: 72px;
  height: 64px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(169, 130, 58, 0.62);
  border-radius: 46% 54% 48% 52% / 54% 46% 54% 46%;
  color: var(--white);
  background:
    radial-gradient(ellipse at 32% 20%, rgba(199, 219, 229, 0.18), transparent 24%),
    radial-gradient(ellipse at 76% 80%, rgba(131, 216, 255, 0.26), transparent 42%),
    radial-gradient(ellipse at 46% 102%, rgba(169, 130, 58, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(7, 22, 37, 0.98), rgba(4, 42, 70, 0.96) 62%, rgba(7, 22, 37, 0.98));
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(131, 216, 255, 0.22),
    0 0 22px rgba(169, 130, 58, 0.14);
  cursor: pointer;
  font-weight: 900;
  backdrop-filter: blur(14px);
  isolation: isolate;
  animation: atlantic-launcher-fluid 6.4s ease-in-out infinite;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.ai-launcher::before,
.ai-launcher::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(131, 216, 255, 0.22);
  border-radius: 46% 54% 48% 52% / 54% 46% 54% 46%;
  content: "";
  pointer-events: none;
}

.ai-launcher::before {
  inset: -12px;
  background:
    radial-gradient(ellipse at 24% 62%, rgba(131, 216, 255, 0.18), transparent 54%),
    radial-gradient(ellipse at 74% 38%, rgba(169, 130, 58, 0.16), transparent 52%),
    conic-gradient(from 180deg, transparent 0 34deg, rgba(131, 216, 255, 0.2) 92deg, rgba(169, 130, 58, 0.24) 152deg, transparent 238deg 360deg);
  animation: atlantic-halo-current 4.8s ease-in-out infinite;
}

.ai-launcher::after {
  inset: -24px;
  border-color: rgba(169, 130, 58, 0.14);
  background:
    radial-gradient(ellipse at 30% 58%, rgba(131, 216, 255, 0.16), transparent 58%),
    radial-gradient(ellipse at 72% 42%, rgba(169, 130, 58, 0.14), transparent 58%),
    radial-gradient(ellipse at 50% 92%, rgba(7, 92, 152, 0.16), transparent 56%);
  animation: atlantic-launcher-swell 5.4s ease-in-out infinite;
}

.ai-launcher:hover,
.ai-launcher:focus-visible,
.ai-launcher[aria-expanded="true"] {
  animation: atlantic-launcher-fluid-active 4.4s ease-in-out infinite;
  border-color: rgba(169, 130, 58, 0.95);
  border-radius: 42% 58% 51% 49% / 57% 43% 55% 45%;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(199, 219, 229, 0.22), transparent 24%),
    radial-gradient(ellipse at 78% 74%, rgba(131, 216, 255, 0.28), transparent 42%),
    linear-gradient(145deg, rgba(7, 22, 37, 0.99), rgba(4, 52, 86, 0.98) 64%, rgba(7, 22, 37, 0.99));
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.38),
    0 0 46px rgba(131, 216, 255, 0.45),
    0 0 72px rgba(169, 130, 58, 0.22);
  transform: translateY(-3px) scale(1.06);
}

.ai-launcher:hover::before,
.ai-launcher:focus-visible::before,
.ai-launcher[aria-expanded="true"]::before {
  border-color: rgba(131, 216, 255, 0.58);
}

.ai-launcher:hover::after,
.ai-launcher:focus-visible::after,
.ai-launcher[aria-expanded="true"]::after {
  border-color: rgba(169, 130, 58, 0.38);
}

.ai-launcher-orb {
  position: relative; z-index: 1; width: 52px; height: 46px;
  border-radius: 45% 55% 50% 50% / 58% 42% 56% 44%;
  background:
    radial-gradient(ellipse at 26% 18%, rgba(199, 219, 229, 0.58), transparent 15%),
    radial-gradient(ellipse at 42% 56%, rgba(169, 130, 58, 0.52), transparent 36%),
    radial-gradient(ellipse at 72% 78%, rgba(131, 216, 255, 0.48), transparent 44%),
    linear-gradient(145deg, rgba(169, 130, 58, 0.78), #075c98 52%, #071625);
  box-shadow:
    inset 0 0 14px rgba(199, 219, 229, 0.16),
    inset 0 -10px 16px rgba(7, 22, 37, 0.34),
    0 8px 18px rgba(0, 0, 0, 0.18),
    0 0 24px rgba(169, 130, 58, 0.26),
    0 0 22px rgba(131, 216, 255, 0.2);
  transform: rotate(-4deg);
  animation:
    atlantic-orb-morph 4.8s cubic-bezier(0.45, 0, 0.2, 1) infinite,
    atlantic-orb-current 3.2s ease-in-out infinite;
  overflow: hidden;
}

.ai-launcher-orb::before,
.ai-launcher-orb::after { position: absolute; content: ""; pointer-events: none; }

.ai-launcher-orb::before {
  inset: -34%;
  background:
    radial-gradient(ellipse at 24% 46%, rgba(131, 216, 255, 0.24), transparent 34%),
    radial-gradient(ellipse at 60% 36%, rgba(169, 130, 58, 0.26), transparent 38%),
    conic-gradient(from 120deg, transparent 0 42deg, rgba(199, 219, 229, 0.18) 88deg, rgba(169, 130, 58, 0.32) 142deg, rgba(131, 216, 255, 0.16) 194deg, transparent 260deg 360deg);
  opacity: 0.84;
  animation: atlantic-water-glimmer 4.2s ease-in-out infinite;
}

.ai-launcher-orb::after {
  right: -52%; bottom: -11%; left: -52%; height: 56%;
  border-radius: 50% 50% 45% 55% / 58% 42% 66% 34%;
  background:
    radial-gradient(ellipse at 18% 42%, rgba(199, 219, 229, 0.28), transparent 38%),
    radial-gradient(ellipse at 48% 26%, rgba(169, 130, 58, 0.54), transparent 44%),
    radial-gradient(ellipse at 78% 45%, rgba(131, 216, 255, 0.56), transparent 48%),
    radial-gradient(ellipse at 50% 78%, rgba(7, 92, 152, 0.56), transparent 58%);
  background-size: 175% 100%;
  opacity: 0.92;
  animation: atlantic-wave-tide 2.85s ease-in-out infinite;
}

.ai-launcher:hover .ai-launcher-orb,
.ai-launcher:focus-visible .ai-launcher-orb,
.ai-launcher[aria-expanded="true"] .ai-launcher-orb {
  border-radius: 40% 60% 46% 54% / 60% 42% 58% 40%;
  box-shadow: inset 0 0 16px rgba(199, 219, 229, 0.22), 0 0 24px rgba(169, 130, 58, 0.46), 0 0 32px rgba(131, 216, 255, 0.32);
  filter: brightness(1.1) saturate(1.14);
  animation: atlantic-orb-morph 3.6s ease-in-out infinite, atlantic-orb-current 3.2s ease-in-out infinite;
}

.ai-widget {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 75;
  width: min(390px, calc(100vw - 36px));
  max-height: min(720px, calc(100svh - 116px));
  overflow: hidden;
  border: 1px solid rgba(169, 130, 58, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 22, 37, 0.98), rgba(7, 22, 37, 0.94)),
    url("assets/solution-digital-colour.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.36);
  isolation: isolate;
  pointer-events: auto;
}

.ai-widget::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("assets/aog-logo-transparent.png") 96% 8% / 150px auto no-repeat,
    radial-gradient(ellipse at 18% 68%, rgba(131, 216, 255, 0.16), transparent 36%),
    radial-gradient(ellipse at 62% 78%, rgba(169, 130, 58, 0.12), transparent 42%),
    linear-gradient(112deg, transparent 16%, rgba(131, 216, 255, 0.14) 28%, rgba(169, 130, 58, 0.1) 38%, transparent 54%);
  background-size:
    150px auto,
    460px 190px,
    520px 210px,
    680px 180px;
  content: "";
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: atlantic-widget-current 7.2s ease-in-out infinite;
}

.ai-widget > * {
  position: relative;
  z-index: 1;
}

.ai-widget:not([hidden]) {
  display: grid;
}

.ai-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(199, 219, 229, 0.12);
  background: linear-gradient(135deg, rgba(7, 92, 152, 0.42), rgba(169, 130, 58, 0.1));
}

.ai-widget-header div {
  display: grid;
  gap: 2px;
}

.ai-widget-header span {
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-widget-header strong {
  font-size: 1rem;
}

.ai-widget-header button {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(199, 219, 229, 0.22);
  border-radius: 50%;
  background: rgba(199, 219, 229, 0.08);
  cursor: pointer;
}

.ai-widget-header button::before,
.ai-widget-header button::after {
  position: absolute;
  top: 17px;
  right: 10px;
  left: 10px;
  height: 2px;
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  content: "";
}

.ai-widget-header button::before {
  transform: rotate(45deg);
}

.ai-widget-header button::after {
  transform: rotate(-45deg);
}

.ai-widget-body {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.ai-widget-chat {
  display: grid;
  max-height: 220px;
  gap: 10px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-color: rgba(169, 130, 58, 0.62) rgba(199, 219, 229, 0.08);
}

.ai-widget-message {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  color: rgba(199, 219, 229, 0.82);
  background: rgba(199, 219, 229, 0.08);
}

.ai-widget-message strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-widget-message-user {
  margin-left: 18px;
  border-color: rgba(169, 130, 58, 0.24);
  color: rgba(199, 219, 229, 0.9);
  background: rgba(169, 130, 58, 0.12);
}

.ai-smart-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ai-smart-actions[hidden] {
  display: none;
}

.ai-smart-actions a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(169, 130, 58, 0.34);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(169, 130, 58, 0.12);
  font-size: 0.82rem;
  font-weight: 880;
  line-height: 1.15;
  text-decoration: none;
}

.ai-smart-actions a:hover,
.ai-smart-actions a:focus-visible {
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
}

.ai-widget-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
  order: -1;
  padding: 10px;
  border: 1px solid rgba(169, 130, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(4, 13, 22, 0.68);
  box-shadow: inset 0 1px 0 rgba(199, 219, 229, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.ai-widget-question:focus-within {
  border-color: rgba(169, 130, 58, 0.72);
  background: rgba(4, 13, 22, 0.9);
  box-shadow:
    0 0 0 3px rgba(169, 130, 58, 0.14),
    inset 0 1px 0 rgba(199, 219, 229, 0.08);
}

.ai-widget-question label {
  display: grid;
  gap: 6px;
}

.ai-widget-question span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(169, 130, 58, 0.34);
  border-radius: 999px;
  color: var(--sun);
  background: rgba(169, 130, 58, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-widget-question label:focus-within span {
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
}

.ai-widget-question textarea {
  width: 100%;
  min-width: 0;
  min-height: 82px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(199, 219, 229, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 22, 37, 0.92);
  caret-color: var(--sun);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
}

.ai-widget-question textarea::placeholder {
  color: rgba(199, 219, 229, 0.44);
}

.ai-widget-question textarea:focus {
  border-color: rgba(169, 130, 58, 0.62);
  color: var(--white);
  background: rgba(4, 13, 22, 0.98);
  box-shadow: 0 0 0 3px rgba(169, 130, 58, 0.12);
}

.ai-widget-question button {
  min-height: 82px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius);
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.ai-widget-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-widget-options button {
  border-radius: var(--radius);
}

.ai-widget-options button:first-child {
  grid-column: 1 / -1;
}

.ai-widget-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
}

@keyframes aiCapabilitySweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes aiCapabilityNodePulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes aiCapabilityRouteFlow {
  0%,
  22% {
    stroke-dashoffset: 62;
    opacity: 0.56;
  }

  52%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes aiCapabilityArrowNudge {
  0%,
  100% {
    transform: translate(-1px, 1px);
  }

  50% {
    transform: translate(3px, -3px);
  }
}

@keyframes aiCapabilityWaveFlow {
  to {
    stroke-dashoffset: -46;
  }
}

@keyframes aiCapabilityCheckResolve {
  0%,
  25% {
    stroke-dashoffset: 26;
    opacity: 0.42;
  }

  52%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes aiCapabilityScreenGlow {
  0%,
  100% {
    opacity: 0.76;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(131, 216, 255, 0.34));
  }
}

@keyframes aiCapabilityMessageType {
  0%,
  22% {
    stroke-dashoffset: 44;
    opacity: 0.54;
  }

  52%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes aiCapabilitySpark {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes aiCapabilityCursorMove {
  0%,
  100% {
    transform: translate(-1px, 1px);
  }

  50% {
    transform: translate(3px, -3px);
  }
}

@keyframes atlantic-orb-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.015);
  }
}

@keyframes atlantic-orb-sheen {
  to {
    transform: rotate(360deg);
  }
}

@keyframes atlantic-water-glimmer {
  0% {
    opacity: 0.62;
    transform: translateX(-5%) rotate(0deg) scale(0.98);
  }

  42% {
    opacity: 0.94;
    transform: translateX(4%) rotate(74deg) scale(1.05);
  }

  72% {
    opacity: 0.78;
    transform: translateX(1%) rotate(148deg) scale(1.02);
  }

  100% {
    opacity: 0.68;
    transform: translateX(-5%) rotate(230deg) scale(0.98);
  }
}

@keyframes atlantic-wave-flow {
  0%,
  100% {
    transform: translateX(-8%) rotate(-6deg) scaleX(1);
  }

  50% {
    transform: translateX(8%) rotate(5deg) scaleX(1.12);
  }
}

@keyframes atlantic-wave-tide {
  0%, 100% { border-radius: 50% 50% 45% 55% / 58% 42% 66% 34%; background-position: 0% 50%; transform: translateX(-7%) translateY(0) rotate(-3deg) scaleX(1.06); }
  35% { border-radius: 60% 40% 52% 48% / 46% 60% 40% 54%; background-position: 58% 44%; transform: translateX(6%) translateY(-7%) rotate(4deg) scaleX(1.18); }
  68% { border-radius: 42% 58% 58% 42% / 64% 38% 62% 36%; background-position: 100% 55%; transform: translateX(1%) translateY(3%) rotate(-1deg) scaleX(1.1); }
}

@keyframes atlantic-wave-swell-one {
  0%, 100% { border-radius: 54% 46% 50% 50% / 58% 42% 62% 38%; background-position: 0% 50%; transform: translateX(-12%) translateY(0) rotate(-8deg) scaleX(1.06); }
  44% { border-radius: 62% 38% 58% 42% / 42% 62% 38% 58%; background-position: 62% 46%; transform: translateX(10%) translateY(-10%) rotate(5deg) scaleX(1.22); }
  72% { border-radius: 45% 55% 42% 58% / 64% 38% 60% 40%; background-position: 100% 52%; transform: translateX(2%) translateY(-4%) rotate(-2deg) scaleX(1.1); }
}

@keyframes atlantic-wave-swell-two {
  0%, 100% { border-radius: 52% 48% 54% 46% / 50% 50% 60% 40%; background-position: 100% 48%; transform: translateX(10%) translateY(0) rotate(5deg) scaleX(1.08); }
  38% { border-radius: 38% 62% 58% 42% / 64% 38% 62% 36%; background-position: 38% 54%; transform: translateX(-9%) translateY(-8%) rotate(-5deg) scaleX(1.26); }
  76% { border-radius: 58% 42% 44% 56% / 42% 62% 40% 58%; background-position: 0% 50%; transform: translateX(2%) translateY(2%) rotate(2deg) scaleX(1.14); }
}

@keyframes atlantic-wave-swell-three {
  0%, 100% { border-radius: 48% 52% 44% 56% / 62% 42% 58% 38%; background-position: 0% 54%; transform: translateX(-8%) translateY(1%) rotate(-5deg) scaleX(1.08); }
  48% { border-radius: 64% 36% 56% 44% / 42% 64% 38% 60%; background-position: 72% 46%; transform: translateX(11%) translateY(-7%) rotate(5deg) scaleX(1.2); }
  78% { border-radius: 40% 60% 52% 48% / 60% 40% 64% 36%; background-position: 100% 50%; transform: translateX(1%) translateY(3%) rotate(-1deg) scaleX(1.12); }
}

@keyframes atlantic-widget-wave {
  0%, 100% { transform: translateX(-4%) translateY(0) skewY(-1deg); opacity: 0.5; }
  50% { transform: translateX(5%) translateY(-8%) skewY(1.4deg); opacity: 0.84; }
}

@keyframes atlantic-widget-current {
  0%, 100% {
    background-position:
      96% 8%,
      -8% 88%,
      108% 72%,
      -34% 38%;
    transform: translateX(-1.5%) skewY(-0.8deg);
  }

  45% {
    background-position:
      94% 10%,
      48% 78%,
      34% 86%,
      72% 32%;
    transform: translateX(1.8%) skewY(0.9deg);
  }

  72% {
    background-position:
      97% 7%,
      92% 84%,
      -12% 76%,
      116% 42%;
    transform: translateX(0.6%) skewY(-0.2deg);
  }
}

@keyframes nav-wave-glide {
  0%,
  100% {
    background-position: 0 0;
    filter: drop-shadow(0 0 0 rgba(131, 216, 255, 0));
  }

  50% {
    background-position: 100% 0;
    filter: drop-shadow(0 0 6px rgba(131, 216, 255, 0.36));
  }
}

@keyframes atlantic-launcher-fluid {
  0%,
  100% {
    border-radius: 46% 54% 48% 52% / 54% 46% 54% 46%;
    transform: translateY(0) rotate(-1deg) scale(1);
  }

  25% {
    border-radius: 56% 44% 45% 55% / 48% 58% 42% 52%;
    transform: translateY(-3px) rotate(1.4deg) scale(1.012);
  }

  50% {
    border-radius: 42% 58% 56% 44% / 60% 42% 58% 40%;
    transform: translateY(-5px) rotate(-0.8deg) scale(1.024);
  }

  75% {
    border-radius: 58% 42% 49% 51% / 46% 56% 44% 54%;
    transform: translateY(-2px) rotate(1deg) scale(1.01);
  }
}

@keyframes atlantic-launcher-fluid-active {
  0%,
  100% {
    border-radius: 43% 57% 50% 50% / 58% 42% 56% 44%;
    transform: translateY(-3px) rotate(-1deg) scale(1.055);
  }

  35% {
    border-radius: 57% 43% 46% 54% / 46% 58% 42% 54%;
    transform: translateY(-6px) rotate(1.8deg) scale(1.075);
  }

  70% {
    border-radius: 41% 59% 58% 42% / 61% 40% 60% 39%;
    transform: translateY(-4px) rotate(-1.2deg) scale(1.065);
  }
}

@keyframes atlantic-launcher-float {
  0%,
  100% {
    border-radius: 46% 54% 48% 52% / 54% 46% 54% 46%;
    transform: translateY(0);
  }

  50% {
    border-radius: 52% 48% 45% 55% / 48% 55% 45% 52%;
    transform: translateY(-4px);
  }
}

@keyframes atlantic-orb-morph {
  0%,
  100% {
    border-radius: 45% 55% 50% 50% / 57% 43% 58% 42%;
    transform: rotate(-4deg) translateY(0) scale(1);
  }

  28% {
    border-radius: 58% 42% 46% 54% / 46% 60% 40% 54%;
    transform: rotate(3deg) translateY(-2px) scale(1.018);
  }

  58% {
    border-radius: 40% 60% 58% 42% / 62% 38% 60% 40%;
    transform: rotate(-2deg) translateY(-4px) scale(1.035);
  }

  82% {
    border-radius: 56% 44% 52% 48% / 44% 58% 42% 56%;
    transform: rotate(2deg) translateY(-1px) scale(1.014);
  }
}

@keyframes atlantic-launcher-ring {
  0% {
    opacity: 0;
    transform: scale(0.84);
  }

  34% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes atlantic-halo-current {
  0% {
    opacity: 0.18;
    transform: rotate(0deg) scale(0.86);
  }

  34% {
    opacity: 0.82;
  }

  100% {
    opacity: 0.1;
    transform: rotate(360deg) scale(1.18);
  }
}

@keyframes atlantic-launcher-swell {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-4%) scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: translateX(5%) scale(1.08);
  }
}

@keyframes atlantic-orb-current {
  0%,
  100% {
    filter: saturate(1) brightness(1);
  }

  50% {
    filter: saturate(1.18) brightness(1.08);
  }
}

@keyframes supportHighlightSweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes supportHighlightIconSweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes supportHighlightScreenGlow {
  0%,
  100% {
    opacity: 0.76;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(131, 216, 255, 0.34));
  }
}

@keyframes supportHighlightLineDraw {
  0%,
  24% {
    stroke-dashoffset: 38;
    opacity: 0.54;
  }

  52%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes supportHighlightDotPulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes supportHighlightSignal {
  0%,
  100% {
    stroke-dashoffset: 22;
    opacity: 0.42;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes supportHighlightRoute {
  to {
    stroke-dashoffset: -42;
  }
}

@keyframes supportHighlightCheck {
  0%,
  24% {
    stroke-dashoffset: 34;
    opacity: 0.42;
  }

  52%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes supportHighlightBarGrow {
  0%,
  100% {
    transform: scaleY(0.74);
    opacity: 0.68;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes supportHighlightGrowthLine {
  0%,
  24% {
    stroke-dashoffset: 56;
    opacity: 0.52;
  }

  54%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes supportPortalFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes supportPortalActive {
  0%,
  100% {
    transform: translateY(-5px) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.008);
  }
}

@keyframes supportPortalRing {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes supportPortalDevice {
  0%,
  100% {
    transform: rotate(8deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(-5px);
  }
}

@keyframes supportPortalScan {
  0%,
  36% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes supportPortalBars {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1.06);
    opacity: 1;
  }
}

@keyframes supportPortalStatus {
  0%,
  100% {
    box-shadow:
      -16px 0 0 rgba(199, 219, 229, 0.26),
      0 0 0 6px rgba(124, 231, 178, 0.1);
  }

  50% {
    box-shadow:
      -16px 0 0 rgba(199, 219, 229, 0.36),
      0 0 0 11px rgba(124, 231, 178, 0.18),
      0 0 18px rgba(124, 231, 178, 0.42);
  }
}

@keyframes supportPortalStepGlow {
  0%,
  42% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes supportPortalButtonGlow {
  0%,
  100% {
    box-shadow:
      0 12px 24px rgba(169, 130, 58, 0.16),
      0 0 0 1px rgba(199, 219, 229, 0.08);
  }

  50% {
    box-shadow:
      0 14px 30px rgba(169, 130, 58, 0.22),
      0 0 24px rgba(204, 176, 111, 0.2);
  }
}

@keyframes stageCardArrow {
  0%,
  100% {
    opacity: 0.36;
    transform: rotate(45deg) translate(-2px, 2px);
  }

  50% {
    opacity: 0.84;
    transform: rotate(45deg) translate(2px, -2px);
  }
}

@keyframes stageCardSheen {
  0%,
  48% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes stageConnectorFlow {
  to {
    background-position: 220% 0;
  }
}

@keyframes stageConnectorPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(32px, -50%) scale(1);
  }
}

@keyframes stageConnectorArrow {
  0%,
  100% {
    opacity: 0.66;
    transform: translateY(-50%) rotate(45deg) translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) rotate(45deg) translateX(4px);
  }
}

@keyframes intro-ghost-wave-drift {
  0% {
    background-position:
      -42px 18px,
      38px 26px,
      -18px 40px,
      54px 8px,
      -60px 20px,
      22px 34px,
      0 0,
      0 0;
    transform: translateX(-1.5%) skewY(-1deg);
  }

  100% {
    background-position:
      66px 10px,
      -56px 42px,
      78px 18px,
      -34px 36px,
      86px 28px,
      -62px 12px,
      18px 0,
      0 18px;
    transform: translateX(1.5%) skewY(1deg);
  }
}

.candidate-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(7, 92, 152, 0.3), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(169, 130, 58, 0.13), transparent 26%),
    linear-gradient(180deg, #071625 0%, #0a1d30 54%, #050d16 100%);
}

.candidate-section::before {
  position: absolute;
  inset: 0;
  background: url("assets/lerwick-from-bressay-sound.jpg") center 42% / cover no-repeat;
  content: "";
  filter: saturate(0.88) contrast(1.12) brightness(0.72);
  opacity: 0.28;
  transform: scale(1.02);
}

.candidate-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.94), rgba(7, 22, 37, 0.62) 50%, rgba(7, 22, 37, 0.9)),
    repeating-linear-gradient(115deg, rgba(199, 219, 229, 0.035) 0 1px, transparent 1px 54px);
  content: "";
  pointer-events: none;
}

.candidate-section .section-inner {
  position: relative;
  z-index: 1;
}

.candidate-section .section-inner::before {
  position: absolute;
  inset: clamp(-72px, -5vw, -36px) -2vw auto -2vw;
  height: clamp(360px, 56vw, 680px);
  z-index: -1;
  background:
    url("assets/aog-logo-transparent.png") 2% 10% / clamp(110px, 13vw, 190px) auto no-repeat,
    url("assets/aog-logo-transparent.png") 42% 4% / clamp(88px, 10vw, 150px) auto no-repeat,
    url("assets/aog-logo-transparent.png") 78% 24% / clamp(120px, 16vw, 230px) auto no-repeat,
    url("assets/aog-logo-transparent.png") 18% 88% / clamp(92px, 11vw, 160px) auto no-repeat,
    url("assets/aog-logo-transparent.png") 94% 82% / clamp(98px, 12vw, 178px) auto no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.candidate-section .section-kicker {
  color: var(--sun);
}

.candidate-section .section-heading h2 {
  color: var(--white);
}

.candidate-section .split-heading > p {
  color: rgba(199, 219, 229, 0.74);
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.candidate-photo-panel {
  position: relative;
  display: grid;
  min-height: clamp(300px, 38vw, 470px);
  margin: clamp(28px, 5vw, 48px) 0 26px;
  overflow: hidden;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32);
}

.candidate-photo-panel::before {
  position: absolute;
  top: clamp(20px, 5vw, 54px);
  right: clamp(18px, 5vw, 58px);
  z-index: 1;
  width: clamp(120px, 20vw, 270px);
  aspect-ratio: 1.28;
  background: url("assets/aog-logo-transparent.png") center / contain no-repeat;
  content: "";
  opacity: 0.14;
  pointer-events: none;
}

.candidate-photo-panel img,
.candidate-form-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 50%;
  filter: saturate(1.08) contrast(1.05) brightness(0.9);
}

.candidate-photo-panel::after,
.candidate-form-media::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.86), rgba(7, 22, 37, 0.38) 48%, rgba(7, 22, 37, 0.12)),
    linear-gradient(0deg, rgba(7, 22, 37, 0.52), transparent 54%);
  content: "";
}

.candidate-photo-caption {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 560px;
  padding: clamp(24px, 5vw, 48px);
}

.candidate-photo-caption span,
.candidate-form-media span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(169, 130, 58, 0.42);
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.candidate-photo-caption strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.candidate-photo-caption p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(199, 219, 229, 0.78);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.candidate-card {
  position: relative;
  display: grid;
  min-height: clamp(260px, 25vw, 340px);
  align-content: end;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: #06111f;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.candidate-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--candidate-image, url("assets/solution-people-colour.jpg"));
  background-position: var(--candidate-position, center);
  background-size: cover;
  content: "";
  filter: saturate(1.02) contrast(1.08) brightness(0.86);
  opacity: 0.84;
  transform: scale(1.035);
  transition: opacity 180ms ease, transform 180ms ease;
}

.candidate-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    url("assets/aog-logo-transparent.png") calc(100% - 16px) 16px / 76px auto no-repeat,
    linear-gradient(180deg, rgba(7, 22, 37, 0.12), rgba(7, 22, 37, 0.62) 46%, rgba(4, 10, 18, 0.96)),
    linear-gradient(135deg, rgba(7, 92, 152, 0.2), rgba(169, 130, 58, 0.12));
  content: "";
}

.candidate-card > * {
  position: relative;
  z-index: 1;
}

.candidate-card:hover,
.candidate-card:focus-within {
  border-color: rgba(169, 130, 58, 0.42);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.candidate-card:hover::before,
.candidate-card:focus-within::before {
  opacity: 0.92;
  transform: scale(1.08);
}

.candidate-card span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, var(--sun), #776039);
  font-size: 0.78rem;
  font-weight: 900;
}

.candidate-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.14rem, 1.5vw, 1.4rem);
  line-height: 1.08;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.candidate-card p {
  margin: 0;
  color: rgba(199, 219, 229, 0.76);
}

.candidate-card-wide {
  grid-column: 1 / -1;
  min-height: clamp(290px, 30vw, 380px);
}

.candidate-card-wide p {
  max-width: 720px;
}

.candidate-card-cleaning {
  --candidate-image: url("assets/solution-accommodation-colour.jpg");
  --candidate-position: 54% 50%;
}

.candidate-card-trades {
  --candidate-image: url("assets/solution-operations-colour.jpg");
  --candidate-position: 42% 46%;
}

.candidate-card-admin {
  --candidate-image: url("assets/solution-operations-colour.jpg");
  --candidate-position: 72% 46%;
}

.candidate-card-finance {
  --candidate-image: url("assets/solution-operations-colour.jpg");
  --candidate-position: 74% 52%;
}

.candidate-card-it {
  --candidate-image: url("assets/solution-digital-colour.jpg");
  --candidate-position: 72% 50%;
}

.candidate-card-driving {
  --candidate-image: url("assets/solution-accommodation-colour.jpg");
  --candidate-position: 72% 50%;
}

.candidate-card-management {
  --candidate-image: url("assets/solution-people-colour.jpg");
  --candidate-position: 72% 46%;
}

.candidate-card-projects {
  --candidate-image: url("assets/solution-launch-colour.jpg");
  --candidate-position: 72% 46%;
}

.candidate-card-all {
  --candidate-image: url("assets/solution-people-colour.jpg");
  --candidate-position: 68% 50%;
}

.network-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 92, 152, 0.28), rgba(169, 130, 58, 0.08)),
    var(--deep);
}

.network-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.9), rgba(7, 22, 37, 0.58), rgba(7, 22, 37, 0.9)),
    url("assets/lerwick-from-bressay-sound.jpg") center 42% / cover no-repeat;
  content: "";
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
  opacity: 0.4;
}

.network-section::after {
  position: absolute;
  inset: 0;
  background:
    url("assets/aog-logo-transparent.png") 10% 20% / 138px auto no-repeat,
    url("assets/aog-logo-transparent.png") 78% 70% / 190px auto no-repeat,
    radial-gradient(circle at 70% 18%, rgba(169, 130, 58, 0.12), transparent 28%);
  content: "";
  opacity: 0.18;
  pointer-events: none;
}

.network-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.network-section .section-kicker {
  color: var(--sun);
}

.network-steps {
  display: grid;
  gap: 14px;
}

.network-steps article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  background: rgba(199, 219, 229, 0.08);
}

.network-steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.82rem;
  font-weight: 900;
}

.network-steps h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}

.network-steps p {
  grid-column: 2;
  margin: -10px 0 0;
  color: rgba(199, 219, 229, 0.72);
}

.candidate-form-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.74)),
    linear-gradient(180deg, rgba(7, 22, 37, 0.44), rgba(7, 22, 37, 0.94)),
    url("assets/lerwick-from-bressay-sound.jpg");
  background-position: center 42%;
  background-size: cover;
}

.candidate-form-section::before {
  position: absolute;
  inset: 0;
  background:
    url("assets/aog-logo-transparent.png") 6% 16% / 150px auto no-repeat,
    url("assets/aog-logo-transparent.png") 52% 82% / 108px auto no-repeat,
    url("assets/aog-logo-transparent.png") 88% 18% / 220px auto no-repeat;
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

.candidate-form-section .section-inner {
  position: relative;
  z-index: 1;
}

.candidate-form-section .section-kicker {
  color: var(--sun);
}

.candidate-form {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.candidate-form-media {
  position: relative;
  min-height: 260px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(199, 219, 229, 0.18);
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.candidate-form-media::after {
  background:
    linear-gradient(0deg, rgba(7, 22, 37, 0.84), rgba(7, 22, 37, 0.04) 62%),
    linear-gradient(90deg, rgba(7, 22, 37, 0.3), transparent);
}

.candidate-form-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
}

.checkbox-field {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.checkbox-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.split-heading {
  align-items: start;
}

.split-heading > div {
  max-width: 710px;
}

.split-heading > p {
  max-width: 430px;
  padding-top: 34px;
}

.who-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.78)),
    linear-gradient(180deg, rgba(7, 22, 37, 0.52), rgba(7, 22, 37, 0.9)),
    url("assets/lerwick-from-bressay-sound.jpg");
  background-position: center;
  background-size: cover;
}

.who-section .section-kicker {
  color: var(--sun);
}

.who-section .split-heading > p {
  color: rgba(199, 219, 229, 0.74);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  --audience-photo: url("assets/solution-launch-colour.jpg");
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 470px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  background: rgba(199, 219, 229, 0.08);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.audience-card:hover,
.audience-card:focus-within {
  border-color: rgba(169, 130, 58, 0.34);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(73, 184, 255, 0.08);
  transform: translateY(-4px);
}

.audience-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 37, 0.48), rgba(7, 22, 37, 0.9)),
    var(--audience-photo);
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(0.24) saturate(0.78) contrast(1.12);
  opacity: 0.22;
  pointer-events: none;
}

.audience-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 219, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-card-launch {
  --audience-photo: url("assets/solution-launch-colour.jpg");
}

.audience-card-focus {
  --audience-photo: url("assets/solution-operations-colour.jpg");
}

.audience-card-scale {
  --audience-photo: url("assets/solution-people-colour.jpg");
}

.audience-card-structure {
  --audience-photo: url("assets/solution-accommodation-colour.jpg");
}

.audience-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audience-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(199, 219, 229, 0.24);
  border-radius: 50%;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.audience-icon::before,
.audience-icon::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.audience-icon::before {
  inset: -34%;
  z-index: 0;
  background:
    conic-gradient(
      from -24deg,
      transparent 0 52deg,
      rgba(199, 219, 229, 0.78) 64deg,
      rgba(169, 130, 58, 0.74) 82deg,
      transparent 100deg 360deg
    );
  opacity: 0.32;
  animation: audienceIconSweep 6.4s linear infinite;
}

.audience-icon::after {
  inset: 8px;
  z-index: 0;
  background:
    radial-gradient(circle at 36% 26%, rgba(255, 255, 255, 0.34), transparent 25%),
    radial-gradient(circle at 56% 64%, rgba(199, 219, 229, 0.16), transparent 58%);
  opacity: 0.72;
}

.audience-icon-svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 2px 7px rgba(199, 219, 229, 0.3));
}

.audience-icon-svg * {
  transform-box: fill-box;
  transform-origin: center;
}

.audience-icon-dot,
.audience-icon-node {
  fill: currentColor;
  stroke: rgba(199, 219, 229, 0.72);
  stroke-width: 1.3;
  animation: audienceIconPulse 2.8s ease-in-out infinite;
}

.audience-icon-node-delay {
  animation-delay: 0.28s;
}

.audience-icon-node-late {
  animation-delay: 0.56s;
}

.audience-icon-arrow {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: audienceIconLaunchDraw 3.2s ease-in-out infinite;
}

.audience-icon-base {
  stroke-dasharray: 32;
  stroke-dashoffset: 0;
  animation: audienceIconFoundation 3.2s ease-in-out infinite;
}

.audience-icon-ring {
  animation: audienceIconFocusRing 3s ease-in-out infinite;
}

.audience-icon-ring-inner {
  animation-delay: 0.35s;
}

.audience-icon-crosshair {
  stroke-dasharray: 10 10;
  animation: audienceIconCrosshair 3s linear infinite;
}

.audience-icon-bar {
  stroke-width: 5;
  animation: audienceIconBarGrow 2.8s ease-in-out infinite;
}

.audience-icon-bar-two {
  animation-delay: 0.18s;
}

.audience-icon-bar-three {
  animation-delay: 0.36s;
}

.audience-icon-growth {
  stroke-dasharray: 58;
  animation: audienceIconGrowthLine 3.1s ease-in-out infinite;
}

.audience-icon-network {
  stroke-dasharray: 46;
  animation: audienceIconNetworkFlow 3.2s ease-in-out infinite;
}

.audience-icon-frame {
  opacity: 0.42;
  animation: audienceIconFrameGlow 3.8s ease-in-out infinite;
}

.audience-card:hover .audience-icon,
.audience-card:focus-within .audience-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(169, 130, 58, 0.24);
  filter: saturate(1.08);
}

.audience-card:hover .audience-icon::before,
.audience-card:focus-within .audience-icon::before {
  opacity: 0.58;
  animation-duration: 2.7s;
}

@keyframes audienceIconSweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes audienceIconPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes audienceIconLaunchDraw {
  0%,
  20% {
    stroke-dashoffset: 48;
    transform: translateY(2px);
    opacity: 0.68;
  }

  48%,
  100% {
    stroke-dashoffset: 0;
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes audienceIconFoundation {
  0%,
  100% {
    transform: scaleX(0.82);
    opacity: 0.64;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes audienceIconFocusRing {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.68;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes audienceIconCrosshair {
  to {
    stroke-dashoffset: -20;
  }
}

@keyframes audienceIconBarGrow {
  0%,
  100% {
    transform: scaleY(0.76);
    opacity: 0.68;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes audienceIconGrowthLine {
  0%,
  24% {
    stroke-dashoffset: 58;
    opacity: 0.52;
  }

  54%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes audienceIconNetworkFlow {
  0%,
  100% {
    stroke-dashoffset: 46;
    opacity: 0.62;
  }

  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes audienceIconFrameGlow {
  0%,
  100% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.62;
  }
}

.audience-number {
  margin: 0;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-visual {
  position: relative;
  height: 128px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.54), rgba(7, 92, 152, 0.22)),
    var(--audience-photo);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(169, 130, 58, 0.08);
}

.audience-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 22, 37, 0.74), rgba(7, 22, 37, 0.28)),
    linear-gradient(90deg, rgba(199, 219, 229, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  content: "";
  opacity: 0.86;
  animation: audience-visual-current 10s linear infinite;
}

.audience-visual::after {
  position: absolute;
  inset: 0;
  background: var(--audience-photo);
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(0.38) saturate(0.62) contrast(1.12);
  opacity: 0.24;
  mix-blend-mode: screen;
}

.audience-visual span {
  position: absolute;
  z-index: 2;
  display: block;
}

.visual-launch span:first-child {
  right: 28px;
  bottom: 20px;
  width: 54px;
  height: 74px;
  clip-path: polygon(50% 0, 88% 64%, 62% 64%, 62% 100%, 38% 100%, 38% 64%, 12% 64%);
  background: linear-gradient(180deg, var(--sun), #c7dbe5);
  transform-origin: 50% 100%;
  animation: audience-launch-arrow 2.8s ease-in-out infinite;
}

.visual-launch span:nth-child(2) {
  left: 22px;
  bottom: 22px;
  width: 68px;
  height: 38px;
  border-radius: 6px;
  background: rgba(199, 219, 229, 0.12);
  box-shadow: 18px -18px 0 rgba(199, 219, 229, 0.08);
  animation: audience-launch-foundation 3.2s ease-in-out infinite;
}

.visual-launch span:nth-child(3) {
  right: 38px;
  bottom: 18px;
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: var(--copper);
  transform-origin: center;
  animation: audience-line-pulse 2.3s ease-in-out infinite;
}

.visual-focus span:first-child {
  left: 22px;
  top: 26px;
  width: 88px;
  height: 62px;
  border-radius: 7px;
  background: rgba(199, 219, 229, 0.13);
  box-shadow: inset 0 0 0 1px rgba(199, 219, 229, 0.14);
  animation: audience-focus-frame 3.4s ease-in-out infinite;
}

.visual-focus span:nth-child(2),
.visual-focus span:nth-child(3) {
  right: 22px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  background-size: 180% 100%;
  transform-origin: left center;
  animation: audience-focus-line 2.6s ease-in-out infinite;
}

.visual-focus span:nth-child(2) {
  top: 40px;
  width: 70px;
}

.visual-focus span:nth-child(3) {
  top: 64px;
  width: 48px;
  background: rgba(199, 219, 229, 0.72);
  animation-delay: 0.46s;
}

.visual-scale span {
  bottom: 22px;
  width: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--sun), var(--sea));
  transform-origin: 50% 100%;
  animation: audience-bar-grow 2.7s ease-in-out infinite;
}

.visual-scale span:first-child {
  left: 34px;
  height: 42px;
}

.visual-scale span:nth-child(2) {
  left: 78px;
  height: 66px;
  animation-delay: 0.2s;
}

.visual-scale span:nth-child(3) {
  left: 122px;
  height: 88px;
  animation-delay: 0.4s;
}

.visual-structure span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow:
    0 0 0 8px rgba(169, 130, 58, 0.12),
    0 18px 36px rgba(0, 0, 0, 0.22);
  animation: audience-dot-pulse 2.8s ease-in-out infinite;
}

.visual-structure span::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(169, 130, 58, 0.4);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.72);
  animation: audience-dot-ring 2.8s ease-out infinite;
}

.visual-structure span:first-child::before,
.visual-structure span:first-child::after {
  position: absolute;
  top: 17px;
  right: auto;
  bottom: auto;
  left: 17px;
  width: 112px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(169, 130, 58, 0), rgba(169, 130, 58, 0.78), rgba(73, 184, 255, 0));
  content: "";
  opacity: 0.62;
  transform-origin: left center;
  animation: audience-connector-flow 2.8s ease-in-out infinite;
}

.visual-structure span:first-child {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.visual-structure span:first-child::before {
  transform: rotate(143deg) scaleX(0.72);
}

.visual-structure span:first-child::after {
  transform: rotate(37deg) scaleX(0.72);
  animation-delay: 0.34s;
}

.visual-structure span:nth-child(2) {
  left: 30px;
  bottom: 24px;
  animation-delay: 0.28s;
}

.visual-structure span:nth-child(2)::after {
  animation-delay: 0.28s;
}

.visual-structure span:nth-child(3) {
  right: 30px;
  bottom: 24px;
  animation-delay: 0.56s;
}

.visual-structure span:nth-child(3)::after {
  animation-delay: 0.56s;
}

.audience-card h3 {
  margin: 0;
  font-size: clamp(1.28rem, 1.9vw, 1.62rem);
  line-height: 1.1;
}

.audience-card p:not(.audience-number) {
  margin: 0;
  color: rgba(199, 219, 229, 0.74);
}

.audience-card ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 16px;
  color: rgba(199, 219, 229, 0.9);
  font-size: 0.92rem;
  font-weight: 720;
}

.audience-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  content: "";
}

@keyframes audience-visual-current {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 68px 0, 0 68px; }
}

@keyframes audience-launch-arrow {
  0%, 100% {
    filter: drop-shadow(0 0 0 rgba(169, 130, 58, 0));
    transform: translateY(0) scaleY(0.94);
  }
  45% {
    filter: drop-shadow(0 0 16px rgba(169, 130, 58, 0.46));
    transform: translateY(-10px) scaleY(1.08);
  }
}

@keyframes audience-launch-foundation {
  0%, 100% { transform: translateX(0); opacity: 0.72; }
  50% { transform: translateX(7px); opacity: 1; }
}

@keyframes audience-line-pulse {
  0%, 100% { opacity: 0.55; transform: scaleX(0.68); }
  50% { opacity: 1; transform: scaleX(1.18); }
}

@keyframes audience-focus-frame {
  0%, 100% {
    box-shadow:
      inset 0 0 0 1px rgba(199, 219, 229, 0.14),
      0 0 0 rgba(73, 184, 255, 0);
    transform: scale(1);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(199, 219, 229, 0.24),
      0 0 24px rgba(73, 184, 255, 0.16);
    transform: scale(1.025);
  }
}

@keyframes audience-focus-line {
  0%, 100% {
    background-position: 0 0;
    opacity: 0.72;
    transform: scaleX(0.62);
  }
  50% {
    background-position: 100% 0;
    opacity: 1;
    transform: scaleX(1.08);
  }
}

@keyframes audience-bar-grow {
  0%, 100% {
    filter: saturate(0.9);
    transform: scaleY(0.48);
  }
  50% {
    filter: saturate(1.18) drop-shadow(0 0 12px rgba(169, 130, 58, 0.3));
    transform: scaleY(1);
  }
}

@keyframes audience-dot-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 8px rgba(169, 130, 58, 0.1),
      0 18px 36px rgba(0, 0, 0, 0.22);
    filter: brightness(0.94);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(169, 130, 58, 0.18),
      0 0 22px rgba(169, 130, 58, 0.35),
      0 18px 36px rgba(0, 0, 0, 0.22);
    filter: brightness(1.14);
  }
}

@keyframes audience-dot-ring {
  0% { opacity: 0.5; transform: scale(0.72); }
  100% { opacity: 0; transform: scale(1.52); }
}

@keyframes audience-connector-flow {
  0%, 100% { opacity: 0.32; filter: blur(0); }
  50% { opacity: 0.9; filter: blur(0.2px) drop-shadow(0 0 8px rgba(169, 130, 58, 0.34)); }
}

.services-section {
  --ghost-logo-size: clamp(150px, 13vw, 210px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 6%, rgba(7, 92, 152, 0.34), transparent 36%),
    radial-gradient(circle at 88% 22%, rgba(169, 130, 58, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(7, 22, 37, 0.96), rgba(4, 13, 23, 0.98)),
    var(--deep);
}

.services-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png");
  background-position:
    8% 16%,
    88% 8%,
    24% 58%,
    73% 72%,
    96% 48%;
  background-repeat: no-repeat;
  background-size:
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto;
  opacity: 0.07;
  filter: saturate(0.82) contrast(1.08);
  mix-blend-mode: screen;
  content: "";
  pointer-events: none;
}

.services-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(199, 219, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.2));
  background-size: 82px 82px, 82px 82px, auto;
  content: "";
  opacity: 0.36;
  pointer-events: none;
}

.services-section .section-inner {
  position: relative;
  z-index: 1;
}

.services-section .section-kicker {
  color: var(--sun);
}

.services-section .section-heading h2 {
  color: var(--white);
}

.services-section .section-heading > p {
  color: rgba(199, 219, 229, 0.76);
}

.solutions-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) repeat(2, minmax(0, 0.82fr));
  grid-auto-rows: minmax(168px, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}

.solutions-photo {
  position: relative;
  min-height: 188px;
  margin: 0;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.solutions-photo-main {
  grid-row: span 2;
  min-height: clamp(340px, 36vw, 480px);
}

.solutions-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 22, 37, 0.76), rgba(7, 22, 37, 0.04) 58%),
    linear-gradient(90deg, rgba(7, 22, 37, 0.3), rgba(7, 22, 37, 0.02));
  content: "";
  pointer-events: none;
}

.solutions-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.solutions-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 32px);
  padding: 7px 10px;
  border: 1px solid rgba(169, 130, 58, 0.42);
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.76rem;
  font-weight: 900;
}

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

.service-card {
  --service-photo: url("assets/solution-launch-colour.jpg");
  position: relative;
  display: grid;
  grid-column: span 2;
  min-height: 334px;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.94), rgba(7, 22, 37, 0.76) 48%, rgba(7, 22, 37, 0.38)),
    linear-gradient(180deg, rgba(7, 22, 37, 0.28), rgba(7, 22, 37, 0.92)),
    var(--service-photo);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 52px rgba(7, 22, 37, 0.24);
  overflow: hidden;
}

.service-launch {
  --service-photo: url("assets/solution-launch-colour.jpg");
}

.service-operations {
  --service-photo: url("assets/solution-operations-colour.jpg");
}

.service-people {
  --service-photo: url("assets/solution-people-colour.jpg");
}

.service-digital {
  --service-photo: url("assets/solution-digital-colour.jpg");
}

.service-accommodation {
  --service-photo: url("assets/solution-accommodation-colour.jpg");
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(169, 130, 58, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(7, 92, 152, 0.28), transparent 55%);
  content: "";
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(199, 219, 229, 0.28),
    0 14px 32px rgba(4, 13, 23, 0.28);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.accent-copper .service-icon {
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  color: var(--deep);
}

.accent-sea .service-icon {
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  color: var(--deep);
}

.accent-moss .service-icon {
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  color: var(--deep);
}

.accent-gold .service-icon {
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  color: var(--deep);
}

.accent-ink .service-icon {
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  color: var(--deep);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.service-icon::before {
  inset: -34%;
  z-index: 0;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 58deg,
      rgba(199, 219, 229, 0.9) 68deg,
      rgba(169, 130, 58, 0.82) 82deg,
      transparent 100deg 360deg
    );
  opacity: 0.36;
  animation: serviceIconRadar 6s linear infinite;
}

.service-icon::after {
  inset: 7px;
  z-index: 0;
  background:
    radial-gradient(circle at 38% 26%, rgba(255, 255, 255, 0.42), transparent 24%),
    radial-gradient(circle at 58% 62%, rgba(199, 219, 229, 0.18), transparent 56%);
  opacity: 0.72;
}

.service-icon-svg {
  position: relative;
  z-index: 1;
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  filter: drop-shadow(0 2px 8px rgba(199, 219, 229, 0.36));
}

.service-icon-svg * {
  transform-box: fill-box;
  transform-origin: center;
}

.service-icon-dot {
  fill: currentColor;
  stroke: rgba(199, 219, 229, 0.74);
  stroke-width: 1.4;
  animation: serviceIconDotPulse 2.8s ease-in-out infinite;
}

.service-icon-dot-delay {
  animation-delay: 0.45s;
}

.service-icon-dot-late {
  animation-delay: 0.9s;
}

.service-icon-route {
  stroke-dasharray: 10 8;
  animation: serviceIconRouteFlow 3.2s linear infinite;
}

.service-icon-line {
  stroke-dasharray: 80;
  stroke-dashoffset: 0;
  animation: serviceIconLineDraw 4.8s ease-in-out infinite;
}

.service-icon-launch .service-icon-svg {
  animation: serviceIconLaunchFloat 3.4s ease-in-out infinite;
}

.service-icon-launch .service-icon-flame {
  animation: serviceIconFlame 1.15s ease-in-out infinite alternate;
}

.service-icon-launch .service-icon-flame-right {
  animation-delay: 0.18s;
}

.service-icon-operations .service-icon-check {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: serviceIconCheck 3s ease-in-out infinite;
}

.service-icon-people .service-icon-route {
  animation-duration: 3.6s;
}

.service-icon-digital .service-icon-screen {
  animation: serviceIconScreenGlow 3.4s ease-in-out infinite;
}

.service-icon-digital .service-icon-cursor {
  animation: serviceIconCursorMove 3.2s ease-in-out infinite;
}

.service-icon-digital .service-icon-spark {
  animation: serviceIconSpark 1.8s ease-in-out infinite;
}

.service-icon-accommodation .service-icon-home {
  animation: serviceIconHomeSettle 3.5s ease-in-out infinite;
}

.service-icon-accommodation .service-icon-key {
  animation: serviceIconKeyTurn 3.5s ease-in-out infinite;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    inset 0 0 0 1px rgba(199, 219, 229, 0.42),
    0 18px 38px rgba(4, 13, 23, 0.42),
    0 0 32px rgba(169, 130, 58, 0.26);
  filter: saturate(1.08);
}

.service-card:hover .service-icon::before,
.service-card:focus-within .service-icon::before {
  opacity: 0.6;
  animation-duration: 2.6s;
}

.service-card:hover .service-icon-svg,
.service-card:focus-within .service-icon-svg {
  filter:
    drop-shadow(0 2px 8px rgba(199, 219, 229, 0.48))
    drop-shadow(0 0 10px rgba(169, 130, 58, 0.28));
}

@keyframes serviceIconRadar {
  to {
    transform: rotate(1turn);
  }
}

@keyframes serviceIconDotPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes serviceIconRouteFlow {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes serviceIconLineDraw {
  0%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.88;
  }

  45% {
    stroke-dashoffset: 28;
    opacity: 1;
  }
}

@keyframes serviceIconLaunchFloat {
  0%,
  100% {
    transform: translateY(1px) rotate(-1deg);
  }

  50% {
    transform: translateY(-3px) rotate(1deg);
  }
}

@keyframes serviceIconFlame {
  0% {
    transform: translateY(-1px) scale(0.92);
    opacity: 0.66;
  }

  100% {
    transform: translateY(2px) scale(1.08);
    opacity: 1;
  }
}

@keyframes serviceIconCheck {
  0%,
  24% {
    stroke-dashoffset: 34;
    opacity: 0.4;
  }

  48%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes serviceIconScreenGlow {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(73, 184, 255, 0.36));
  }
}

@keyframes serviceIconCursorMove {
  0%,
  100% {
    transform: translate(-1px, 1px);
  }

  50% {
    transform: translate(3px, -3px);
  }
}

@keyframes serviceIconSpark {
  0%,
  100% {
    transform: scale(0.84);
    opacity: 0.56;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes serviceIconHomeSettle {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes serviceIconKeyTurn {
  0%,
  100% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(9deg);
  }
}

.price {
  color: var(--sun);
  font-size: 0.87rem;
  font-weight: 800;
}

.service-card h3,
.support-item h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.1;
}

.service-card p,
.support-item p {
  margin: 0;
  color: var(--muted);
}

.service-card p {
  color: rgba(199, 219, 229, 0.78);
}

.service-card h3,
.service-card p,
.service-card .price,
.solution-list li,
.service-card a {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  position: relative;
  padding-left: 15px;
  color: rgba(199, 219, 229, 0.9);
  font-size: 0.9rem;
  font-weight: 720;
}

.solution-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  content: "";
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  align-self: end;
  padding: 9px 12px;
  border: 1px solid rgba(169, 130, 58, 0.42);
  border-radius: 999px;
  color: var(--sun);
  background: rgba(7, 22, 37, 0.48);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  font-weight: 850;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-card a:hover,
.service-card a:focus-visible {
  border-color: rgba(169, 130, 58, 0.78);
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  transform: translateY(-2px);
}

.solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(169, 130, 58, 0.22);
  border-radius: var(--radius);
  background: rgba(199, 219, 229, 0.07);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.solutions-cta h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.solutions-cta p {
  margin: 8px 0 0;
  color: rgba(199, 219, 229, 0.72);
}

.local-seo-section {
  --ghost-logo-size: clamp(150px, 13vw, 210px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  border-top: 1px solid rgba(169, 130, 58, 0.14);
  background:
    radial-gradient(circle at 82% 10%, rgba(7, 92, 152, 0.34), transparent 35%),
    radial-gradient(circle at 18% 58%, rgba(169, 130, 58, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(4, 13, 23, 0.98), rgba(7, 22, 37, 0.96)),
    var(--deep);
}

.local-seo-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png"),
    url("assets/aog-logo-transparent.png");
  background-position:
    14% 10%,
    82% 22%,
    6% 78%,
    52% 66%,
    94% 86%;
  background-repeat: no-repeat;
  background-size:
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto,
    var(--ghost-logo-size) auto;
  opacity: 0.068;
  filter: saturate(0.82) contrast(1.08);
  mix-blend-mode: screen;
  content: "";
  pointer-events: none;
}

.local-seo-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(199, 219, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.02), transparent 44%, rgba(0, 0, 0, 0.18));
  background-size: 82px 82px, 82px 82px, auto;
  content: "";
  opacity: 0.32;
  pointer-events: none;
}

.local-seo-section .section-inner {
  position: relative;
  z-index: 1;
}

.local-seo-section .section-kicker {
  color: var(--sun);
}

.local-seo-section .section-heading h2 {
  color: var(--white);
}

.local-seo-section .section-heading > p {
  color: rgba(199, 219, 229, 0.76);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.local-seo-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 22px 54px 22px 22px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(46, 138, 196, 0.2), transparent 36%),
    radial-gradient(circle at 84% 86%, rgba(169, 130, 58, 0.1), transparent 34%),
    rgba(199, 219, 229, 0.07);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.local-seo-card > * {
  position: relative;
  z-index: 1;
}

.local-seo-card::before {
  position: absolute;
  inset: auto -20% 0;
  height: 56%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 35% 75%, rgba(46, 138, 196, 0.16), transparent 58%),
    linear-gradient(130deg, transparent 0 24%, rgba(199, 219, 229, 0.06) 25% 28%, transparent 29% 100%);
  content: "";
  opacity: 0.72;
  transform: translateY(18%);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.local-seo-card:hover::before,
.local-seo-card:focus-visible::before {
  opacity: 1;
  transform: translateY(10%);
}

.local-seo-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(169, 130, 58, 0.46);
  border-radius: 18px;
  color: rgba(218, 180, 95, 0.96);
  background:
    radial-gradient(circle at 28% 20%, rgba(199, 219, 229, 0.24), transparent 34%),
    linear-gradient(145deg, rgba(8, 44, 72, 0.88), rgba(4, 13, 23, 0.82));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.26),
    inset 0 0 22px rgba(46, 138, 196, 0.18);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.local-seo-icon::before {
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(169, 130, 58, 0.2), transparent 66%);
  content: "";
  animation: localSeoIconGlow 3.8s ease-in-out infinite;
  pointer-events: none;
}

.local-seo-icon::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: inherit;
  content: "";
  opacity: 0.66;
  transform: rotate(8deg);
  pointer-events: none;
}

.local-seo-icon svg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 8px rgba(169, 130, 58, 0.22));
}

.local-seo-icon svg * {
  transform-box: fill-box;
  transform-origin: center;
}

.local-seo-icon .icon-dot {
  fill: currentColor;
  stroke: rgba(199, 219, 229, 0.42);
  animation: localSeoPulse 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.local-seo-icon .icon-line,
.local-seo-icon .icon-bars,
.local-seo-icon .icon-wave {
  stroke: rgba(199, 219, 229, 0.92);
}

.local-seo-icon .icon-line,
.local-seo-icon .icon-bars,
.local-seo-icon .icon-scan {
  stroke-dasharray: 44;
  stroke-dashoffset: 44;
  animation: localSeoDraw 4.4s ease-in-out infinite;
}

.local-seo-icon .icon-check,
.local-seo-icon .icon-spark,
.local-seo-icon .icon-flame {
  animation: localSeoPop 3.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.local-seo-icon-web .icon-cursor {
  animation: localSeoCursor 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.local-seo-icon-people .icon-dot:nth-of-type(2) {
  animation-delay: 0.25s;
}

.local-seo-icon-people .icon-dot:nth-of-type(3) {
  animation-delay: 0.5s;
}

.local-seo-icon-people .icon-dot:nth-of-type(4) {
  animation-delay: 0.75s;
}

.local-seo-icon-home .icon-key {
  animation: localSeoKey 3.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.local-seo-icon-admin .icon-scan {
  stroke: rgba(46, 138, 196, 0.96);
  animation: localSeoScan 2.8s ease-in-out infinite;
}

.local-seo-icon-virtual .icon-wave,
.local-seo-icon-it .icon-wave {
  animation: localSeoWave 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.local-seo-icon-virtual .icon-wave:nth-of-type(2) {
  animation-delay: 0.22s;
}

.local-seo-icon-virtual .icon-wave:nth-of-type(3) {
  animation-delay: 0.44s;
}

.local-seo-icon-launch svg {
  animation: localSeoLift 3.6s ease-in-out infinite;
}

.local-seo-icon-it .icon-radar {
  stroke: rgba(169, 130, 58, 0.98);
  animation: localSeoRadar 3s linear infinite;
  transform-box: view-box;
  transform-origin: 32px 32px;
}

.local-seo-icon-ops .icon-line {
  animation: localSeoOpsRoute 3.8s ease-in-out infinite;
}

.local-seo-icon-ops .icon-check {
  animation: localSeoCheckResolve 3.8s ease-in-out infinite;
}

.local-seo-icon-web .icon-frame {
  animation: localSeoScreenGlow 4s ease-in-out infinite;
}

.local-seo-icon-web .icon-bars {
  animation: localSeoTyping 3.2s ease-in-out infinite;
}

.local-seo-icon-people .icon-line {
  animation: localSeoNetworkFlow 3.6s ease-in-out infinite;
}

.local-seo-icon-home .icon-home {
  animation: localSeoHomeSettle 4.2s ease-in-out infinite;
}

.local-seo-icon-admin .icon-frame {
  animation: localSeoDocumentLift 4s ease-in-out infinite;
}

.local-seo-icon-launch .icon-flame {
  animation: localSeoFlamePulse 1.8s ease-in-out infinite;
}

.local-seo-icon-it::before {
  animation: localSeoRadarPulse 2.8s ease-out infinite;
}

.local-seo-card:hover .local-seo-icon,
.local-seo-card:focus-visible .local-seo-icon {
  border-color: rgba(218, 180, 95, 0.82);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(169, 130, 58, 0.2),
    inset 0 0 26px rgba(46, 138, 196, 0.26);
  transform: translateY(-2px);
}

@keyframes localSeoIconGlow {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.88);
  }

  50% {
    opacity: 0.98;
    transform: scale(1.08);
  }
}

@keyframes localSeoPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes localSeoDraw {
  0% {
    stroke-dashoffset: 44;
    opacity: 0.42;
  }

  42%,
  78% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -44;
    opacity: 0.5;
  }
}

@keyframes localSeoPop {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
  }

  45%,
  64% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes localSeoCursor {
  0%,
  100% {
    transform: translate(-2px, -1px);
  }

  50% {
    transform: translate(3px, 2px);
  }
}

@keyframes localSeoKey {
  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(8deg);
  }
}

@keyframes localSeoScan {
  0% {
    opacity: 0;
    transform: translateY(-9px);
  }

  42%,
  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes localSeoWave {
  0%,
  100% {
    opacity: 0.44;
    transform: scale(0.92);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes localSeoLift {
  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes localSeoRadar {
  to {
    transform: rotate(360deg);
  }
}

@keyframes localSeoOpsRoute {
  0% {
    stroke-dashoffset: 44;
    opacity: 0.46;
  }

  38%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -44;
    opacity: 0.58;
  }
}

@keyframes localSeoCheckResolve {
  0%,
  36% {
    opacity: 0.42;
    transform: scale(0.82);
  }

  54%,
  78% {
    opacity: 1;
    transform: scale(1.12);
  }

  100% {
    opacity: 0.74;
    transform: scale(0.96);
  }
}

@keyframes localSeoScreenGlow {
  0%,
  100% {
    stroke: rgba(169, 130, 58, 0.86);
    filter: drop-shadow(0 0 0 rgba(73, 184, 255, 0));
  }

  50% {
    stroke: rgba(130, 219, 255, 0.96);
    filter: drop-shadow(0 0 7px rgba(73, 184, 255, 0.46));
  }
}

@keyframes localSeoTyping {
  0% {
    stroke-dashoffset: 44;
    opacity: 0.44;
  }

  34%,
  74% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -44;
    opacity: 0.52;
  }
}

@keyframes localSeoNetworkFlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.94);
  }

  48% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes localSeoHomeSettle {
  0%,
  100% {
    transform: translateY(1px);
    filter: drop-shadow(0 0 0 rgba(169, 130, 58, 0));
  }

  50% {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 7px rgba(169, 130, 58, 0.42));
  }
}

@keyframes localSeoDocumentLift {
  0%,
  100% {
    transform: translateY(1px);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes localSeoFlamePulse {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(1px) scaleY(0.9);
  }

  50% {
    opacity: 1;
    transform: translateY(4px) scaleY(1.16);
  }
}

@keyframes localSeoRadarPulse {
  0% {
    opacity: 0.94;
    transform: scale(0.56);
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

.local-seo-card::after,
.contact-actions a::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: var(--sun);
  content: "";
  opacity: 0.9;
  transform: rotate(45deg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.local-seo-card:hover,
.local-seo-card:focus-visible {
  border-color: rgba(169, 130, 58, 0.42);
  background: rgba(199, 219, 229, 0.1);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.local-seo-card:hover::after,
.local-seo-card:focus-visible::after,
.contact-actions a:hover::after,
.contact-actions a:focus-visible::after {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.local-seo-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-seo-card strong {
  color: var(--white);
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.08;
}

.local-seo-card p {
  margin: 0;
  color: rgba(199, 219, 229, 0.72);
}

.seo-page-hero {
  position: relative;
  min-height: 72svh;
  padding: clamp(120px, 16vw, 170px) clamp(18px, 4vw, 54px) clamp(64px, 8vw, 96px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.94), rgba(7, 22, 37, 0.62)),
    url("assets/inquiry-lerwick-office-aog.jpg");
  background-position: center;
  background-size: cover;
}

.seo-page-hero .section-inner {
  display: grid;
  gap: 24px;
  max-width: 780px;
  margin-inline: 0 auto;
}

.seo-page-hero .section-kicker {
  color: var(--sun);
}

.seo-page-hero h1 {
  max-width: 12ch;
  color: var(--white);
}

.seo-page-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(199, 219, 229, 0.8);
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
}

.seo-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.seo-page-copy {
  display: grid;
  gap: 22px;
}

.seo-page-copy h2,
.seo-page-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.seo-page-copy p,
.seo-page-card p {
  margin: 0;
  color: var(--muted);
}

.seo-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-service-list li {
  position: relative;
  padding: 14px 14px 14px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  font-weight: 780;
}

.seo-service-list li::before {
  position: absolute;
  top: 1.5em;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.seo-page-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(7, 22, 37, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  box-shadow: 0 18px 52px rgba(7, 22, 37, 0.09);
}

.seo-page-links {
  display: grid;
  gap: 9px;
}

.seo-page-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-weight: 820;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.seo-page-links a:hover,
.seo-page-links a:focus-visible {
  border-color: rgba(189, 138, 46, 0.42);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  box-shadow: 0 12px 30px rgba(7, 22, 37, 0.1);
  transform: translateY(-2px);
}

.seo-page-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.process-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(7, 22, 37, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  box-shadow: 0 14px 34px rgba(7, 22, 37, 0.08);
}

.process-grid span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid h3 {
  margin: 0;
  font-size: 1.02rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(169, 130, 58, 0.12), transparent 32%),
    radial-gradient(circle at 88% 62%, rgba(7, 92, 152, 0.3), transparent 36%),
    linear-gradient(180deg, rgba(4, 13, 23, 0.98), rgba(6, 20, 33, 0.96)),
    var(--deep);
}

.trust-section::before {
  position: absolute;
  inset: 0;
  background-image:
    url("assets/aog-logo-transparent.png"),
    url("assets/solution-digital-colour.jpg");
  background-position:
    88% 12%,
    left 58%;
  background-repeat: no-repeat;
  background-size:
    clamp(190px, 17vw, 290px) auto,
    clamp(420px, 52vw, 760px) auto;
  content: "";
  filter: grayscale(0.25) saturate(0.76);
  opacity: 0.09;
  pointer-events: none;
}

.trust-section .section-inner {
  position: relative;
  z-index: 1;
}

.trust-section .section-kicker {
  color: var(--sun);
}

.trust-section .section-heading h2 {
  color: var(--white);
}

.trust-section .section-heading > p {
  color: rgba(199, 219, 229, 0.76);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(169, 130, 58, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(199, 219, 229, 0.1), rgba(7, 92, 152, 0.08));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.trust-card:hover,
.trust-card:focus-within {
  border-color: rgba(169, 130, 58, 0.42);
  box-shadow:
    0 22px 62px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(7, 92, 152, 0.14);
  transform: translateY(-3px);
}

.trust-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(169, 130, 58, 0.34);
  border-radius: 50%;
  color: var(--deep);
  background:
    radial-gradient(circle at 32% 22%, rgba(199, 219, 229, 0.36), transparent 32%),
    linear-gradient(135deg, rgba(169, 130, 58, 0.88), rgba(118, 88, 42, 0.76));
  box-shadow:
    inset 0 0 0 1px rgba(7, 22, 37, 0.12),
    0 0 24px rgba(169, 130, 58, 0.18);
}

.trust-icon::after {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(199, 219, 229, 0.08);
  border-radius: inherit;
  content: "";
}

.trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.trust-icon-route circle,
.trust-icon-remote circle {
  fill: currentColor;
  stroke: none;
}

.trust-icon-scale path:nth-child(2),
.trust-icon-scale path:nth-child(3),
.trust-icon-scale path:nth-child(4) {
  stroke-width: 3.2;
}

.trust-card:hover .trust-icon,
.trust-card:focus-within .trust-icon {
  box-shadow:
    inset 0 0 0 1px rgba(7, 22, 37, 0.12),
    0 0 32px rgba(169, 130, 58, 0.3),
    0 0 20px rgba(73, 184, 255, 0.12);
}

.trust-card h3 {
  color: var(--white);
  font-size: 1.24rem;
}

.trust-card p {
  margin: 0;
  color: rgba(199, 219, 229, 0.74);
}

.trust-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.trust-proof-strip span {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(169, 130, 58, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(73, 184, 255, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(169, 130, 58, 0.11), rgba(7, 92, 152, 0.1));
  box-shadow: inset 0 1px 0 rgba(199, 219, 229, 0.06);
}

.trust-proof-strip span::before {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(169, 130, 58, 0.72), rgba(73, 184, 255, 0.42));
  content: "";
}

.trust-proof-strip strong {
  color: rgba(231, 246, 255, 0.95);
  font-size: 0.95rem;
}

.trust-proof-strip small {
  color: rgba(199, 219, 229, 0.72);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.trust-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  margin-top: 16px;
}

.trust-situations {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(169, 130, 58, 0.2);
  border-radius: var(--radius);
  background: rgba(169, 130, 58, 0.08);
}

.trust-situations h3 {
  color: var(--white);
}

.trust-situations ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-situations li {
  position: relative;
  padding-left: 18px;
  color: rgba(199, 219, 229, 0.78);
  font-weight: 740;
}

.trust-situations li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  content: "";
}

.process-grid-dark {
  margin-top: 0;
}

.process-grid-dark article {
  border-color: rgba(199, 219, 229, 0.14);
  color: var(--white);
  background: rgba(199, 219, 229, 0.07);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.process-grid-dark span {
  color: var(--sun);
}

.process-grid-dark h3 {
  color: var(--white);
}

.process-grid-dark p {
  color: rgba(199, 219, 229, 0.72);
}

.policy-hero,
.thank-section {
  min-height: 62svh;
  padding: clamp(118px, 16vw, 170px) clamp(18px, 4vw, 54px) clamp(60px, 8vw, 92px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.7)),
    url("assets/lerwick-from-bressay-sound.jpg");
  background-position: center;
  background-size: cover;
}

.policy-hero .section-inner,
.thank-card {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin-inline: 0 auto;
}

.policy-hero h1,
.thank-card h1 {
  color: var(--white);
}

.policy-hero p,
.thank-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(199, 219, 229, 0.8);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.policy-updated {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(169, 130, 58, 0.28);
  border-radius: 999px;
  color: var(--sun) !important;
  background: rgba(199, 219, 229, 0.08);
  font-size: 0.86rem !important;
  font-weight: 850;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content h2 {
  margin-top: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.policy-content p {
  margin: 0;
  color: var(--muted);
}

.policy-content a {
  color: var(--ocean);
  font-weight: 800;
  text-underline-offset: 3px;
}

.policy-card {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(7, 22, 37, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  box-shadow: 0 18px 52px rgba(7, 22, 37, 0.09);
}

.policy-card h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.policy-card a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-weight: 820;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.policy-card a::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--copper);
  border-right: 2px solid var(--copper);
  content: "";
  transform: rotate(45deg);
}

.policy-card a:hover,
.policy-card a:focus-visible {
  border-color: rgba(189, 138, 46, 0.42);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  box-shadow: 0 12px 30px rgba(7, 22, 37, 0.1);
  transform: translateY(-2px);
}

.thank-section {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.thank-card {
  max-width: 780px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(169, 130, 58, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 22, 37, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.support-section {
  background:
    linear-gradient(135deg, rgba(7, 92, 152, 0.22), rgba(189, 138, 46, 0.08)),
    var(--deep);
  color: var(--white);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.support-copy {
  position: sticky;
  top: 112px;
}

.support-copy .section-kicker {
  color: var(--sun);
}

.support-copy p {
  margin-top: 24px;
  color: rgba(199, 219, 229, 0.74);
}

.support-list {
  display: grid;
  gap: 14px;
}

.support-item {
  --support-photo: url("assets/solution-operations-colour.jpg");
  position: relative;
  display: grid;
  grid-template-columns: 48px 116px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(199, 219, 229, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.92), rgba(7, 22, 37, 0.74)),
    rgba(199, 219, 229, 0.055);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.support-item::before {
  position: absolute;
  inset: 0 0 0 38%;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.34)),
    var(--support-photo);
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(0.32) saturate(0.78) contrast(1.12);
  opacity: 0.22;
  pointer-events: none;
}

.support-item::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(199, 219, 229, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.support-item > * {
  position: relative;
  z-index: 1;
}

.support-item:last-child {
  border-bottom: 1px solid rgba(199, 219, 229, 0.14);
}

.support-item > span {
  color: var(--sun);
  font-weight: 850;
}

.support-item > span,
.process-grid article > span,
.candidate-card > span,
.network-steps article > span {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(199, 219, 229, 0.24);
  border-radius: 50%;
  color: rgba(204, 176, 111, 0.96);
  background:
    radial-gradient(circle at 50% 50%, rgba(131, 216, 255, 0.12), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(7, 22, 37, 0.94) 0 42%, rgba(7, 92, 152, 0.58) 68%, rgba(4, 13, 23, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(169, 130, 58, 0.2),
    inset 0 0 0 8px rgba(131, 216, 255, 0.035),
    0 12px 26px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(169, 130, 58, 0.12);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.support-item > span::before,
.process-grid article > span::before,
.candidate-card > span::before,
.network-steps article > span::before {
  position: absolute;
  inset: -42%;
  z-index: -1;
  background:
    conic-gradient(
      from -28deg,
      transparent 0 52deg,
      rgba(131, 216, 255, 0.78) 64deg,
      rgba(204, 176, 111, 0.9) 78deg,
      transparent 96deg 360deg
    );
  content: "";
  opacity: 0.58;
  animation: aogMiniRadarSweep 5.2s linear infinite;
}

.support-item > span::after,
.process-grid article > span::after,
.candidate-card > span::after,
.network-steps article > span::after {
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(131, 216, 255, 0.28);
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(131, 216, 255, 0.18) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(131, 216, 255, 0.18) 50%, transparent calc(50% + 0.5px));
  box-shadow:
    0 0 0 7px rgba(131, 216, 255, 0.055),
    inset 0 0 14px rgba(131, 216, 255, 0.08);
  content: "";
}

.support-item:hover > span::before,
.support-item:focus-within > span::before,
.process-grid article:hover > span::before,
.process-grid article:focus-within > span::before,
.candidate-card:hover > span::before,
.candidate-card:focus-within > span::before,
.network-steps article:hover > span::before,
.network-steps article:focus-within > span::before {
  opacity: 0.86;
  animation-duration: 2.4s;
}

.support-item:hover > span,
.support-item:focus-within > span,
.process-grid article:hover > span,
.process-grid article:focus-within > span,
.candidate-card:hover > span,
.candidate-card:focus-within > span,
.network-steps article:hover > span,
.network-steps article:focus-within > span {
  box-shadow:
    inset 0 0 0 1px rgba(169, 130, 58, 0.28),
    inset 0 0 0 8px rgba(131, 216, 255, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 26px rgba(204, 176, 111, 0.22);
  animation: aogMiniRadarPulse 2.1s ease-in-out infinite;
}

@keyframes aogMiniRadarSweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes aogMiniRadarPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.support-visual {
  position: relative;
  height: 92px;
  border: 1px solid rgba(199, 219, 229, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.4), rgba(7, 92, 152, 0.22)),
    var(--support-photo);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(169, 130, 58, 0.08);
}

.support-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 22, 37, 0.72), rgba(7, 22, 37, 0.34)),
    linear-gradient(90deg, rgba(199, 219, 229, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.08) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  content: "";
  opacity: 0.82;
}

.support-visual::after {
  position: absolute;
  inset: 0;
  background: var(--support-photo);
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(0.45) saturate(0.62) contrast(1.12);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.support-visual i {
  position: absolute;
  z-index: 2;
  display: block;
  will-change: opacity, transform;
}

.support-item:hover .support-visual,
.support-item:focus-within .support-visual {
  border-color: rgba(169, 130, 58, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(169, 130, 58, 0.16),
    0 0 28px rgba(73, 184, 255, 0.12);
}

.support-item:hover .support-visual::after,
.support-item:focus-within .support-visual::after {
  opacity: 0.38;
}

.support-item-noise {
  --support-photo: url("assets/solution-operations-colour.jpg");
}

.support-item-infra {
  --support-photo: url("assets/solution-digital-colour.jpg");
}

.support-item-scale {
  --support-photo: url("assets/solution-people-colour.jpg");
}

.support-visual-noise i {
  right: 18px;
  left: 18px;
  height: 7px;
  border-radius: 999px;
  background: rgba(199, 219, 229, 0.76);
  box-shadow: 0 0 16px rgba(73, 184, 255, 0.08);
}

.support-visual-noise i:first-child {
  top: 24px;
  animation: support-noise-top 4.8s ease-in-out infinite;
}

.support-visual-noise i:nth-child(2) {
  top: 43px;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow: 0 0 20px rgba(169, 130, 58, 0.26);
  transform-origin: center;
  animation: support-noise-focus 4.8s ease-in-out infinite;
}

.support-visual-noise i:nth-child(3) {
  top: 62px;
  animation: support-noise-bottom 4.8s ease-in-out infinite;
}

.support-visual-infra i {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow: 0 0 0 7px rgba(169, 130, 58, 0.1);
  animation: support-infra-node 4.6s ease-in-out infinite;
}

.support-visual-infra i:first-child {
  left: 43px;
  top: 14px;
  animation-name: support-infra-hub;
}

.support-visual-infra i:nth-child(2) {
  left: 18px;
  bottom: 16px;
  animation-delay: 0.28s;
}

.support-visual-infra i:nth-child(3) {
  right: 18px;
  bottom: 16px;
  animation-delay: 0.56s;
}

.support-visual-scale i {
  bottom: 16px;
  width: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--sun), rgba(199, 219, 229, 0.7));
  box-shadow: 0 0 18px rgba(169, 130, 58, 0.18);
  transform-origin: bottom;
  animation: support-scale-grow 4.2s ease-in-out infinite;
}

.support-visual-scale i:first-child {
  left: 25px;
  height: 30px;
  animation-delay: 0s;
}

.support-visual-scale i:nth-child(2) {
  left: 50px;
  height: 48px;
  animation-delay: 0.24s;
}

.support-visual-scale i:nth-child(3) {
  left: 75px;
  height: 66px;
  animation-delay: 0.48s;
}

@keyframes support-noise-top {
  0%,
  100% {
    opacity: 0.58;
    transform: translateX(-8px) rotate(-9deg) scaleX(0.78);
  }

  45%,
  62% {
    opacity: 0.94;
    transform: translateX(7px) rotate(-2deg) scaleX(1);
  }
}

@keyframes support-noise-focus {
  0%,
  100% {
    transform: translateX(0) scaleX(0.72);
  }

  46%,
  64% {
    transform: translateX(0) scaleX(1.08);
  }
}

@keyframes support-noise-bottom {
  0%,
  100% {
    opacity: 0.54;
    transform: translateX(8px) rotate(9deg) scaleX(0.76);
  }

  45%,
  62% {
    opacity: 0.92;
    transform: translateX(-6px) rotate(2deg) scaleX(0.98);
  }
}

@keyframes support-infra-hub {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 7px rgba(169, 130, 58, 0.1);
  }

  48% {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
      0 0 0 10px rgba(169, 130, 58, 0.13),
      0 0 22px rgba(73, 184, 255, 0.16);
  }
}

@keyframes support-infra-node {
  0%,
  100% {
    transform: translateY(0) scale(0.94);
    box-shadow: 0 0 0 6px rgba(169, 130, 58, 0.08);
  }

  50% {
    transform: translateY(3px) scale(1.04);
    box-shadow:
      0 0 0 9px rgba(169, 130, 58, 0.12),
      0 0 18px rgba(73, 184, 255, 0.14);
  }
}

@keyframes support-scale-grow {
  0%,
  100% {
    opacity: 0.78;
    transform: scaleY(0.72);
  }

  42%,
  66% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

.support-item p {
  margin-top: 8px;
  color: rgba(199, 219, 229, 0.72);
}

.inquiry-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.76) 48%, rgba(7, 22, 37, 0.62)),
    linear-gradient(180deg, rgba(7, 22, 37, 0.28), rgba(7, 22, 37, 0.9)),
    url("assets/inquiry-lerwick-office-aog.jpg");
  background-position: center;
  background-size: cover;
}

.service-enquiry-section {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(110px, 13vw, 152px) clamp(54px, 7vw, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96), rgba(7, 22, 37, 0.76)),
    url("assets/inquiry-lerwick-office-aog.jpg") center / cover;
  isolation: isolate;
  overflow: hidden;
}

.service-enquiry-section::before,
.service-enquiry-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.service-enquiry-section::before {
  background:
    url("assets/aog-logo-transparent.png") 92% 18% / min(360px, 44vw) auto no-repeat,
    radial-gradient(circle at 82% 22%, rgba(169, 130, 58, 0.16), transparent 32%),
    radial-gradient(circle at 18% 80%, rgba(7, 126, 184, 0.2), transparent 34%);
  opacity: 0.48;
}

.service-enquiry-section::after {
  background:
    linear-gradient(90deg, rgba(199, 219, 229, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(199, 219, 229, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 22, 37, 0.12), rgba(7, 22, 37, 0.76));
  background-size: 42px 42px, 42px 42px, auto;
}

.service-enquiry-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.service-enquiry-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}

.service-enquiry-copy h1 {
  max-width: min(14ch, 100%);
  margin: 0;
  font-size: clamp(2.05rem, 4.1vw, 3.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.service-enquiry-copy h1,
.service-enquiry-panel strong,
.service-enquiry-panel span,
.service-enquiry-points li,
.service-enquiry-form label > span,
.service-enquiry-form button {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.service-enquiry-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(199, 219, 229, 0.8);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
}

.service-enquiry-panel {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 20px;
  border: 1px solid rgba(169, 130, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(7, 22, 37, 0.66);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-enquiry-panel span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-enquiry-panel strong {
  color: var(--white);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.12;
  text-wrap: balance;
}

.service-enquiry-panel p {
  font-size: 0.96rem;
}

.service-enquiry-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-enquiry-points li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(199, 219, 229, 0.86);
  font-weight: 760;
}

.service-enquiry-points li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 14px rgba(169, 130, 58, 0.38);
  content: "";
}

.service-enquiry-form {
  background:
    linear-gradient(135deg, rgba(199, 219, 229, 0.26), rgba(73, 184, 255, 0.12)),
    rgba(199, 219, 229, 0.1);
  backdrop-filter: blur(14px);
}

[data-service-kind="accommodation"] .service-enquiry-layout {
  grid-template-columns: minmax(340px, 0.74fr) minmax(360px, 1fr);
  gap: clamp(22px, 3vw, 42px);
}

[data-service-kind="accommodation"] .service-enquiry-copy h1 {
  max-width: min(18ch, 100%);
  font-size: clamp(1.95rem, 3.3vw, 3.1rem);
  line-height: 1.02;
}

[data-service-kind="accommodation"] .service-enquiry-panel strong {
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.16;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.inquiry-copy {
  padding-top: 12px;
}

.inquiry-copy .section-kicker {
  color: var(--sun);
}

.inquiry-copy p {
  margin-top: 22px;
  color: rgba(199, 219, 229, 0.76);
}

.inquiry-photo {
  position: relative;
  display: block;
  min-height: 250px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(169, 130, 58, 0.28);
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.inquiry-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 22, 37, 0.78), rgba(7, 22, 37, 0.04) 58%),
    linear-gradient(90deg, rgba(7, 22, 37, 0.22), transparent);
  content: "";
}

.inquiry-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.inquiry-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: rgba(199, 219, 229, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(199, 219, 229, 0.9);
  font-weight: 760;
}

.detail-list li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(199, 219, 229, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 8%, rgba(199, 219, 229, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(199, 219, 229, 0.26), rgba(73, 184, 255, 0.12)),
    rgba(199, 219, 229, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(199, 219, 229, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(231, 246, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(199, 219, 229, 0.36);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 16px;
  background: rgba(7, 22, 37, 0.74);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 126px;
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(199, 219, 229, 0.76);
  background:
    linear-gradient(135deg, rgba(7, 22, 37, 0.86), rgba(7, 92, 152, 0.28)),
    rgba(7, 22, 37, 0.78);
  box-shadow: 0 0 0 4px rgba(199, 219, 229, 0.14);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note[data-state="success"] {
  color: var(--gold);
}

.form-note[data-state="error"] {
  color: #ffd2d2;
}

.contact-section {
  position: relative;
  padding-block: clamp(54px, 7vw, 88px);
  color: var(--white);
  background: var(--deep);
  isolation: isolate;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  inset: 0;
  content: "";
}

.contact-section::before {
  z-index: -2;
  background-image: url("assets/lerwick-from-bressay-sound.jpg");
  background-position: center 46%;
  background-size: cover;
  filter: saturate(0.94) contrast(1.08) brightness(0.74);
  transform: scale(1.02);
}

.contact-section::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96) 0%, rgba(7, 22, 37, 0.76) 48%, rgba(7, 22, 37, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 22, 37, 0.64), rgba(7, 22, 37, 0.9));
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(24px, 4.8vw, 64px);
  align-items: stretch;
}

.contact-panel,
.contact-side {
  min-width: 0;
}

.contact-panel {
  display: grid;
  align-content: start;
}

.contact-panel .section-kicker {
  color: var(--sun);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(199, 219, 229, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.contact-location-card {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-left: 3px solid var(--sun);
  border-radius: var(--radius);
  background: rgba(7, 22, 37, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.location-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel address {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  color: rgba(199, 219, 229, 0.78);
  font-style: normal;
  font-weight: 680;
}

.contact-panel address span:first-child {
  color: var(--white);
  font-weight: 850;
}

.contact-photo {
  position: relative;
  min-height: clamp(390px, 42vw, 610px);
  margin: 24px 0 0;
  border: 1px solid rgba(199, 219, 229, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.contact-photo-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.04) contrast(1.08) brightness(0.92);
  transition: transform 220ms ease, filter 220ms ease;
}

.contact-photo:hover img,
.contact-photo:focus-within img {
  filter: saturate(1.16) contrast(1.08) brightness(0.98);
  transform: scale(1.025);
}

.contact-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 37, 0.02), rgba(7, 22, 37, 0.3)),
    linear-gradient(90deg, rgba(7, 22, 37, 0.2), transparent 45%);
  content: "";
  pointer-events: none;
}

.contact-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(169, 130, 58, 0.42);
  border-radius: 999px;
  color: var(--sun);
  background: rgba(7, 22, 37, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
}

.contact-photo figcaption a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}

.contact-photo figcaption a:hover,
.contact-photo figcaption a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 4px;
}

.contact-side {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-content: stretch;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-actions a {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: clamp(88px, 8vw, 104px);
  padding: 18px 48px 18px 18px;
  border: 1px solid rgba(199, 219, 229, 0.68);
  border-radius: var(--radius);
  color: #071625;
  background: rgba(199, 219, 229, 0.93);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  text-shadow: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  border-color: rgba(169, 130, 58, 0.78);
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.contact-action-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, #b99656, transparent 34%),
    var(--sun);
  box-shadow: inset 0 0 0 1px rgba(7, 22, 37, 0.12);
}

.contact-action-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-icon-email::before {
  position: absolute;
  width: 25px;
  height: 17px;
  border: 2px solid var(--deep);
  border-radius: 3px;
  content: "";
}

.contact-icon-email::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--deep);
  border-bottom: 2px solid var(--deep);
  content: "";
  transform: translateY(-5px) rotate(45deg);
}

.contact-icon-phone::before {
  content: none;
}

.contact-icon-phone::after {
  content: none;
}

.contact-icon-map::before {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--deep);
  content: "";
  transform: translateY(-2px) rotate(-45deg);
}

.contact-icon-map::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  content: "";
}

.contact-action-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-action-copy > span {
  color: #0a3357;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-actions strong {
  min-width: 0;
  color: #071625;
  text-align: left;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-actions a:hover .contact-action-copy > span,
.contact-actions a:focus-visible .contact-action-copy > span {
  color: var(--sun);
}

.contact-actions a:hover strong,
.contact-actions a:focus-visible strong {
  color: var(--white);
}

.contact-map-shell {
  display: grid;
  align-self: stretch;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(199, 219, 229, 0.2);
  border-radius: var(--radius);
  color: #071625;
  background: rgba(199, 219, 229, 0.93);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #071625;
}

.contact-map-caption span {
  color: #0a3357;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-map-caption strong {
  color: #071625;
  text-align: right;
  overflow-wrap: break-word;
  word-break: normal;
}

.contact-map {
  position: relative;
  display: grid;
  min-height: clamp(360px, 37vw, 520px);
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 12px 38px rgba(7, 22, 37, 0.08);
}

.contact-map iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 24px;
  color: var(--deep);
  text-align: center;
}

.map-fallback strong,
.map-fallback span {
  display: block;
}

.map-fallback span {
  color: #173a52;
  font-size: 0.92rem;
}

.map-pin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(169, 130, 58, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(199, 219, 229, 0.08);
  font-size: 0.94rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.map-pin-link:hover,
.map-pin-link:focus-visible {
  border-color: rgba(169, 130, 58, 0.78);
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  padding: 46px clamp(18px, 4vw, 54px) 58px;
  color: rgba(199, 219, 229, 0.72);
  background:
    radial-gradient(circle at 84% 18%, rgba(7, 92, 152, 0.22), transparent 34%),
    linear-gradient(180deg, #071625, #030a13);
  isolation: isolate;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  right: -8%;
  left: -8%;
  z-index: 0;
  height: 70px;
  background:
    linear-gradient(90deg, transparent, rgba(73, 184, 255, 0.18) 24%, rgba(169, 130, 58, 0.2) 52%, rgba(73, 184, 255, 0.15) 76%, transparent);
  content: "";
  filter:
    drop-shadow(0 0 10px rgba(73, 184, 255, 0.18))
    drop-shadow(0 0 12px rgba(169, 130, 58, 0.14));
  opacity: 0.88;
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%2080'%20preserveAspectRatio='none'%3E%3Cpath%20d='M-40%2040C100%2012%20220%2068%20360%2038S610%206%20760%2040S1030%2072%201240%2028'%20fill='none'%20stroke='black'%20stroke-width='30'%20stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201200%2080'%20preserveAspectRatio='none'%3E%3Cpath%20d='M-40%2040C100%2012%20220%2068%20360%2038S610%206%20760%2040S1030%2072%201240%2028'%20fill='none'%20stroke='black'%20stroke-width='30'%20stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.site-footer::before {
  top: -25px;
  animation: footer-wave-drift 11s ease-in-out infinite alternate;
}

.site-footer::after {
  bottom: -21px;
  background:
    linear-gradient(90deg, transparent, rgba(7, 92, 152, 0.3) 22%, rgba(185, 150, 86, 0.34) 52%, rgba(73, 184, 255, 0.2) 78%, transparent);
  opacity: 0.96;
  animation: footer-wave-drift 13s ease-in-out infinite alternate-reverse;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 340px);
  grid-template-areas:
    "brand radar"
    "copyright copyright";
  align-items: end;
  gap: 14px clamp(26px, 5vw, 58px);
}

.footer-brand {
  grid-area: brand;
  display: grid;
  gap: 10px;
  min-width: 220px;
  align-self: end;
}

.footer-credit {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(169, 130, 58, 0.24);
  border-radius: 999px;
  color: var(--sun);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  border-color: rgba(169, 130, 58, 0.62);
  color: var(--white);
  background: rgba(199, 219, 229, 0.08);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(169, 130, 58, 0.3);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 18%, rgba(199, 219, 229, 0.18), transparent 34%),
    rgba(199, 219, 229, 0.07);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: rgba(169, 130, 58, 0.78);
  color: var(--deep);
  background: linear-gradient(135deg, rgba(169, 130, 58, 0.82), rgba(118, 88, 42, 0.74));
  box-shadow: 0 0 24px rgba(169, 130, 58, 0.28);
  transform: translateY(-2px);
}

.footer-logo {
  width: 164px;
  max-width: 42vw;
  border-radius: var(--radius);
}

.footer-social-icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.footer-social-icon-facebook, .footer-social-icon-tiktok, .footer-social-icon-x { fill: currentColor; stroke: none; }
.footer-social-icon-instagram .footer-social-dot { fill: currentColor; stroke: none; }
.footer-radar {
  grid-area: radar;
  display: grid;
  gap: 8px;
  justify-items: center;
  justify-self: end;
  width: min(306px, 100%);
  max-width: 306px;
  color: rgba(199, 219, 229, 0.72);
  font-size: 0.78rem;
  text-align: center;
}

.footer-radar-screen {
  position: relative;
  width: clamp(230px, 22vw, 286px);
  max-width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(169, 130, 58, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(58, 177, 240, 0.2), transparent 62%),
    radial-gradient(circle at 52% 8%, rgba(169, 130, 58, 0.24), transparent 18%),
    #010711;
  box-shadow:
    inset 0 0 34px rgba(73, 184, 255, 0.24),
    inset 0 0 68px rgba(1, 7, 17, 0.82),
    0 0 28px rgba(73, 184, 255, 0.12),
    0 0 18px rgba(169, 130, 58, 0.12);
  isolation: isolate;
}

.footer-radar-screen::before,
.footer-radar-screen::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: "";
  pointer-events: none;
}

.footer-radar-screen::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(0, 0, 0, 0.18) 81%, rgba(0, 0, 0, 0.62) 100%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 21px, rgba(131, 216, 255, 0.07) 22px 23px);
  mix-blend-mode: screen;
}

.footer-radar-screen::after {
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(131, 216, 255, 0.16) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(131, 216, 255, 0.16) 50%, transparent 50.3%);
  opacity: 0.7;
}

.footer-radar-photo,
.footer-radar-map-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.footer-radar-photo {
  object-fit: contain;
  object-position: center;
  filter: hue-rotate(88deg) saturate(1.72) brightness(0.78) contrast(1.28);
}

.footer-radar-map-svg {
  filter: drop-shadow(0 0 8px rgba(73, 184, 255, 0.26));
}

.footer-radar-map-svg .radar-land {
  fill: rgba(14, 65, 98, 0.46);
  stroke: rgba(130, 219, 255, 0.72);
  stroke-width: 1.45;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.footer-radar-map-svg .radar-shore-glow {
  fill: none;
  stroke: rgba(73, 184, 255, 0.2);
  stroke-width: 4.6;
  stroke-linejoin: round;
  filter: blur(1.2px);
  vector-effect: non-scaling-stroke;
}

.footer-radar-map-svg .radar-island {
  fill: rgba(16, 78, 116, 0.5);
  stroke: rgba(130, 219, 255, 0.66);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.footer-radar-map-svg .radar-shetland {
  fill: rgba(169, 130, 58, 0.72);
  stroke: rgba(230, 196, 121, 0.98);
  stroke-width: 1.15;
  filter: drop-shadow(0 0 7px rgba(169, 130, 58, 0.92));
  vector-effect: non-scaling-stroke;
}

.footer-radar-map-svg .radar-sea-noise {
  fill: none;
  opacity: 0.38;
  stroke: rgba(73, 184, 255, 0.18);
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
}

.footer-radar-sweep-beam {
  position: absolute;
  inset: 3%;
  z-index: 6;
  border-radius: 50%;
  background:
    conic-gradient(from 26deg, transparent 0deg 252deg, rgba(73, 184, 255, 0.06) 278deg, rgba(130, 219, 255, 0.62) 312deg, rgba(73, 184, 255, 0.05) 328deg, transparent 360deg);
  filter: blur(0.1px) drop-shadow(0 0 12px rgba(73, 184, 255, 0.46));
  mix-blend-mode: screen;
  animation: footer-radar-sweep 5.8s linear infinite;
}

.footer-radar-sweep-beam::after {
  position: absolute;
  top: 49.6%;
  left: 50%;
  width: 46%;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(130, 219, 255, 0.92), rgba(130, 219, 255, 0));
  box-shadow: 0 0 14px rgba(130, 219, 255, 0.72);
  content: "";
  transform-origin: left center;
  transform: rotate(-29deg);
}

.footer-radar-shetland-glow,
.footer-radar-gold-pulse,
.footer-radar-locator-dot {
  position: absolute;
  left: 55.8%;
  top: 11.8%;
  z-index: 9;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.footer-radar-shetland-glow {
  width: 20%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(169, 130, 58, 0.36), rgba(169, 130, 58, 0.18) 34%, rgba(169, 130, 58, 0) 70%);
  box-shadow:
    0 0 16px rgba(169, 130, 58, 0.54),
    0 0 34px rgba(169, 130, 58, 0.28);
  mix-blend-mode: screen;
  animation: footer-lerwick-glow 2.6s ease-in-out infinite;
}

.footer-radar-gold-pulse {
  width: 11%;
  aspect-ratio: 1;
  border: 1.4px solid rgba(169, 130, 58, 0.86);
  box-shadow: 0 0 18px rgba(169, 130, 58, 0.48);
  animation: footer-lerwick-pulse 2.35s ease-out infinite;
}

.footer-radar-locator-dot {
  width: 4.8%;
  aspect-ratio: 1;
  background: var(--sun);
  box-shadow:
    0 0 9px rgba(169, 130, 58, 0.88),
    0 0 18px rgba(169, 130, 58, 0.5);
  animation: footer-lerwick-dot 2.6s ease-in-out infinite;
}

.footer-radar-live-label {
  position: absolute;
  top: 13.5%;
  left: 66.5%;
  z-index: 10;
  color: rgba(204, 176, 111, 0.92);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 0 8px rgba(169, 130, 58, 0.58),
    0 1px 8px rgba(1, 7, 17, 0.9);
  white-space: nowrap;
}

.footer-copyright {
  grid-area: copyright;
  margin: 0;
  color: rgba(199, 219, 229, 0.7);
  font-size: 0.84rem;
}
@keyframes footer-radar-sweep { to { transform: rotate(360deg); } }
@keyframes footer-lerwick-pulse { 0% { opacity: 0.92; transform: translate(-50%, -50%) scale(0.5); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(3.2); } }
@keyframes footer-lerwick-glow { 0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.92); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); } }
@keyframes footer-lerwick-dot { 0%, 100% { transform: translate(-50%, -50%) scale(0.92); } 50% { transform: translate(-50%, -50%) scale(1.18); } }
@keyframes footer-wave-drift { from { transform: translateX(-18px) scaleX(1.02); } to { transform: translateX(18px) scaleX(1.02); } }

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: linear-gradient(135deg, rgba(7, 22, 37, 0.96), rgba(7, 92, 152, 0.18));
    box-shadow: var(--shadow);
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-block: 106px 124px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-strip span {
    border: 1px solid rgba(169, 130, 58, 0.3);
  }

  .hero-strip span:nth-child(2n) {
    border-right: 1px solid rgba(169, 130, 58, 0.3);
  }

  .hero-strip span:last-child {
    grid-column: 1 / -1;
    border: 1px solid rgba(169, 130, 58, 0.3);
  }

  .intro-grid,
  .support-layout,
  .inquiry-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: grid;
  }

  .split-heading > p {
    max-width: none;
    padding-top: 0;
  }

  .support-copy {
    position: static;
  }

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

  .local-seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-proof-strip {
    grid-template-columns: 1fr;
  }

  .trust-split,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-card {
    position: static;
  }

  .seo-page-layout {
    grid-template-columns: 1fr;
  }

  .seo-page-card {
    position: static;
  }

  .careers-hero-inner,
  .ai-layout,
  .network-layout {
    grid-template-columns: 1fr;
  }

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

  .candidate-card-wide {
    grid-column: 1 / -1;
  }

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

  .solutions-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-photo-main {
    grid-row: auto;
    min-height: 260px;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .solutions-cta {
    display: grid;
  }
}

@media (max-width: 1120px) {
  .hero-brand-visual {
    display: none;
  }
}

@media (max-width: 760px) {
  .service-enquiry-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  [data-service-kind="accommodation"] .service-enquiry-layout {
    grid-template-columns: 1fr;
  }

  [data-service-kind="accommodation"] .service-enquiry-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text {
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.4rem);
    line-height: 0.92;
  }

  .service-enquiry-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.05rem);
    line-height: 0.98;
  }

  .hero-actions,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-areas:
      "brand"
      "radar"
      "copyright";
  }

  .footer-brand {
    justify-items: center;
    min-width: 0;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-radar {
    justify-self: center;
    width: min(286px, 100%);
    max-width: 286px;
  }

  .footer-radar-screen {
    width: clamp(210px, 66vw, 250px);
  }

  .footer-copyright {
    text-align: center;
  }

  .hero-content {
    padding-block: 96px 42px;
  }

  .hero-copy {
    margin-top: 20px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-strip {
    display: none;
  }

  .button {
    width: 100%;
  }

  .careers-hero {
    min-height: auto;
    padding-block: 96px 52px;
  }

  .careers-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
  }

  .careers-photo-card {
    width: 100%;
    aspect-ratio: 1.05;
  }

  .careers-visual {
    gap: 14px;
  }

  .candidate-stack span {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .section-heading {
    display: block;
  }

  .stage-track {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    height: 280px;
  }

  .support-highlights,
  .ai-capabilities,
  .portal-steps {
    grid-template-columns: 1fr;
  }

  .ai-capabilities li {
    grid-template-columns: 1fr;
  }

  .ai-capabilities p {
    grid-column: auto;
    margin-top: -4px;
  }

  .ai-console {
    gap: 14px;
    padding: 18px;
  }

  .ai-orb-shell {
    min-height: 158px;
  }

  .ai-console-topline {
    display: grid;
    justify-content: start;
  }

  .ai-prompt-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ai-launcher {
    right: 14px;
    bottom: 14px;
  }

  .ai-widget {
    right: 14px;
    bottom: 82px;
    width: calc(100vw - 28px);
  }

  .ai-widget-options {
    grid-template-columns: 1fr;
  }
  .ai-widget-question,
  .ai-widget-actions,
  .ai-smart-actions {
    grid-template-columns: 1fr;
  }

  .ai-widget-question button {
    min-height: 44px;
  }

  .support-portal-card {
    min-height: 0;
    gap: 12px;
    padding: 18px;
  }

  .support-portal-card h3 {
    font-size: 1.36rem;
  }

  .support-portal-card p {
    font-size: 0.9rem;
  }

  .portal-visual {
    min-height: 58px;
  }

  .portal-topline,
  .portal-actions {
    display: grid;
  }

  .portal-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .portal-steps li {
    padding: 8px 6px;
    font-size: 0.74rem;
  }

  .stage-track i {
    width: 2px;
    height: 24px;
    margin-inline: auto;
  }

  .stage-track i::after {
    top: auto;
    right: 50%;
    bottom: -1px;
    transform: translateX(50%) rotate(135deg);
  }

  .stage-track span {
    min-height: 58px;
  }

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

  .local-seo-grid,
  .seo-service-list,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: 0;
  }

  .policy-hero,
  .thank-section {
    min-height: auto;
    padding-block: 104px 58px;
  }

  .seo-page-hero {
    min-height: auto;
    padding-block: 104px 58px;
  }

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

  .candidate-card-wide {
    grid-column: auto;
  }

  .candidate-card {
    min-height: 250px;
  }

  .candidate-photo-panel {
    min-height: 420px;
  }

  .candidate-photo-caption {
    padding: 22px;
  }

  .candidate-photo-caption strong {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .candidate-photo-caption p {
    font-size: 0.94rem;
  }

  .candidate-form-media {
    min-height: 220px;
  }

  .network-steps article {
    grid-template-columns: 1fr;
  }

  .network-steps p {
    grid-column: auto;
    margin-top: -6px;
  }

  .audience-card {
    min-height: 0;
  }

  .service-card {
    min-height: 0;
  }

  .solution-list {
    grid-template-columns: 1fr;
  }

  .solutions-cta .button {
    width: 100%;
  }

  .solutions-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solutions-photo,
  .solutions-photo-main {
    min-height: 220px;
    height: auto;
  }

  .solutions-photo-main {
    min-height: 260px;
  }

  .support-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-item::before {
    inset: 0;
    opacity: 0.16;
  }

  .support-visual {
    grid-column: auto;
    width: 100%;
  }

  .inquiry-form {
    padding: 16px;
  }

  .contact-actions a {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .contact-action-icon {
    width: 48px;
    height: 48px;
  }

  .contact-actions strong {
    text-align: left;
  }

  .contact-map-caption {
    display: grid;
    gap: 3px;
  }

  .contact-map-caption strong {
    text-align: left;
  }

  .contact-photo img {
    height: 100%;
  }

  .contact-photo {
    min-height: 300px;
  }

  .contact-photo figcaption {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
  }

  .contact-map {
    min-height: 320px;
    height: 320px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .button,
  .site-nav a,
  .footer-social-link,
  .ai-prompt-row button,
  .ai-widget-options button,
  .ai-widget-question button,
  .portal-actions a,
  .contact-actions a,
  .support-portal-card .button-primary {
    min-height: 44px;
  }

  .service-card,
  .audience-card,
  .trust-card,
  .support-item,
  .local-seo-card,
  .candidate-card {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

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