:root {
  --bg-top: #f6fdff;
  --bg-mid: #e8f8f7;
  --bg-bottom: #d7f0ff;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-soft: rgba(247, 254, 255, 0.94);
  --panel-alt: rgba(238, 250, 252, 0.96);
  --panel-deep: rgba(225, 246, 249, 0.94);
  --line: rgba(13, 110, 126, 0.18);
  --line-soft: rgba(13, 110, 126, 0.12);
  --text: #07313d;
  --muted: #315e67;
  --muted-2: #4b7881;
  --muted-3: #6e99a2;
  --accent: #006f8b;
  --accent-strong: #009f9a;
  --accent-bg: rgba(0, 161, 190, 0.12);
  --green: #00796b;
  --green-bg: rgba(0, 168, 141, 0.12);
  --shadow: 0 24px 70px rgba(10, 77, 94, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-padding-top: 108px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(46, 209, 255, 0.15), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(28, 255, 178, 0.11), transparent 24%),
    linear-gradient(135deg, var(--bg-top) 0%, var(--bg-mid) 38%, var(--bg-bottom) 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 94px;
}

.site-shell {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  padding: 18px 20px 0;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid rgba(106, 255, 221, 0.14);
  border-radius: 999px;
  background: rgba(4, 16, 24, 0.76);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.site-header__brand,
.site-header__nav a {
  color: #e7fffb;
  text-decoration: none;
}

.site-header__brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.site-header__nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #c4ede6;
  font-size: 0.94rem;
  font-weight: 500;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  outline: none;
  color: #f2fffc;
  background: rgba(80, 216, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(80, 216, 255, 0.16), 0 0 24px rgba(80, 216, 255, 0.14);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px 32px 32px;
  margin-top: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(65, 165, 193, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 165, 193, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 90%);
}

.scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.code-panel {
  position: absolute;
  width: min(34vw, 380px);
  min-height: 280px;
  padding: 18px 20px;
  border: 1px solid rgba(55, 243, 200, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(11, 41, 52, 0.84), rgba(4, 18, 27, 0.78));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.code-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 255, 193, 0.1), transparent 22%),
    linear-gradient(90deg, transparent, rgba(31, 255, 193, 0.05), transparent);
}

.code-panel--left {
  top: 12%;
  left: 4%;
  transform: rotate(-8deg);
  animation: float-panel-left 10s ease-in-out infinite;
}

.code-panel--right {
  right: 5%;
  bottom: 10%;
  transform: rotate(8deg);
  animation: float-panel-right 12s ease-in-out infinite;
}

.code-panel__bar {
  width: 72px;
  height: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 243, 197, 0.9), rgba(42, 159, 243, 0.4));
  box-shadow: 0 0 20px rgba(42, 243, 197, 0.35);
}

.code-panel pre {
  position: relative;
  margin: 0;
  color: rgba(174, 252, 231, 0.86);
  font-size: 0.93rem;
  line-height: 1.7;
  white-space: pre-wrap;
  font-family: Arial, Helvetica, sans-serif;
}

.agent-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.agent-core__halo,
.agent-core__screen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.agent-core__halo {
  background:
    radial-gradient(circle, rgba(44, 255, 192, 0.28) 0%, rgba(24, 149, 192, 0.12) 36%, transparent 68%);
  filter: blur(18px);
  animation: pulse-halo 5s ease-in-out infinite;
}

.agent-core__screen {
  inset: 12%;
  border: 1px solid rgba(98, 245, 224, 0.26);
  background:
    radial-gradient(circle at 50% 40%, rgba(30, 167, 214, 0.34), rgba(5, 20, 28, 0.92) 58%),
    linear-gradient(180deg, rgba(24, 184, 154, 0.14), rgba(11, 27, 36, 0.2));
  box-shadow:
    inset 0 0 90px rgba(22, 210, 183, 0.18),
    0 0 50px rgba(21, 153, 182, 0.2);
  overflow: hidden;
}

.agent-core__screen::before {
  content: "</>";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(187, 255, 239, 0.72);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.agent-core__scan {
  position: absolute;
  inset: -30% 12%;
  background: linear-gradient(180deg, transparent, rgba(78, 255, 216, 0.2), transparent);
  transform: translateY(-10%);
  animation: scan 3.4s linear infinite;
}

.agent-core__cursor {
  position: absolute;
  right: 24%;
  bottom: 28%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9dfff0;
  box-shadow: 0 0 24px rgba(157, 255, 240, 0.8);
  animation: blink 1.1s steps(2) infinite;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 56px;
  border: 1px solid rgba(106, 255, 221, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 34, 45, 0.88), rgba(4, 16, 24, 0.92));
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  animation: rise 900ms ease-out both;
}

.eyebrow {
  margin: 0 0 20px;
  color: #8fe6da;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
  color: #e8fff9;
  text-shadow: 0 0 30px rgba(60, 223, 198, 0.08);
}

.supporting-copy {
  max-width: 38rem;
  margin: 24px 0 0;
  color: #b7e8de;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta,
.pager,
.result-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22f0c1, #1782ca);
  color: #02131a;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
  box-shadow: 0 14px 30px rgba(20, 199, 160, 0.24);
  border: 0;
  cursor: pointer;
}

.cta:hover,
.cta:focus-visible,
.pager:hover,
.result-card__link:hover {
  background: linear-gradient(135deg, #59ffd8, #2ea4ff);
  transform: translateY(-2px);
}

.cta--consultation {
  padding: 16px 28px;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 16px 36px rgba(20, 199, 160, 0.34),
    0 0 0 1px rgba(142, 255, 231, 0.3);
}

.cta--consultation:hover,
.cta--consultation:focus-visible {
  box-shadow:
    0 20px 42px rgba(20, 199, 160, 0.42),
    0 0 0 2px rgba(142, 255, 231, 0.45);
}

.cta--ghost {
  background: transparent;
  color: #d7fff6;
  border: 1px solid rgba(66, 239, 205, 0.22);
  box-shadow: none;
}

.cta--ghost:hover,
.cta--ghost:focus-visible {
  background: rgba(42, 243, 197, 0.1);
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.7;
}

.hero__glow--one {
  top: 6%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(31, 165, 255, 0.18);
  animation: drift 7s ease-in-out infinite;
}

.hero__glow--two {
  right: 8%;
  bottom: 8%;
  width: 360px;
  height: 360px;
  background: rgba(45, 255, 176, 0.14);
  animation: drift 9s ease-in-out infinite reverse;
}

.hero__glow--three {
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  background: rgba(32, 143, 214, 0.14);
  transform: translate(-50%, -50%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.search-shell,
.services-shell {
  padding: 0 20px 72px;
}

.contact-shell {
  padding: 0 20px 72px;
}

.about-shell,
.contact-shell,
.search-shell,
.services-shell {
  scroll-margin-top: 108px;
}

.about-shell {
  padding: 0 20px 72px;
}

.about-shell__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.about-copy,
.about-point {
  border: 1px solid var(--line);
  background: rgba(2, 8, 15, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-radius: 2rem;
}

.about-copy {
  padding: 28px;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.92), rgba(5, 15, 24, 0.84));
}

.about-copy h2 {
  max-width: 18ch;
  margin: 16px 0 0;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.about-copy p {
  max-width: 42rem;
  margin: 14px 0 0;
  color: #c3d7de;
  font-size: 1rem;
  line-height: 1.8;
}

.about-human-card {
  width: min(100%, 560px);
  margin-top: 24px;
  padding: 9px 18px 9px 9px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(13, 110, 126, 0.2);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(226, 248, 249, 0.82));
  box-shadow: 0 14px 34px rgba(10, 77, 94, 0.12);
}

.about-human-card__photo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 151, 151, 0.24);
  border-radius: 18px;
  background: linear-gradient(145deg, #0a5566, #07313d);
}

.about-human-card__photo img {
  display: block;
  width: 68px;
  height: auto;
  transform: translateY(2px);
}

.about-human-card__copy {
  display: grid;
  gap: 3px;
}

.about-human-card__copy strong {
  color: #062f3b;
  font-size: 0.95rem;
  line-height: 1.25;
}

.about-human-card__copy span {
  color: #315e67;
  font-size: 0.82rem;
  line-height: 1.45;
}

.about-points {
  display: grid;
  gap: 16px;
}

.about-point {
  padding: 20px;
  background: linear-gradient(180deg, rgba(5, 15, 24, 0.9), rgba(3, 10, 18, 0.92));
}

.about-point p {
  margin: 0;
  color: #8fe6da;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-point span {
  display: block;
  margin-top: 10px;
  color: #e2f5f0;
  line-height: 1.75;
}

.services-shell__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(20, 199, 160, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(2, 8, 15, 0.9), rgba(3, 10, 18, 0.86));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.services-shell .search-hero {
  margin-bottom: 18px;
  background: rgba(2, 8, 15, 0.58);
  box-shadow: none;
}

.services-shell .search-hero h2 {
  max-width: 64rem;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.services-video {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 141, 166, 0.2);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(0, 94, 117, 0.14);
}

.services-video__media {
  display: block;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(20, 199, 160, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(5, 15, 24, 0.92), rgba(3, 10, 18, 0.92));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-card--featured {
  border-color: rgba(142, 255, 231, 0.32);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(142, 255, 231, 0.16);
}

.service-card__eyebrow {
  margin: 0 0 12px;
  color: #8fe6da;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.service-card p:not(.service-card__eyebrow) {
  margin: 14px 0 24px;
  color: #c3d7de;
  line-height: 1.75;
}

.contact-shell__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 440px;
}

.contact-copy,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(2, 8, 15, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-radius: 2rem;
}

.contact-copy {
  padding: 28px;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.92), rgba(5, 15, 24, 0.84));
}

.contact-copy h2 {
  max-width: 18ch;
  margin: 16px 0 0;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-copy p {
  max-width: 44rem;
  margin: 14px 0 0;
  color: #c3d7de;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-point {
  border-radius: 1.2rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.contact-point p,
.contact-form__status {
  margin: 0;
}

.contact-point p {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-point span {
  display: block;
  margin-top: 8px;
  color: #e2f5f0;
  line-height: 1.7;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  margin-top: 1.15rem;
  color: #c9fffa;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.linkedin-link:hover,
.linkedin-link:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.linkedin-link__icon,
.site-footer__linkedin > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid rgba(54, 224, 205, 0.48);
  border-radius: 0.38rem;
  background: linear-gradient(145deg, rgba(19, 155, 168, 0.92), rgba(16, 94, 141, 0.92));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  box-shadow: 0 0 22px rgba(30, 205, 192, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.35rem 0 1.6rem;
  border-top: 1px solid rgba(113, 220, 211, 0.16);
  color: rgba(215, 236, 238, 0.7);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer__links,
.site-footer__linkedin {
  display: flex;
  align-items: center;
}

.site-footer__links {
  gap: 1.35rem;
}

.site-footer__links a {
  color: rgba(215, 236, 238, 0.78);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ffffff;
}

.site-footer__linkedin {
  gap: 0.55rem;
}

.site-footer__linkedin > span:first-child {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 0.3rem;
  font-size: 0.7rem;
}

@media (max-width: 640px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__links {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.9rem 1.15rem;
  }
}

.contact-point--phone {
  border-color: rgba(0, 151, 151, 0.28);
}

.contact-phone-link {
  display: inline-flex;
  margin-top: 10px;
  color: #e8fff9;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.contact-phone-link:hover,
.contact-phone-link:focus-visible {
  color: #8fe6da;
  outline: none;
}

.contact-card {
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-alt), var(--panel-deep));
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form[hidden],
.contact-success[hidden] {
  display: none;
}

.contact-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 14px 16px;
  font: inherit;
}

.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form textarea:focus {
  outline: none;
  border-color: rgba(80, 216, 255, 0.4);
  box-shadow:
    0 0 0 3px rgba(80, 216, 255, 0.14),
    0 0 28px rgba(80, 216, 255, 0.22);
}

.contact-captcha {
  border-radius: 1rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.contact-captcha[hidden] {
  display: none;
}

.contact-captcha__label {
  margin: 0 0 12px;
  color: #d4edf3;
  font-size: 0.92rem;
  font-weight: 500;
}

.contact-captcha__status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: #b7d3d8;
  line-height: 1.5;
}

.contact-captcha__status.is-error {
  color: #ffd3d3;
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__status {
  min-height: 1.5em;
  color: #b7d3d8;
  line-height: 1.6;
}

.contact-form__privacy {
  margin: -2px 0 0;
  color: #8aaeb6;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form__privacy a {
  color: #8fdcff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__privacy a:hover,
.contact-form__privacy a:focus-visible {
  color: #d9f7ff;
}

.contact-form__status.is-error {
  color: #ffd3d3;
}

.contact-form__status.is-success {
  color: #b8ffe8;
}

.contact-success {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(66, 239, 205, 0.22);
  background:
    radial-gradient(circle at top center, rgba(53, 231, 195, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(8, 34, 45, 0.88), rgba(4, 16, 24, 0.96));
  padding: 24px;
  animation: rise 320ms ease-out both;
}

.contact-success__pulse {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(181, 255, 240, 0.95) 0%, rgba(79, 243, 221, 0.38) 44%, transparent 74%);
  box-shadow:
    0 0 0 10px rgba(42, 243, 197, 0.08),
    0 0 34px rgba(42, 243, 197, 0.18);
  animation: pulse-halo 2.8s ease-in-out infinite;
}

.contact-success__eyebrow {
  margin: 0;
  color: #8fe6da;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-success h3 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-success p {
  margin: 14px 0 0;
  color: #c3d7de;
  line-height: 1.75;
}

.contact-success .cta {
  margin-top: 18px;
}

.contact-submit--busy {
  opacity: 0.8;
  pointer-events: none;
}

.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.newsletter-modal[hidden] {
  display: none;
}

.newsletter-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 7, 12, 0.72);
  backdrop-filter: blur(10px);
}

.newsletter-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 780px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(106, 255, 221, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(8, 34, 45, 0.94), rgba(4, 16, 24, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  animation: rise 220ms ease-out both;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 230, 218, 0.45) rgba(255, 255, 255, 0.05);
}

.newsletter-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #c4ede6;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  display: block;
}

.newsletter-modal__close:hover,
.newsletter-modal__close:focus-visible {
  color: #f2fffc;
  outline: none;
}

.newsletter-modal__eyebrow {
  margin: 12px 0 0;
  color: #8fe6da;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.newsletter-modal__card h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.newsletter-modal__card > p {
  margin: 14px 0 0;
  color: #c3d7de;
  line-height: 1.75;
}

.newsletter-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.newsletter-form[hidden] {
  display: none;
}

.newsletter-submit--busy {
  opacity: 0.8;
  pointer-events: none;
}

.newsletter-modal__card::-webkit-scrollbar {
  width: 10px;
}

.newsletter-modal__card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.newsletter-modal__card::-webkit-scrollbar-thumb {
  background: rgba(143, 230, 218, 0.45);
  border-radius: 999px;
}

.search-shell__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.search-hero {
  margin: 0 auto 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.92), rgba(5, 15, 24, 0.84));
  box-shadow: var(--shadow);
}

.search-hero__chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(80, 216, 255, 0.2);
  background: rgba(80, 216, 255, 0.1);
  color: #c7f3ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.search-hero h2 {
  max-width: 56rem;
  margin: 16px 0 0;
  font-size: clamp(2.3rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.search-hero p {
  max-width: 48rem;
  margin: 14px 0 0;
  color: #c3d7de;
  font-size: 1.05rem;
  line-height: 1.8;
}

.search-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: 320px minmax(0, 1fr);
}

.filters-panel,
.results-bar,
.result-card,
.results-empty,
.results-pagination {
  border: 1px solid var(--line);
  background: rgba(2, 8, 15, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.filters-panel {
  height: fit-content;
  position: sticky;
  top: 24px;
  border-radius: 1.75rem;
  padding: 20px;
  background: rgba(2, 8, 15, 0.7);
}

.filters-panel__header,
.results-bar,
.results-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filters-panel__header h3 {
  margin: 0;
  font-size: 1.125rem;
}

.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8fdcff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.filters-panel__body {
  margin-top: 20px;
}

.field,
.filter-group {
  display: block;
}

.field + .field,
.field + .filter-group,
.filter-group + .filter-group {
  margin-top: 20px;
}

.field span,
.filter-group p {
  display: block;
  margin: 0 0 12px;
  color: #d4edf3;
  font-size: 0.92rem;
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 14px 16px;
  font: inherit;
}

.field input::placeholder {
  color: #64748b;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(80, 216, 255, 0.4);
  box-shadow:
    0 0 0 3px rgba(80, 216, 255, 0.14),
    0 0 28px rgba(80, 216, 255, 0.22);
}

#search-query {
  position: relative;
  border-color: rgba(80, 216, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(80, 216, 255, 0.08),
    0 0 22px rgba(80, 216, 255, 0.12);
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

#search-query.search-query--active,
#search-query:focus {
  border-color: rgba(108, 245, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(108, 245, 255, 0.2),
    0 0 0 5px rgba(80, 216, 255, 0.1),
    0 0 36px rgba(80, 216, 255, 0.28);
  transform: translateY(-1px);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: 180ms ease;
}

.chip:hover,
.chip:focus-visible {
  border-color: rgba(80, 216, 255, 0.3);
  color: white;
}

.chip--selected.complexity {
  border-color: rgba(80, 216, 255, 0.4);
  background: rgba(80, 216, 255, 0.15);
  color: #d9f7ff;
}

.chip--selected.category {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.15);
  color: #d7fff0;
}

.results-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.results-bar,
.results-pagination {
  border-radius: 1.5rem;
  padding: 16px 20px;
}

.results-bar__eyebrow {
  margin: 0;
  color: #64748b;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.results-bar__title {
  margin: 4px 0 0;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}

.results-bar__status,
.results-pagination p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.results-grid {
  display: grid;
  gap: 16px;
}

.result-card {
  border-radius: 1.75rem;
  padding: 20px;
  background: linear-gradient(180deg, var(--panel-alt), var(--panel-deep));
}

.result-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.result-card__badges,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge--teal {
  border-color: rgba(80, 216, 255, 0.2);
  background: rgba(80, 216, 255, 0.1);
  color: var(--accent);
}

.badge--green {
  border-color: rgba(52, 211, 153, 0.2);
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
}

.result-card__link {
  padding: 10px 16px;
  font-size: 0.95rem;
  background: rgba(80, 216, 255, 0.1);
  color: #d9f7ff;
  border: 1px solid rgba(80, 216, 255, 0.3);
  box-shadow: none;
}

.result-card__link:hover {
  background: rgba(80, 216, 255, 0.2);
}

.result-card h3 {
  margin: 14px 0 0;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

.result-card__subtitle {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.result-card__description {
  margin: 16px 0 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.result-card__meta div,
.result-card__group,
.result-card__reason {
  border-radius: 1rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.result-card__meta dt,
.result-card__group p,
.result-card__reason-title {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.result-card__meta dd {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.tag-row span {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.8);
  padding: 6px 12px;
  color: #cbd5e1;
  font-size: 0.75rem;
}

.result-card__reason {
  margin-top: 16px;
}

.result-card__reason-copy {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.8;
}

.results-empty {
  border-style: dashed;
  border-radius: 1.75rem;
  padding: 64px 24px;
  text-align: center;
  color: #94a3b8;
}

.results-pagination {
  align-items: center;
}

.pager {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
  color: white;
}

.pager:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pager:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px 72px;
}

.detail-hero,
.detail-main,
.detail-sidebar,
.detail-related-card,
.detail-stat-card {
  border: 1px solid var(--line);
  background: rgba(2, 8, 15, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.detail-hero {
  border-radius: 2rem;
  padding: 28px;
  background: linear-gradient(180deg, rgba(6, 20, 33, 0.92), rgba(5, 15, 24, 0.84));
}

.detail-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(80, 216, 255, 0.24);
  background: rgba(80, 216, 255, 0.1);
  color: #d9f7ff;
  font-weight: 600;
  text-decoration: none;
}

.detail-back--ghost {
  background: transparent;
  border-color: rgba(52, 211, 153, 0.24);
  color: #d7fff0;
}

.detail-hero__chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(80, 216, 255, 0.2);
  background: rgba(80, 216, 255, 0.1);
  color: #c7f3ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.detail-hero h1,
.detail-related__header h2,
.detail-section h2 {
  margin: 16px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #f2fffb;
}

.detail-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
}

.detail-hero__subtitle {
  margin: 10px 0 0;
  color: #94a3b8;
  font-size: 1rem;
}

.detail-hero__copy {
  max-width: 54rem;
  margin: 18px 0 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.detail-badges,
.detail-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-badges {
  margin-top: 20px;
}

.detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-top: 24px;
}

.detail-main {
  border-radius: 2rem;
  padding: 24px;
}

.detail-sidebar {
  align-self: start;
  border-radius: 2rem;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.detail-section + .detail-section {
  margin-top: 28px;
}

.detail-section__eyebrow,
.detail-stat-card__label,
.detail-related-card__rank {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-section p {
  margin: 14px 0 0;
  color: #cbd5e1;
  line-height: 1.85;
}

.detail-tag-groups {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.detail-tag-card,
.detail-stat-card {
  border-radius: 1.25rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.detail-tag-card h3 {
  margin: 0 0 12px;
  color: #eefcf8;
  font-size: 1rem;
}

.detail-inline-actions {
  margin-top: 18px;
}

.detail-stat-card__value {
  margin: 0;
  color: #eefcf8;
  font-size: 1.05rem;
  font-weight: 600;
}

.detail-related {
  margin-top: 32px;
}

.detail-related__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.detail-related-card {
  border-radius: 1.5rem;
  padding: 20px;
  background: linear-gradient(180deg, var(--panel-alt), var(--panel-deep));
}

.detail-related-card h3 {
  margin: 8px 0 0;
  color: white;
  font-size: 1.2rem;
}

.detail-related-card p {
  margin: 12px 0 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.detail-related-card a {
  display: inline-flex;
  margin-top: 16px;
  color: #a9eeff;
  font-weight: 600;
  text-decoration: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -16px, 0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes pulse-halo {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

@keyframes scan {
  0% {
    transform: translateY(-55%);
  }

  100% {
    transform: translateY(75%);
  }
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.15;
  }
}

@keyframes float-panel-left {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

  50% {
    transform: translateY(-18px) rotate(-6deg);
  }
}

@keyframes float-panel-right {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

@media (max-width: 980px) {
  .about-shell__inner,
  .contact-shell__inner,
  .search-layout {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters-panel {
    position: static;
  }

  .result-card__meta,
  .result-card__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid,
  .detail-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-top: 154px;
  }

  .site-header {
    padding: 12px 12px 0;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
    border-radius: 1.5rem;
    padding: 14px 16px;
  }

  .site-header__brand {
    text-align: center;
  }

  .site-header__nav {
    justify-content: center;
  }

  .hero {
    padding: 18px;
    margin-top: 0;
  }

  .hero__content {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .supporting-copy {
    line-height: 1.6;
  }

  .services-shell .search-hero h2 {
    font-size: clamp(1.28rem, 7vw, 1.75rem);
    line-height: 1.18;
  }

  .services-video {
    border-radius: 1rem;
  }

  .services-video__media {
    max-height: 360px;
  }

  .scene {
    opacity: 0.58;
  }

  .code-panel {
    width: 62vw;
    min-height: 220px;
    padding: 16px;
  }

  .code-panel pre {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .code-panel--left {
    top: 6%;
    left: -10%;
  }

  .code-panel--right {
    right: -12%;
    bottom: 6%;
  }

  .agent-core {
    width: 74vw;
  }

  .hero__actions,
  .results-bar,
  .results-pagination,
  .result-card__header {
    flex-direction: column;
    align-items: stretch;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .about-shell,
  .search-shell,
  .services-shell {
    padding: 0 12px 48px;
  }

  .contact-shell {
    padding: 0 12px 48px;
  }

  .search-hero,
  .contact-copy,
  .contact-card,
  .filters-panel,
  .results-bar,
  .result-card,
  .service-card,
  .results-pagination,
  .results-empty,
  .detail-hero,
  .services-shell__inner,
  .detail-main,
  .detail-sidebar,
  .detail-related-card {
    border-radius: 1.5rem;
  }

  .result-card__meta,
  .result-card__groups {
    grid-template-columns: 1fr;
  }

  .detail-shell {
    padding: 18px 12px 48px;
  }

  .detail-hero__nav,
  .detail-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-modal {
    padding: 16px;
  }

  .newsletter-modal__card {
    padding: 22px;
    border-radius: 22px;
    max-height: calc(100vh - 32px);
  }
}

.assessment-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.assessment-modal[hidden] {
  display: none;
}

.assessment-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(2, 25, 31, 0.62);
  backdrop-filter: blur(10px);
  cursor: default;
}

.assessment-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(0, 151, 151, 0.24);
  border-radius: 28px;
  background: linear-gradient(160deg, #ffffff, #eafafb);
  box-shadow: 0 32px 100px rgba(0, 42, 52, 0.3);
  color: #062f3b;
  animation: rise 220ms ease-out both;
}

.assessment-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 126, 112, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: #275d65;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.assessment-modal__eyebrow {
  margin: 0 48px 0 0;
  color: #007d86;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.assessment-modal__card h2 {
  margin: 14px 40px 0 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.assessment-modal__card > p:not(.assessment-modal__eyebrow) {
  margin: 16px 0 0;
  color: #315e67;
  line-height: 1.65;
}

.assessment-modal__guarantee {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 157, 129, 0.24);
  border-radius: 18px;
  background: rgba(44, 209, 177, 0.12);
}

.assessment-modal__guarantee strong {
  color: #005e55;
  font-size: 1.14rem;
}

.assessment-modal__guarantee span,
.assessment-modal__benefits {
  color: #315e67;
  line-height: 1.55;
}

.assessment-modal__benefits {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.assessment-modal__benefits li::marker {
  color: #00a88d;
}

.assessment-modal__cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  text-align: center;
}

.assessment-modal__later {
  display: block;
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  color: #557f88;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

body.assessment-modal-open {
  overflow: hidden;
}

@media (max-width: 620px) {
  .assessment-modal {
    padding: 14px;
  }

  .assessment-modal__card {
    max-height: calc(100vh - 28px);
    padding: 28px 22px 24px;
    border-radius: 22px;
  }

  .assessment-modal__card h2 {
    margin-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assessment-modal__card {
    animation: none;
  }
}

/* Light aquatic theme overrides */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(95, 207, 229, 0.26), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(76, 226, 198, 0.22), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(149, 214, 255, 0.28), transparent 38%),
    linear-gradient(135deg, var(--bg-top) 0%, var(--bg-mid) 44%, var(--bg-bottom) 100%);
  color: var(--text);
}

.site-header__inner {
  border-color: rgba(10, 116, 132, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(12, 91, 105, 0.13);
}

.site-header__brand,
.site-header__nav a {
  color: #07313d;
}

.site-header__nav a {
  color: #295d68;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: #063542;
  background: rgba(0, 161, 190, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 141, 166, 0.18), 0 12px 26px rgba(0, 141, 166, 0.12);
}

.hero {
  background:
    radial-gradient(circle at 50% 42%, rgba(89, 203, 220, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(230, 248, 251, 0.58));
}

.hero__grid {
  background-image:
    linear-gradient(rgba(20, 132, 154, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 132, 154, 0.1) 1px, transparent 1px);
}

.hero__content,
.about-copy,
.about-point,
.services-shell__inner,
.service-card,
.contact-copy,
.contact-card,
.filters-panel,
.results-bar,
.result-card,
.results-pagination,
.results-empty,
.search-hero,
.detail-hero,
.detail-main,
.detail-sidebar,
.detail-related-card,
.newsletter-modal__card {
  border-color: var(--line);
  background:
    radial-gradient(circle at top right, rgba(72, 205, 218, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 252, 253, 0.9));
  box-shadow: var(--shadow);
}

.services-shell .search-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(237, 251, 252, 0.78));
}

.service-card,
.about-point,
.detail-stat-card,
.detail-tag-card,
.result-card__group,
.result-card__meta,
.contact-point {
  background:
    radial-gradient(circle at top right, rgba(93, 220, 199, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(233, 249, 251, 0.86));
}

.service-card--featured {
  border-color: rgba(0, 151, 151, 0.3);
  box-shadow:
    0 24px 60px rgba(0, 121, 137, 0.16),
    0 0 0 1px rgba(0, 161, 190, 0.12);
}

.about-copy h2,
.contact-copy h2,
.search-hero h2,
.service-card h3,
.detail-hero h1,
.detail-section h2,
.detail-related__header h2,
.result-card h3,
.contact-success h3,
.newsletter-modal__card h2,
.hero__content h1 {
  color: #062f3b;
  text-shadow: none;
}

.supporting-copy,
.about-copy p,
.about-point span,
.service-card p:not(.service-card__eyebrow),
.contact-copy p,
.contact-point p,
.contact-form__status,
.contact-form__privacy,
.search-hero p,
.result-card__description,
.result-card__subtitle,
.result-card__reason-copy,
.detail-hero__copy,
.detail-section p,
.detail-related-card p,
.contact-success p,
.newsletter-modal__card > p,
.detail-hero__subtitle {
  color: #315e67;
}

.eyebrow,
.search-hero__chip,
.service-card__eyebrow,
.about-point p,
.detail-hero__chip,
.detail-section__eyebrow,
.detail-stat-card__label,
.detail-related-card__rank,
.results-bar__eyebrow,
.result-card__meta dt,
.result-card__group p,
.result-card__reason-title,
.newsletter-modal__eyebrow,
.contact-success__eyebrow {
  color: #007d86;
}

.detail-back,
.result-card__link {
  border-color: rgba(0, 130, 150, 0.2);
  background: rgba(0, 161, 190, 0.1);
  color: #005e75;
}

.detail-back--ghost,
.cta--ghost {
  border-color: rgba(0, 126, 112, 0.2);
  background: rgba(0, 168, 141, 0.08);
  color: #006557;
}

.cta {
  background: linear-gradient(135deg, #1dd7c6, #2da7e6);
  color: #042f3b;
  box-shadow: 0 16px 34px rgba(0, 137, 154, 0.2);
}

.cta:hover,
.cta:focus-visible {
  box-shadow:
    0 22px 46px rgba(0, 137, 154, 0.24),
    0 0 0 2px rgba(0, 161, 190, 0.22);
}

.cta--ghost:hover,
.cta--ghost:focus-visible,
.detail-back:hover,
.detail-back:focus-visible,
.contact-form__privacy a:hover,
.contact-form__privacy a:focus-visible,
.result-card__link:hover {
  background: rgba(0, 161, 190, 0.14);
}

.contact-form__privacy a {
  color: #005e75;
}

.contact-phone-link {
  color: #006f8b;
}

.contact-phone-link:hover,
.contact-phone-link:focus-visible {
  color: #004f63;
}

.field span,
.filter-group p,
.filters-panel__header h3,
.results-bar__title,
.pagination-label,
.detail-stat-card__value,
.detail-tag-card h3,
.detail-related-card h3 {
  color: #07313d;
}

.field input,
.field textarea {
  border-color: rgba(10, 116, 132, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: #07313d;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6b9ca5;
}

.field input:focus,
.field textarea:focus,
.search-query--active {
  border-color: rgba(0, 141, 166, 0.42);
  box-shadow:
    0 0 0 3px rgba(0, 161, 190, 0.12),
    0 12px 28px rgba(0, 141, 166, 0.13);
}

.chip,
.tag-row span,
.badge,
.pager {
  border-color: rgba(10, 116, 132, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: #275c66;
}

.chip--selected,
.badge--teal,
.badge--green {
  border-color: rgba(0, 141, 166, 0.28);
  background: rgba(0, 161, 190, 0.12);
  color: #005e75;
}

.chip--selected.category,
.chip--selected.category:hover,
.chip--selected.category:focus-visible {
  color: #000;
}

.pager {
  color: #07313d;
}

.pager:hover {
  background: rgba(0, 161, 190, 0.1);
}

.results-empty,
.results-bar__status {
  color: #557f88;
}

.newsletter-modal__backdrop {
  background: rgba(206, 232, 238, 0.66);
}

.code-panel {
  border-color: rgba(0, 141, 166, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(224, 247, 250, 0.7));
  box-shadow: 0 24px 60px rgba(0, 116, 132, 0.14);
}

.code-panel::before {
  background:
    linear-gradient(180deg, rgba(0, 184, 160, 0.1), transparent 28%),
    linear-gradient(90deg, transparent, rgba(0, 161, 190, 0.08), transparent);
}

.code-panel pre {
  color: rgba(5, 70, 82, 0.86);
}

.agent-core__halo {
  background:
    radial-gradient(circle, rgba(20, 214, 190, 0.28) 0%, rgba(45, 167, 230, 0.12) 40%, transparent 70%);
}

.agent-core__screen {
  border-color: rgba(0, 151, 151, 0.22);
  background:
    radial-gradient(circle at 50% 40%, rgba(80, 198, 218, 0.22), rgba(255, 255, 255, 0.84) 58%),
    linear-gradient(180deg, rgba(0, 184, 160, 0.12), rgba(123, 210, 226, 0.18));
  box-shadow:
    inset 0 0 80px rgba(0, 161, 190, 0.12),
    0 0 42px rgba(0, 141, 166, 0.16);
}

.agent-core__screen::before {
  color: rgba(0, 117, 128, 0.52);
}

.agent-core__scan {
  background: linear-gradient(180deg, transparent, rgba(0, 168, 141, 0.18), transparent);
}

.agent-core__cursor {
  background: #008b89;
  box-shadow: 0 0 24px rgba(0, 139, 137, 0.48);
}

.hero__glow--one {
  background: rgba(56, 184, 228, 0.2);
}

.hero__glow--two {
  background: rgba(37, 210, 172, 0.18);
}

.hero__glow--three {
  background: rgba(113, 195, 238, 0.18);
}

html,
body {
  overflow-x: hidden;
}

body {
  padding-bottom: 94px;
}

body.newsletter-footer-expanded {
  padding-bottom: 430px;
}

body.newsletter-footer-dismissed {
  padding-bottom: 0;
}

.newsletter-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(10, 116, 132, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(95, 207, 229, 0.2), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(76, 226, 198, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 249, 251, 0.96));
  box-shadow: 0 -18px 46px rgba(0, 94, 117, 0.16);
  backdrop-filter: blur(18px);
}

.newsletter-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.newsletter-footer__copy {
  min-width: 0;
}

.newsletter-footer__eyebrow {
  margin: 0 0 6px;
  color: #007d86;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-footer__copy h2 {
  margin: 0;
  color: #062f3b;
  font-size: 1.24rem;
  line-height: 1.12;
}

.newsletter-footer__copy p {
  margin: 6px 0 0;
  color: #315e67;
  font-size: 0.9rem;
  line-height: 1.45;
}

.newsletter-footer__toggle {
  min-height: 46px;
  white-space: nowrap;
}

.newsletter-footer__dismiss {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 126, 112, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #006557;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-footer__dismiss:hover,
.newsletter-footer__dismiss:focus-visible {
  outline: none;
  background: rgba(0, 161, 190, 0.14);
  color: #004f63;
}

.newsletter-form--footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(220px, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin: 0;
}

.newsletter-form--footer[hidden] {
  display: none;
}

.newsletter-form--footer .field {
  gap: 6px;
}

.newsletter-form--footer .field span {
  font-size: 0.78rem;
}

.newsletter-form--footer .field input {
  min-height: 44px;
  padding: 10px 12px;
}

.newsletter-form--footer .contact-captcha {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 12px;
  border-color: rgba(10, 116, 132, 0.16);
  background: rgba(255, 255, 255, 0.68);
}

.newsletter-form--footer .contact-captcha__label,
.newsletter-form--footer .contact-captcha__status {
  margin-top: 0;
}

.newsletter-form--footer .contact-form__actions {
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.newsletter-form--footer .contact-form__actions .cta {
  min-height: 44px;
  white-space: nowrap;
}

.newsletter-form--footer .contact-form__status {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.newsletter-footer__success {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  border-color: rgba(10, 116, 132, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.newsletter-footer__success[hidden] {
  display: none;
}

.newsletter-footer__success .contact-success__pulse {
  width: 34px;
  height: 34px;
}

.newsletter-footer__success .contact-success__eyebrow,
.newsletter-footer__success h3,
.newsletter-footer__success p,
.newsletter-footer__success .cta {
  margin: 0;
}

.newsletter-footer__success h3 {
  font-size: 1.1rem;
  line-height: 1.18;
}

.newsletter-footer__success p {
  font-size: 0.86rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  body {
    padding-bottom: 118px;
  }

  body.newsletter-footer-expanded {
    padding-bottom: 430px;
  }

  .newsletter-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .newsletter-form--footer {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .newsletter-form--footer .contact-captcha,
  .newsletter-form--footer .contact-form__actions,
  .newsletter-footer__success {
    grid-column: 1 / -1;
  }

  .newsletter-form--footer .contact-form__actions {
    grid-template-columns: auto auto minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 160px;
  }

  .about-human-card {
    align-items: flex-start;
    padding-right: 14px;
    border-radius: 20px;
  }

  .about-human-card__photo {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    border-radius: 16px;
  }

  .about-human-card__photo img {
    width: 61px;
  }

  body.newsletter-footer-expanded {
    padding-bottom: 540px;
  }

  .newsletter-footer {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .newsletter-footer__copy h2 {
    font-size: 1.08rem;
  }

  .newsletter-footer__copy p {
    font-size: 0.82rem;
  }

  .newsletter-footer__inner {
    grid-template-columns: 1fr;
  }

  .newsletter-footer__toggle,
  .newsletter-footer__dismiss {
    width: 100%;
  }

  .newsletter-form--footer {
    grid-template-columns: 1fr;
  }

  .newsletter-form--footer .contact-form__actions {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .newsletter-form--footer .contact-form__actions .cta,
  .newsletter-form--footer .contact-form__status {
    width: 100%;
    max-width: none;
  }

  .newsletter-footer__success {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .newsletter-footer__success .cta {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .newsletter-form--footer #newsletter-captcha-widget {
    transform: scale(0.9);
    transform-origin: left top;
  }

  .newsletter-form--footer .contact-captcha {
    min-height: 100px;
  }
}

.ai-assessment-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.65fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 151, 151, 0.3);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 92% 12%, rgba(93, 220, 199, 0.26), transparent 34%),
    linear-gradient(135deg, #ffffff, #e7f9fb);
  box-shadow: 0 22px 54px rgba(0, 121, 137, 0.16);
  color: #062f3b;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ai-assessment-card::after {
  content: "5";
  position: absolute;
  right: 3%;
  bottom: -38%;
  color: transparent;
  font-size: 12rem;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(0, 111, 139, 0.09);
  pointer-events: none;
}

.ai-assessment-card:hover,
.ai-assessment-card:focus-visible {
  outline: none;
  transform: translateY(-3px);
  border-color: rgba(0, 151, 151, 0.5);
  box-shadow: 0 28px 64px rgba(0, 121, 137, 0.22);
}

.ai-assessment-card__copy,
.ai-assessment-card__action {
  position: relative;
  z-index: 1;
}

.ai-assessment-card__eyebrow {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 141, 156, 0.12);
  color: #007d86;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ai-assessment-card h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #062f3b;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.ai-assessment-card p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #315e67;
  line-height: 1.65;
}

.ai-assessment-card__action {
  display: grid;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid rgba(13, 110, 126, 0.18);
}

.ai-assessment-card__guarantee {
  color: #006f76;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.ai-assessment-card__action strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #043342, #006f8b);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 121, 137, 0.2);
  font-size: 0.92rem;
}

.ai-assessment-card__action b {
  color: #8ff3e1;
  font-size: 1.25rem;
}

.ai-assessment-card__action small {
  color: #4d7178;
  font-size: 0.76rem;
  text-align: center;
}

@media (max-width: 760px) {
  .ai-assessment-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 1.5rem;
  }

  .ai-assessment-card__action {
    padding: 18px 0 0;
    border-top: 1px solid rgba(13, 110, 126, 0.18);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-assessment-card {
    transition: none;
  }
}
