@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');

.footer-contact {
  margin: 0.4rem 0 0;
  display: block;
}

.footer-contact a,
.footer-contact a:visited,
.footer-contact a:hover {
  font-family: 'Silkscreen', monospace;
  font-weight: 700;
  color: #ffffff !important;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

:root {
  --bg-top: #081722;
  --bg-top-soft: #123243;
  --bg-page: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #eef8fd;
  --surface-warm: #fff8db;
  --line: rgba(12, 44, 61, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --text-dark: #102633;
  --text-body: #5b7382;
  --text-light: rgba(255, 255, 255, 0.86);
  --cyan: #79e4f4;
  --cyan-strong: #1aa3bc;
  --gold: #ffd35f;
  --shadow-lg: 0 22px 54px rgba(7, 28, 39, 0.12);
  --shadow-xl: 0 28px 80px rgba(5, 22, 34, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 12% 10%, rgba(121, 228, 244, 0.18), transparent 20%),
    radial-gradient(circle at 88% 18%, rgba(255, 211, 95, 0.16), transparent 18%),
    linear-gradient(180deg, var(--bg-top) 0, var(--bg-top-soft) 23rem, var(--bg-page) 23rem, #fbfdff 100%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  z-index: 80;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.menu-toggle {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  z-index: 96;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
  transform: translateY(-50%);
  text-shadow: 0 2px 12px rgba(4, 18, 28, 0.45);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(calc(-50% - 1px));
  opacity: 0.82;
}

.hamburger svg {
  height: 3em;
  overflow: visible;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line-top-bottom {
  stroke-dasharray: 12 63;
}

.menu-toggle[aria-expanded="true"] svg {
  transform: rotate(-45deg);
}

.menu-toggle[aria-expanded="true"] .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 94;
  background: rgba(4, 16, 25, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .menu-toggle {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(4, 18, 28, 0.45);
}

body.menu-open .hamburger .line {
  stroke: #ffffff;
}

.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 95;
  width: min(320px, 86vw);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 5rem 1.15rem 1.5rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(121, 228, 244, 0.16), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(186, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(7, 24, 35, 0.99) 0%, rgba(8, 34, 49, 0.99) 56%, rgba(10, 51, 72, 0.98) 100%);
  border-right: 1px solid rgba(121, 228, 244, 0.34);
  box-shadow: 22px 0 54px rgba(3, 12, 18, 0.42);
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

body.menu-open .nav-links {
  transform: translateX(0);
}

.nav-links a {
  color: #f3fbff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(121, 228, 244, 0.12);
  text-shadow: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan-strong);
  padding-left: 0.2rem;
}

.nav-links a[aria-current="page"] {
  color: var(--cyan);
  padding-left: 0.2rem;
}

.page-shell {
  overflow: hidden;
  flex: 1;
}

.hero-section {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-top-soft) 100%);
  overflow: hidden;
}

.hero-banner-frame {
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-banner-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.hero-banner-motion::before,
.hero-banner-motion::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-banner-motion::before {
  left: 39.2%;
  top: 37.2%;
  width: 20.5%;
  height: 11.5%;
  background:
    radial-gradient(ellipse at 92% 50%, rgba(184, 255, 255, 0.5) 0%, rgba(69, 236, 247, 0.26) 20%, rgba(69, 236, 247, 0.08) 44%, rgba(69, 236, 247, 0) 76%);
  filter: blur(14px);
  opacity: 0.4;
  animation: hero-banner-slipstream 1.35s linear infinite;
}

.hero-banner-motion::after {
  left: 38.9%;
  top: 38.6%;
  width: 18.5%;
  height: 8.5%;
  background:
    radial-gradient(circle at 12% 30%, rgba(210, 255, 255, 0.85) 0 1px, transparent 2px),
    radial-gradient(circle at 18% 72%, rgba(210, 255, 255, 0.62) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 31% 46%, rgba(184, 255, 255, 0.74) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 66%, rgba(184, 255, 255, 0.46) 0 1px, transparent 2px),
    radial-gradient(circle at 57% 28%, rgba(184, 255, 255, 0.54) 0 1.1px, transparent 2.1px),
    radial-gradient(circle at 68% 58%, rgba(184, 255, 255, 0.4) 0 1px, transparent 2px);
  filter: blur(0.35px);
  opacity: 0.34;
  animation: hero-banner-specks 0.95s linear infinite;
}

.hero-banner-wind,
.hero-banner-glow {
  position: absolute;
  pointer-events: none;
}

.hero-banner-wind {
  --wind-shift-x: 0%;
  --wind-shift-y: 0%;
  --wind-scale-x: 1;
  --wind-scale-y: 1;
  opacity: 0.9;
  border-radius: 999px;
  filter: blur(1.3px);
  transform-origin: left center;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.98) 62%, rgba(0, 0, 0, 0.5) 82%, transparent 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.98) 62%, rgba(0, 0, 0, 0.5) 82%, transparent 100%);
  transform:
    translate(var(--wind-shift-x), var(--wind-shift-y))
    scaleX(var(--wind-scale-x))
    scaleY(var(--wind-scale-y));
}

.hero-banner-wind::before,
.hero-banner-wind::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-banner-wind::before {
  background:
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.04) 32%, rgba(69, 236, 247, 0.14) 56%, rgba(69, 236, 247, 0.58) 82%, rgba(205, 255, 255, 0.98) 94%, rgba(69, 236, 247, 0) 100%) 0 14% / 100% 14% no-repeat,
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.03) 28%, rgba(69, 236, 247, 0.12) 54%, rgba(69, 236, 247, 0.42) 78%, rgba(184, 255, 255, 0.86) 92%, rgba(69, 236, 247, 0) 100%) 0 46% / 88% 10% no-repeat,
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.02) 26%, rgba(69, 236, 247, 0.08) 52%, rgba(69, 236, 247, 0.28) 76%, rgba(156, 255, 255, 0.78) 91%, rgba(69, 236, 247, 0) 100%) 0 74% / 74% 7% no-repeat,
    linear-gradient(90deg, rgba(255, 79, 185, 0) 0%, rgba(255, 79, 185, 0.02) 34%, rgba(255, 79, 185, 0.1) 60%, rgba(255, 79, 185, 0.28) 82%, rgba(255, 180, 232, 0.48) 93%, rgba(255, 79, 185, 0) 100%) 0 88% / 48% 5% no-repeat;
  animation: hero-banner-wind-sweep 0.88s linear infinite;
}

.hero-banner-wind::after {
  background:
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.06) 34%, rgba(69, 236, 247, 0.18) 58%, rgba(69, 236, 247, 0.34) 78%, rgba(184, 255, 255, 0.52) 92%, rgba(69, 236, 247, 0) 100%) 0 24% / 74% 28% no-repeat,
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.04) 40%, rgba(69, 236, 247, 0.14) 64%, rgba(69, 236, 247, 0.28) 84%, rgba(184, 255, 255, 0.4) 94%, rgba(69, 236, 247, 0) 100%) 0 62% / 56% 20% no-repeat;
  filter: blur(10px);
  opacity: 0.62;
  animation: hero-banner-wind-soft 1.2s linear infinite;
}

.hero-banner-wind--dog {
  left: 38.8%;
  top: 35.4%;
  width: 22.2%;
  height: 14.2%;
}

.hero-banner-wind--primary::before,
.hero-banner-wind--primary::after {
  animation-duration: 0.92s;
}

.hero-banner-wind--secondary {
  --wind-shift-x: -3%;
  --wind-shift-y: 16%;
  --wind-scale-x: 0.86;
  --wind-scale-y: 0.92;
  opacity: 0.48;
}

.hero-banner-wind--secondary::before,
.hero-banner-wind--secondary::after {
  animation-duration: 1.08s;
  animation-delay: -0.36s;
}

.hero-banner-wind--accent {
  --wind-shift-x: -5%;
  --wind-shift-y: 35%;
  --wind-scale-x: 0.64;
  --wind-scale-y: 0.64;
  opacity: 0.3;
}

.hero-banner-wind--accent::before {
  background:
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.03) 26%, rgba(69, 236, 247, 0.1) 56%, rgba(69, 236, 247, 0.4) 82%, rgba(205, 255, 255, 0.84) 94%, rgba(69, 236, 247, 0) 100%) 0 28% / 100% 12% no-repeat,
    linear-gradient(90deg, rgba(255, 79, 185, 0) 0%, rgba(255, 79, 185, 0.03) 34%, rgba(255, 79, 185, 0.12) 66%, rgba(255, 180, 232, 0.36) 92%, rgba(255, 79, 185, 0) 100%) 0 76% / 44% 8% no-repeat;
  animation-duration: 0.8s;
}

.hero-banner-wind--accent::after {
  background:
    linear-gradient(90deg, rgba(69, 236, 247, 0) 0%, rgba(69, 236, 247, 0.05) 40%, rgba(69, 236, 247, 0.18) 76%, rgba(184, 255, 255, 0.3) 94%, rgba(69, 236, 247, 0) 100%) 0 50% / 34% 16% no-repeat;
  animation-duration: 1.1s;
}

.hero-banner-glow {
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.64;
}

.hero-banner-glow--dog {
  left: 42.2%;
  top: 37.6%;
  width: 14.8%;
  height: 8.4%;
  background:
    radial-gradient(ellipse at 82% 50%, rgba(69, 236, 247, 0.3) 0%, rgba(69, 236, 247, 0.12) 32%, rgba(69, 236, 247, 0.03) 52%, rgba(69, 236, 247, 0) 76%);
  opacity: 0.42;
}

@keyframes hero-banner-wind-sweep {
  0% {
    transform: translateX(0) scaleX(1);
  }

  100% {
    transform: translateX(-10%) scaleX(1.12);
  }
}

@keyframes hero-banner-wind-soft {
  0% {
    transform: translateX(0) scaleX(1);
  }

  100% {
    transform: translateX(-12%) scaleX(1.16);
  }
}

@keyframes hero-banner-slipstream {
  0% {
    transform: translateX(0) scaleX(1);
  }

  100% {
    transform: translateX(-8%) scaleX(1.1);
  }
}

@keyframes hero-banner-specks {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-12%);
  }
}

.mission-section {
  padding: 1.25rem 0 2rem;
  background: var(--bg-page);
}

.history-content-section {
  padding-bottom: 4rem;
}

.history-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 228, 244, 0.22), transparent 18%),
    radial-gradient(circle at 92% 14%, rgba(255, 211, 95, 0.22), transparent 20%),
    linear-gradient(180deg, #ecf6fb 0%, #f8fbfd 22rem, #ffffff 100%);
}

.history-page .site-header {
  position: sticky;
  background: rgba(248, 252, 254, 0.84);
  border-bottom: 1px solid rgba(12, 44, 61, 0.08);
  backdrop-filter: blur(18px);
}

.history-page .menu-toggle {
  color: var(--text-dark);
  text-shadow: none;
}

.history-page .hamburger .line {
  stroke: var(--text-dark);
}

.faq-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 228, 244, 0.22), transparent 18%),
    radial-gradient(circle at 92% 14%, rgba(255, 211, 95, 0.2), transparent 20%),
    linear-gradient(180deg, #edf7fb 0%, #f8fbfd 22rem, #ffffff 100%);
}

.faq-page .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 252, 254, 0.94);
  border-bottom: 1px solid rgba(12, 44, 61, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(7, 28, 39, 0.06);
}

.faq-page .menu-toggle {
  color: var(--text-dark);
  text-shadow: none;
}

.faq-page .hamburger .line {
  stroke: var(--text-dark);
}

.faq-page-shell {
  padding-top: 1.35rem;
}

.faq-page .faq-section {
  padding-top: clamp(1.25rem, 3vw, 2.6rem);
}

.team-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(121, 228, 244, 0.2), transparent 16%),
    radial-gradient(circle at 88% 12%, rgba(255, 211, 95, 0.14), transparent 18%),
    radial-gradient(circle at 76% 18%, rgba(255, 90, 187, 0.08), transparent 14%),
    linear-gradient(180deg, #edf6fb 0%, #f8fbfd 20rem, #ffffff 100%);
}

.team-page .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 252, 254, 0.94);
  border-bottom: 1px solid rgba(12, 44, 61, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(7, 28, 39, 0.06);
}

.team-page .menu-toggle {
  color: var(--text-dark);
  text-shadow: none;
}

.team-page .hamburger .line {
  stroke: var(--text-dark);
}

.team-page-shell {
  padding-top: 1.4rem;
}

.blog-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(121, 228, 244, 0.22), transparent 18%),
    radial-gradient(circle at 90% 12%, rgba(255, 211, 95, 0.18), transparent 20%),
    radial-gradient(circle at 74% 18%, rgba(15, 136, 156, 0.08), transparent 18%),
    linear-gradient(180deg, #edf7fb 0%, #f8fbfd 21rem, #ffffff 100%);
}

.blog-page .site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 252, 254, 0.94);
  border-bottom: 1px solid rgba(12, 44, 61, 0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(7, 28, 39, 0.06);
}

.blog-page .menu-toggle {
  color: var(--text-dark);
  text-shadow: none;
}

.blog-page .hamburger .line {
  stroke: var(--text-dark);
}

.blog-page-shell {
  padding-top: 1.35rem;
  flex: 1;
}

.team-hero-section {
  position: relative;
  padding: clamp(1.3rem, 4vw, 3rem) 0 4.2rem;
  isolation: isolate;
}

.team-hero-section::before {
  content: "";
  position: absolute;
  inset: 2rem 0 auto;
  height: 18rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(121, 228, 244, 0.12), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 211, 95, 0.1), transparent 18%);
  filter: blur(18px);
  opacity: 0.78;
  pointer-events: none;
  z-index: -1;
}

.team-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

.team-intro-card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(121, 228, 244, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 248, 252, 0.96) 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.team-intro-card::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 228, 244, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.team-eyebrow {
  margin: 0;
  color: #19a1bb;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-title {
  margin: 0;
  margin-top: 0.8rem;
  max-width: 9ch;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #0f2634;
}

.team-intro {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #335061;
}

.team-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 999px;
  background: rgba(8, 23, 34, 0.04);
  color: #16394a;
  font-size: 0.88rem;
  font-weight: 700;
}

.team-hero-figure {
  position: relative;
  margin: 0;
  padding-bottom: 2.95rem;
}

.team-image-shell {
  position: relative;
  padding: clamp(0.95rem, 2.4vw, 1.2rem);
  border: 1px solid rgba(121, 228, 244, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 20%, rgba(121, 228, 244, 0.14), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(255, 211, 95, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(8, 23, 34, 0.98) 0%, rgba(15, 40, 57, 0.98) 100%);
  box-shadow: 0 30px 86px rgba(5, 22, 34, 0.34);
  overflow: hidden;
}

.team-image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(121, 228, 244, 0.08) 0%, transparent 42%),
    linear-gradient(315deg, rgba(255, 211, 95, 0.08) 0%, transparent 38%);
  pointer-events: none;
}

.team-screen {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #03080d;
  isolation: isolate;
}

.team-image {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.team-screen-static,
.team-screen-scanlines,
.team-screen-power,
.team-impact-ring,
.team-impact-burst,
.team-impact-streaks,
.team-screen-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-screen-static {
  z-index: 3;
  opacity: 0;
  background:
    linear-gradient(180deg, #b2b7bc 0%, #7c838a 100%),
    repeating-linear-gradient(
      0deg,
      #e8ecef 0,
      #e8ecef 1px,
      #8a9299 1px,
      #8a9299 2px,
      #60676f 2px,
      #60676f 4px,
      #bfc5ca 4px,
      #bfc5ca 6px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 2px,
      rgba(0, 0, 0, 0.12) 2px,
      rgba(0, 0, 0, 0.12) 5px,
      rgba(255, 255, 255, 0.03) 5px,
      rgba(255, 255, 255, 0.03) 7px
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 41%,
      rgba(255, 255, 255, 0.08) 41%,
      rgba(46, 50, 55, 0.28) 48%,
      rgba(255, 255, 255, 0.07) 54%,
      transparent 54%,
      transparent 100%
    );
  background-size: 100% 100%, 100% 12px, 100% 7px, 100% 100%;
  filter: saturate(0) contrast(1.22) brightness(0.98);
}

.team-screen-scanlines {
  z-index: 4;
  opacity: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      rgba(0, 0, 0, 0.16) 1px,
      rgba(0, 0, 0, 0.16) 3px
    );
  mix-blend-mode: soft-light;
}

.team-screen-power {
  z-index: 5;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(170, 190, 206, 0.4) 34%, rgba(0, 0, 0, 0) 72%);
  transform-origin: center center;
}

.team-impact-ring,
.team-impact-burst,
.team-impact-streaks {
  opacity: 0;
  inset: auto;
  left: 66.2%;
  top: 37.4%;
  transform: translate(-50%, -50%);
  z-index: 6;
}

.team-impact-ring {
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 50%;
  border: 0.32rem solid rgba(255, 251, 208, 0.9);
  box-shadow:
    0 0 0 0.18rem rgba(255, 184, 71, 0.5),
    0 0 1.8rem rgba(255, 214, 84, 0.65);
}

.team-impact-burst {
  width: 8rem;
  height: 8rem;
  background:
    radial-gradient(circle, rgba(255, 254, 236, 1) 0%, rgba(255, 233, 112, 0.98) 30%, rgba(255, 174, 40, 0.94) 62%, rgba(255, 174, 40, 0) 72%);
  clip-path: polygon(50% 0%, 60% 20%, 82% 8%, 72% 30%, 100% 32%, 78% 48%, 98% 62%, 70% 64%, 78% 92%, 56% 76%, 50% 100%, 40% 78%, 18% 92%, 28% 66%, 0% 68%, 22% 50%, 4% 34%, 30% 30%, 18% 6%, 42% 20%);
  filter: drop-shadow(0 0 1.4rem rgba(255, 198, 66, 0.8));
}

.team-impact-streaks {
  width: 12rem;
  height: 4rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 249, 214, 0.86) 56%, rgba(255, 197, 79, 0.92) 82%, rgba(255, 197, 79, 0) 100%);
  clip-path: polygon(0 36%, 68% 12%, 100% 0, 82% 44%, 100% 78%, 66% 60%, 0 100%, 26% 56%);
  filter: blur(0.5px);
  transform: translate(-76%, -56%) rotate(-8deg);
  transform-origin: right center;
}

.team-screen-glow {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 52%, rgba(121, 228, 244, 0.18) 0%, transparent 52%),
    radial-gradient(circle at 74% 28%, rgba(255, 211, 95, 0.12) 0%, transparent 34%);
  opacity: 0.55;
}

.js [data-team-screen] .team-image {
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.72) contrast(1.06) brightness(0.7);
  transition:
    opacity 0.38s ease,
    transform 0.75s ease,
    filter 0.45s ease;
}

.js [data-team-screen].is-on .team-image,
.js [data-team-screen].is-powering-off .team-image {
  opacity: 1;
}

.js [data-team-screen].is-static .team-image {
  opacity: 0;
}

.js [data-team-screen].is-static .team-screen-static {
  opacity: 1;
  animation: team-tv-static 0.18s steps(2) infinite;
}

.js [data-team-screen].is-powering-on .team-screen-power {
  opacity: 1;
  animation: team-tv-power-on 0.82s cubic-bezier(0.22, 0.78, 0.21, 1) forwards;
}

.js [data-team-screen].is-on .team-image,
.js [data-team-screen].is-impact .team-image {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.02) contrast(1.02) brightness(1);
}

.js [data-team-screen].is-powering-on .team-screen-scanlines {
  opacity: 0.16;
}

.js [data-team-screen].is-on .team-screen-scanlines,
.js [data-team-screen].is-impact .team-screen-scanlines,
.js [data-team-screen].is-powering-off .team-screen-scanlines {
  opacity: 0.24;
}

.js [data-team-screen].is-impact .team-screen {
  animation: team-tv-impact 0.55s cubic-bezier(0.18, 0.82, 0.28, 1);
}

.js [data-team-screen].is-impact .team-image {
  animation: team-image-hit 0.55s cubic-bezier(0.18, 0.82, 0.28, 1);
}

.js [data-team-screen].is-impact .team-screen-power {
  opacity: 0.78;
  animation: team-tv-hit-flash 0.55s ease-out forwards;
}

.js [data-team-screen].is-impact .team-impact-ring {
  opacity: 1;
  animation: team-impact-ring 0.55s ease-out forwards;
}

.js [data-team-screen].is-impact .team-impact-burst {
  opacity: 1;
  animation: team-impact-burst 0.48s cubic-bezier(0.16, 0.8, 0.28, 1) forwards;
}

.js [data-team-screen].is-impact .team-impact-streaks {
  opacity: 1;
  animation: team-impact-streaks 0.38s ease-out forwards;
}

.js [data-team-screen].is-powering-off .team-image {
  filter: saturate(0.75) contrast(1.12) brightness(0.58);
}

.js [data-team-screen].is-powering-off .team-screen-power {
  opacity: 1;
  animation: team-tv-power-off 0.72s cubic-bezier(0.58, 0.02, 0.82, 0.36) forwards;
}

.js [data-team-screen].is-off .team-image,
.js [data-team-screen].is-off .team-screen-scanlines,
.js [data-team-screen].is-off .team-screen-glow {
  opacity: 0;
}

.js [data-team-screen].is-off .team-screen-static {
  opacity: 0;
}

@keyframes team-tv-static {
  0% {
    transform: translate3d(0, -1.6%, 0);
    background-position: 0 0, 0 0, 0 0, 0 0;
    filter: saturate(0) contrast(1.18) brightness(1);
  }

  25% {
    transform: translate3d(0.9%, 1.1%, 0);
    background-position: 0 0, 0 -3px, 0 5px, 0 4px;
    filter: saturate(0) contrast(1.28) brightness(0.95);
  }

  50% {
    transform: translate3d(-1.1%, -0.4%, 0);
    background-position: 0 0, 0 4px, 0 -6px, 0 -3px;
    filter: saturate(0) contrast(1.3) brightness(1.02);
  }

  75% {
    transform: translate3d(1.4%, 0.8%, 0);
    background-position: 0 0, 0 -6px, 0 2px, 0 2px;
    filter: saturate(0) contrast(1.24) brightness(0.94);
  }

  100% {
    transform: translate3d(-0.6%, 1.2%, 0);
    background-position: 0 0, 0 3px, 0 -2px, 0 -4px;
    filter: saturate(0) contrast(1.26) brightness(0.98);
  }
}

@keyframes team-tv-power-on {
  0% {
    transform: scaleY(0.03) scaleX(0.16);
    filter: blur(12px);
  }

  38% {
    transform: scaleY(0.05) scaleX(1);
    filter: blur(6px);
  }

  100% {
    transform: scaleY(1) scaleX(1);
    filter: blur(0);
  }
}

@keyframes team-tv-impact {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  20% {
    transform: translate3d(-1.1%, 0.6%, 0) scale(1.012);
  }

  45% {
    transform: translate3d(1.5%, -0.5%, 0) scale(1.018);
  }

  70% {
    transform: translate3d(-0.9%, 0.35%, 0) scale(1.008);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes team-image-hit {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1.02) contrast(1.02) brightness(1);
  }

  22% {
    transform: scale(1.02) translate3d(-0.7%, 0, 0);
    filter: saturate(1.08) contrast(1.05) brightness(1.06);
  }

  55% {
    transform: scale(1.01) translate3d(0.35%, -0.2%, 0);
    filter: saturate(1.02) contrast(1.02) brightness(1);
  }

  100% {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1.02) contrast(1.02) brightness(1);
  }
}

@keyframes team-tv-hit-flash {
  0% {
    transform: scale(0.55);
    opacity: 0.95;
    filter: blur(1px);
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
    filter: blur(10px);
  }
}

@keyframes team-impact-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.22);
    opacity: 0.95;
  }

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

@keyframes team-impact-burst {
  0% {
    transform: translate(-50%, -50%) scale(0.15) rotate(-16deg);
    opacity: 0;
  }

  25% {
    transform: translate(-50%, -50%) scale(1.04) rotate(-4deg);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.36) rotate(8deg);
    opacity: 0;
  }
}

@keyframes team-impact-streaks {
  0% {
    transform: translate(-84%, -56%) scaleX(0.18) rotate(-8deg);
    opacity: 0;
  }

  35% {
    transform: translate(-76%, -56%) scaleX(1) rotate(-8deg);
    opacity: 0.92;
  }

  100% {
    transform: translate(-70%, -56%) scaleX(1.1) rotate(-8deg);
    opacity: 0;
  }
}

@keyframes team-tv-power-off {
  0% {
    transform: scaleY(1) scaleX(1);
    filter: blur(0);
  }

  55% {
    transform: scaleY(0.04) scaleX(1);
    filter: blur(4px);
  }

  100% {
    transform: scaleY(0.02) scaleX(0.08);
    filter: blur(6px);
  }
}

.team-quote-card {
  position: absolute;
  left: 1rem;
  right: auto;
  bottom: 0;
  max-width: 25rem;
  padding: 1rem 1.15rem 1.05rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(7, 28, 39, 0.16);
}

.team-quote-card p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.65;
  color: #132d3b;
  font-weight: 700;
}

.team-quote-card span {
  display: inline-block;
  margin-top: 0.65rem;
  color: #5f7886;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-members-section {
  padding: 1.4rem 0 5.6rem;
}

.team-members-shell {
  position: relative;
  width: min(1360px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.team-members-shell::before {
  display: none;
}

.team-members-head {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.team-members-kicker {
  margin: 0;
  color: #1796b5;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-members-head h2 {
  margin: 0.75rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #102939;
}

.team-members-intro {
  margin: 1rem 0 0;
  color: #496573;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 38rem;
}

.team-member-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.6rem, 2.6vw, 2.5rem);
  padding: 1.75rem 0 0.35rem;
}

.team-roster-highlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 16%, rgba(121, 228, 244, 0.2), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 214, 107, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 246, 248, 0.98) 100%);
  border: 1px solid rgba(19, 63, 80, 0.08);
  box-shadow: 0 26px 60px rgba(15, 37, 50, 0.12);
  overflow: hidden;
}

.team-roster-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, transparent 36%),
    linear-gradient(315deg, rgba(23, 150, 181, 0.08) 0%, transparent 44%);
  pointer-events: none;
}

.team-roster-highlight--duo {
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 2.6vw, 2.3rem);
  padding: clamp(1.5rem, 3vw, 2.35rem);
}

.team-roster-head {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  display: grid;
  gap: 0.9rem;
}

.team-roster-head h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #102939;
}

.team-roster-intro {
  margin: 0;
  color: #496573;
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 40rem;
}

.team-roster-members {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  align-items: stretch;
}

.team-roster-member {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  justify-items: center;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 251, 253, 0.92) 100%);
  border: 1px solid rgba(19, 63, 80, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 30px rgba(15, 37, 50, 0.06);
  overflow: hidden;
}

.team-roster-member::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.team-roster-member--lead::before {
  background:
    radial-gradient(circle at 16% 14%, rgba(121, 228, 244, 0.14), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255, 214, 107, 0.14), transparent 24%);
}

.team-roster-member--communication::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 107, 0.14), transparent 25%),
    radial-gradient(circle at 84% 16%, rgba(121, 228, 244, 0.14), transparent 24%);
}

.team-roster-member .tilted-member-card {
  max-width: 320px;
}

.team-roster-member-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  display: grid;
  gap: 0.55rem;
  text-align: center;
}

.team-roster-member-copy h4 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #102939;
}

.team-roster-member .team-roster-role {
  margin: 0;
}

.team-roster-member-blurb {
  margin: 0;
  color: #4f6b79;
  font-size: 0.98rem;
  line-height: 1.78;
}

.team-roster-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.team-roster-highlight .tilted-member-card--featured {
  justify-self: center;
}

.team-roster-copy h3 {
  margin: 0.45rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #102939;
}

.team-roster-role {
  margin: 0.8rem 0 0;
  color: #1796b5;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}


.team-member-group {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 248, 250, 0.98) 100%);
  border: 1px solid rgba(19, 63, 80, 0.07);
  box-shadow: 0 20px 46px rgba(15, 37, 50, 0.08);
  overflow: hidden;
}

.team-member-group::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(121, 228, 244, 0.1), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 214, 107, 0.08), transparent 28%);
  pointer-events: none;
}

.team-member-group-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
}

.team-member-group-kicker {
  margin: 0;
  color: #1796b5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-member-group-head h3 {
  margin: 0.45rem 0 0;
  color: #102939;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.team-member-group-note {
  margin: 0;
  max-width: 28rem;
  color: #5e7884;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: right;
}

.team-member-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1rem, 1.6vw, 1.35rem);
  align-items: start;
}

.team-member-grid--core {
  grid-template-columns: minmax(240px, 280px);
  justify-content: center;
}

.team-member-grid--specialists {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.team-member-grid--specialists > .tilted-member-card {
  grid-column: span 3;
}

.team-member-grid--specialists > .tilted-member-card:nth-child(5) {
  grid-column: 2 / span 3;
}

.team-member-grid--specialists > .tilted-member-card:nth-child(6) {
  grid-column: 5 / span 3;
}

.team-member-grid--specialists > .tilted-member-card:nth-child(7) {
  grid-column: 8 / span 3;
}

.team-member-grid--mascot {
  grid-template-columns: minmax(240px, 280px);
  justify-content: center;
}

.team-member-group--mascot .team-member-group-head {
  justify-content: center;
  text-align: center;
  align-items: center;
}

.team-member-group--mascot .team-member-group-note {
  text-align: center;
}

.tilted-member-card {
  position: relative;
  width: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  --caption-x: 0px;
  --caption-y: 0px;
  --caption-opacity: 0;
  --card-scale: 1;
}

.tilted-member-card--featured {
  max-width: 350px;
}

.tilted-member-scene {
  transform-style: preserve-3d;
  transition: transform 0.24s ease;
  transform:
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    scale(var(--card-scale));
}

.tilted-member-surface {
  position: relative;
  min-height: 0;
  padding: 0.92rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.7), transparent 26%),
    radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.36), transparent 22%),
    linear-gradient(180deg, #f2f0eb 0%, #ebe8e1 100%);
  box-shadow:
    0 22px 50px rgba(15, 37, 50, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.tilted-member-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, transparent 24%, rgba(0, 0, 0, 0.05) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.tilted-member-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16) 0%, transparent 44%),
    repeating-linear-gradient(
      45deg,
      rgba(95, 88, 74, 0.022) 0,
      rgba(95, 88, 74, 0.022) 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    );
  opacity: 0.75;
  pointer-events: none;
}

.tilted-member-overlay {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  right: 0.72rem;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  transform: translateZ(36px);
}

.tilted-member-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(126, 126, 126, 0.78);
  color: #ffffff;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(0.76rem, 0.82vw, 0.96rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.tilted-member-image {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 3rem;
  border-radius: 18px;
  object-fit: cover;
  filter: none;
  transform: translateZ(20px);
  box-shadow: 0 12px 24px rgba(15, 37, 50, 0.12);
}

.tilted-member-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  min-width: 0;
  max-width: calc(100% - 2rem);
  padding: 0.48rem 0.62rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: #2f3438;
  font-size: 0.72rem;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(15, 37, 50, 0.14);
  white-space: normal;
  text-align: center;
  opacity: var(--caption-opacity);
  transform: translate3d(var(--caption-x), calc(var(--caption-y) + 0.35rem), 40px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.tilted-member-card.is-tilting .tilted-member-tooltip {
  transform: translate3d(var(--caption-x), var(--caption-y), 40px);
}

.history-page-shell {
  padding-top: 6rem;
}

.history-hero {
  position: relative;
  padding: 3.5rem 0 1.75rem;
}

.history-hero-inner {
  max-width: 52rem;
}

.history-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cyan-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.history-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #0d2634;
}

.history-intro {
  margin: 1.2rem 0 0;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-body);
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.7rem;
  align-items: center;
}

.history-copy-card,
.history-image-card {
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.history-copy-card {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 254, 0.98) 100%);
}

.history-copy-header {
  margin-bottom: 1.5rem;
}

.history-section-label {
  margin: 0 0 0.65rem;
  color: #ab8618;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.history-copy-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.history-copy {
  display: grid;
  gap: 1.35rem;
}

.history-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: #274252;
}

.history-image-card {
  margin: 0;
  padding: clamp(0.85rem, 2.2vw, 1.15rem);
  background:
    radial-gradient(circle at 14% 14%, rgba(121, 228, 244, 0.22), transparent 22%),
    linear-gradient(180deg, #0c2332 0%, #13394f 100%);
  display: flex;
}

.history-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}

.mission-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.mission-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.hero-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mission {
  margin: 0 auto;
  max-width: 28rem;
  min-height: calc(1.85em * 3);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
}

.mission-text {
  text-align: center;
}

.js .hero-mission[data-full-text] {
  color: transparent;
}

.js .hero-mission.is-typing,
.js .hero-mission.is-complete {
  color: var(--text-body);
}

.js .hero-mission.is-typing::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 0.12em;
  vertical-align: -0.1em;
  background: var(--cyan-strong);
  animation: mission-caret-blink 0.9s step-end infinite;
}

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

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

.services-section {
  padding: 0.4rem 0 4.4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  --service-wash-start: #ffffff;
  --service-wash-end: #f5fbfe;
  --service-accent-soft: rgba(121, 228, 244, 0.24);
  --service-accent-strong: #1796b5;
  --service-chip-bg: rgba(23, 150, 181, 0.12);
  --service-chip-color: #126a79;
  --service-image-shift-y: 0px;
  position: relative;
  min-height: 350px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 61, 0.07);
  border-radius: 32px;
  background: linear-gradient(160deg, var(--service-wash-start) 0%, var(--service-wash-end) 100%);
  box-shadow:
    0 18px 42px rgba(7, 28, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-radius 0.4s ease;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 14%, var(--service-accent-soft) 0%, transparent 26%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.68) 0%, transparent 24%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  pointer-events: none;
  opacity: 0.85;
}

.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 28px 62px rgba(7, 28, 39, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-card:focus-visible {
  outline: 2px solid rgba(121, 228, 244, 0.44);
  outline-offset: 4px;
}

.service-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 1.55rem;
  border-radius: inherit;
  text-align: left;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.service-card-front {
  position: relative;
  gap: 1.25rem;
  justify-content: flex-start;
  opacity: 1;
}

.service-card-back {
  align-items: stretch;
  justify-content: stretch;
  opacity: 0;
  transform: rotateY(90deg) scale(0.94);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(242, 249, 252, 0.96) 100%);
}

.service-card-copy {
  width: 100%;
  height: 100%;
  max-width: none;
  padding: clamp(1.55rem, 3vw, 1.95rem);
  border: 1px solid rgba(12, 44, 61, 0.05);
  border-radius: calc(var(--radius-xl) - 0.3rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 24px rgba(7, 28, 39, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.service-card-copy-label {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: var(--service-chip-bg);
  color: var(--service-chip-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-copy-title {
  margin: 1rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0f2a3a;
}

.service-card:hover .service-card-front,
.service-card:focus-visible .service-card-front,
.service-card:focus-within .service-card-front {
  opacity: 0;
  transform: scale(0.9) translateY(10px);
}

.service-card:hover .service-card-back,
.service-card:focus-visible .service-card-back,
.service-card:focus-within .service-card-back {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
}

.service-card-front-copy {
  display: grid;
  gap: 0.9rem;
  max-width: calc(100% - 12rem);
  position: relative;
  z-index: 1;
}

.service-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 44, 61, 0.06);
  color: var(--service-accent-strong);
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(7, 28, 39, 0.05);
  justify-self: start;
}

.service-card-front-summary {
  margin: 0;
  max-width: 28ch;
  color: #496573;
  font-size: 0.98rem;
  line-height: 1.72;
}

.service-image-wrapper {
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: clamp(132px, 15vw, 176px);
  aspect-ratio: 1;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  margin: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.74);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(12, 44, 61, 0.04),
    0 16px 32px rgba(7, 28, 39, 0.1);
  transform: translateY(calc(-50% + var(--service-image-shift-y)));
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover .service-image-wrapper,
.service-card:focus-visible .service-image-wrapper,
.service-card:focus-within .service-image-wrapper {
  transform: translateY(calc(-50% + var(--service-image-shift-y) - 4px)) scale(1.02);
  box-shadow:
    inset 0 0 0 1px rgba(12, 44, 61, 0.04),
    0 20px 36px rgba(7, 28, 39, 0.14);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.service-card-front h2 {
  margin: 0;
  max-width: 8.5ch;
  font-size: clamp(2rem, 2.9vw, 3rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text-dark);
}

.service-card-title-wide {
  max-width: 10.5ch;
}

.service-card-back p {
  margin: 0.9rem 0 0;
  max-width: none;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.74;
  color: #355264;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 1.2rem;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(121, 228, 244, 0.9) 0%, rgba(255, 211, 95, 0.9) 100%);
  box-shadow: 0 14px 24px rgba(7, 28, 39, 0.08);
  color: #0c3543;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card-cta:hover,
.service-card-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(7, 28, 39, 0.12);
}

.service-card-news {
  --service-wash-start: #ffffff;
  --service-wash-end: #f3fbff;
  --service-accent-soft: rgba(121, 228, 244, 0.24);
  --service-accent-strong: #1796b5;
  --service-chip-bg: rgba(23, 150, 181, 0.12);
  --service-chip-color: #126a79;
  --service-image-shift-y: 14px;
}

.service-card-security {
  --service-wash-start: #fff9eb;
  --service-wash-end: #fffef9;
  --service-accent-soft: rgba(255, 211, 95, 0.28);
  --service-accent-strong: #b88300;
  --service-chip-bg: rgba(255, 211, 95, 0.22);
  --service-chip-color: #8f6a06;
}

.service-card-guidance {
  --service-wash-start: #fffdf4;
  --service-wash-end: #f8fcff;
  --service-accent-soft: rgba(255, 211, 95, 0.18);
  --service-accent-strong: #0f889c;
  --service-chip-bg: rgba(15, 136, 156, 0.12);
  --service-chip-color: #0f6d7d;
}

.service-card-awareness {
  --service-wash-start: #fbfeff;
  --service-wash-end: #f3fbff;
  --service-accent-soft: rgba(121, 228, 244, 0.2);
  --service-accent-strong: #1796b5;
  --service-chip-bg: rgba(23, 150, 181, 0.12);
  --service-chip-color: #126a79;
  --service-image-shift-y: 14px;
}

.faq-section {
  padding: 0 0 4.75rem;
  background:
    radial-gradient(circle at 12% 14%, rgba(121, 228, 244, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(244, 248, 251, 0) 0%, #f7fafc 1.5rem, #fbfdff 100%);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 6.85rem;
}

.faq-eyebrow {
  margin: 0 0 0.75rem;
  color: #ab8618;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-title {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #112a38;
}

.faq-lead {
  margin: 1rem 0 1.35rem;
  max-width: 31rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
}

.faq-figure-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border: 1px solid rgba(121, 228, 244, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(121, 228, 244, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(8, 23, 34, 0.98) 0%, rgba(19, 57, 79, 0.96) 100%);
  box-shadow: var(--shadow-xl);
}

.faq-figure-card::before {
  content: "";
  position: absolute;
  inset: auto auto -20% -12%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 95, 0.14) 0%, transparent 68%);
}

.faq-status {
  position: relative;
  z-index: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(121, 228, 244, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.5;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.faq-status[hidden] {
  display: none;
}

.faq-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 340px;
  display: grid;
  place-items: center;
}

.faq-figure::before {
  content: "";
  position: absolute;
  width: 78%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(121, 228, 244, 0.26) 0%, rgba(121, 228, 244, 0.08) 44%, transparent 72%);
  filter: blur(3px);
}

.faq-figure-image {
  position: relative;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(3, 12, 18, 0.38));
  transform-origin: center bottom;
}

.faq-figure-card.is-speaking .faq-status {
  transform: translateY(-2px);
  background: rgba(121, 228, 244, 0.12);
  border-color: rgba(121, 228, 244, 0.34);
}

.faq-figure-card.is-speaking .faq-figure-image {
  animation: faq-host-speak 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes faq-host-speak {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  30% {
    transform: translateY(-6px) rotate(-1.4deg);
  }

  68% {
    transform: translateY(-1px) rotate(1.15deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.faq-conversation {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0.45rem 0 0.45rem 1.2rem;
}

.faq-conversation::before {
  content: "";
  position: absolute;
  top: 0.95rem;
  bottom: 0.95rem;
  left: 0.45rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(26, 163, 188, 0.22) 0%, rgba(26, 163, 188, 0.6) 100%);
}

.faq-item {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding-left: 1.35rem;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: -0.03rem;
  width: 0.95rem;
  height: 0.95rem;
  border: 2px solid rgba(26, 163, 188, 0.42);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(121, 228, 244, 0.12);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.faq-card {
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 254, 0.98) 100%);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  background: linear-gradient(180deg, rgba(121, 228, 244, 0.16) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.faq-answer {
  margin-left: clamp(0rem, 4vw, 3.1rem);
}

.faq-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(26, 163, 188, 0.12);
  color: #146f80;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-chip-answer {
  background: rgba(255, 211, 95, 0.2);
  color: #9f7a07;
}

.faq-card h2,
.faq-card h3 {
  margin: 0.72rem 0 0;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #1a2d3a;
}

.faq-card p {
  margin: 0.72rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #274252;
}

.js [data-faq-step] .faq-question,
.js [data-faq-step] .faq-answer {
  opacity: 0;
  transform: translateY(24px);
  transition:
    transform 0.55s ease,
    opacity 0.55s ease,
    box-shadow 0.35s ease;
}

.js [data-faq-step].is-question-visible::before,
.js [data-faq-step].is-complete::before {
  border-color: rgba(26, 163, 188, 0.96);
  box-shadow: 0 0 0 8px rgba(121, 228, 244, 0.18);
  transform: scale(1.04);
}

.js [data-faq-step].is-question-visible .faq-question {
  opacity: 1;
  transform: translateY(0);
}

.js [data-faq-step].is-answer-visible .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.js [data-faq-step].is-answer-visible .faq-card {
  box-shadow: 0 24px 58px rgba(7, 28, 39, 0.14);
}

.blog-hero-section {
  position: relative;
  padding: clamp(1.3rem, 4vw, 3rem) 0 2.8rem;
  isolation: isolate;
}

.blog-hero-section::before {
  content: "";
  position: absolute;
  inset: 1.8rem 0 auto;
  height: 18rem;
  background:
    radial-gradient(circle at 16% 28%, rgba(121, 228, 244, 0.14), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(255, 211, 95, 0.12), transparent 20%);
  filter: blur(18px);
  opacity: 0.82;
  pointer-events: none;
  z-index: -1;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 1.5rem;
  align-items: stretch;
}

.blog-hero-copy,
.blog-hero-figure,
.blog-admin-card,
.blog-post-card {
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 249, 252, 0.96) 100%);
  box-shadow: 0 24px 64px rgba(7, 28, 39, 0.1);
}

.blog-hero-copy {
  position: relative;
  padding: clamp(1.7rem, 3vw, 2.7rem);
  overflow: hidden;
}

.blog-hero-copy::before,
.blog-hero-figure::before {
  content: "";
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  pointer-events: none;
}

.blog-hero-copy::before {
  left: -4rem;
  bottom: -5rem;
  background: radial-gradient(circle, rgba(121, 228, 244, 0.16) 0%, rgba(121, 228, 244, 0) 72%);
}

.blog-hero-figure {
  position: relative;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  overflow: hidden;
}

.blog-hero-figure::before {
  top: -4rem;
  right: -4rem;
  background: radial-gradient(circle, rgba(255, 211, 95, 0.18) 0%, rgba(255, 211, 95, 0) 72%);
}

.blog-eyebrow,
.blog-section-label {
  margin: 0 0 0.8rem;
  color: #ab8618;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-title {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #0e2b39;
}

.blog-intro {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  font-size: 1.04rem;
  line-height: 1.85;
  color: #587182;
}

.blog-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.blog-feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #16384a;
  font-size: 0.87rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(7, 28, 39, 0.05);
}

.blog-hero-image {
  position: relative;
  z-index: 1;
  width: min(280px, 100%);
  height: auto;
  object-fit: contain;
}

.blog-hero-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 26rem;
  text-align: center;
  color: #4b6777;
  font-size: 0.98rem;
  line-height: 1.75;
}

.blog-content-section {
  padding: 0 0 4.75rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 1rem;
  align-items: start;
}

.blog-feed-shell {
  display: grid;
  gap: 1rem;
}

.blog-feed-head {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 253, 0.98) 100%);
  box-shadow: 0 20px 48px rgba(7, 28, 39, 0.08);
}

.blog-feed-head h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #112c3a;
}

.blog-feed-intro {
  margin: 0.95rem 0 0;
  max-width: 38rem;
  color: #577181;
  font-size: 1rem;
  line-height: 1.8;
}

.blog-feed {
  display: grid;
  gap: 1rem;
}

.blog-post-card {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.blog-post-card--local {
  border-color: rgba(26, 163, 188, 0.28);
  box-shadow:
    0 26px 58px rgba(7, 28, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.blog-post-type,
.blog-post-topic,
.blog-post-flag,
.blog-admin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-post-type {
  background: rgba(23, 150, 181, 0.12);
  color: #126a79;
}

.blog-post-topic {
  background: rgba(255, 211, 95, 0.24);
  color: #8b6805;
}

.blog-post-flag,
.blog-admin-pill {
  background: rgba(17, 112, 85, 0.12);
  color: #0f6d4d;
}

.blog-post-date {
  margin-left: auto;
  color: #5d7685;
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-post-title {
  margin: 1rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #102633;
}

.blog-post-summary {
  margin: 0.85rem 0 0;
  color: #426172;
  font-size: 1rem;
  line-height: 1.78;
}

.blog-post-media {
  margin: 1.05rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 24px;
  background: rgba(236, 243, 247, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.blog-post-image {
  display: block;
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.blog-post-body {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  color: #274252;
}

.blog-post-body p {
  margin: 0;
  line-height: 1.82;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: #0d6d7d;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.blog-post-link:hover,
.blog-post-link:focus-visible {
  color: #084f5c;
}

.blog-admin-panel {
  position: sticky;
  top: 6.85rem;
  display: grid;
  gap: 0.8rem;
  width: 100%;
  max-width: 320px;
  justify-self: end;
  align-self: start;
}

.blog-admin-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(7, 28, 39, 0.09);
}

.blog-admin-title {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #112c3a;
}

.blog-admin-note,
.blog-storage-note {
  margin: 0.7rem 0 0;
  color: #587182;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-storage-note {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.blog-unlock-form,
.blog-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.blog-field {
  display: grid;
  gap: 0.45rem;
}

.blog-field label {
  color: #173648;
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-field-hint {
  margin: 0;
  color: #607989;
  font-size: 0.88rem;
  line-height: 1.65;
}

.blog-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(12, 44, 61, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #102633;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-input:focus-visible {
  outline: none;
  border-color: rgba(26, 163, 188, 0.6);
  box-shadow: 0 0 0 4px rgba(121, 228, 244, 0.18);
}

.blog-input-file {
  padding: 0.52rem 0.6rem;
}

.blog-input-file::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.6rem 0.82rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(121, 228, 244, 0.96) 0%, rgba(255, 211, 95, 0.96) 100%);
  color: #093645;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

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

.blog-textarea-short {
  min-height: 110px;
}

.blog-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(121, 228, 244, 0.96) 0%, rgba(255, 211, 95, 0.96) 100%);
  box-shadow: 0 16px 28px rgba(7, 28, 39, 0.1);
  color: #093645;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-button:hover,
.blog-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(7, 28, 39, 0.14);
}

.blog-button-secondary {
  background: #ffffff;
  border: 1px solid rgba(12, 44, 61, 0.12);
  box-shadow: none;
  color: #164050;
}

.blog-button-secondary:hover,
.blog-button-secondary:focus-visible {
  box-shadow: 0 12px 24px rgba(7, 28, 39, 0.08);
}

.blog-unlock-form > .blog-button {
  justify-self: start;
  width: auto;
}

.blog-post-title-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-post-title-link:hover,
.blog-post-title-link:focus-visible {
  color: #1796b5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #1796b5;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-read-more:hover,
.blog-read-more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Article detail page ── */
.article-page-shell {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.article-page-container {
  max-width: 980px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.75rem;
  color: #1796b5;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.article-back-link:hover,
.article-back-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-full-card {
  padding: clamp(1.6rem, 4vw, 2.9rem);
  border: 1px solid rgba(26, 163, 188, 0.28);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 249, 252, 0.96) 100%);
  box-shadow:
    0 26px 58px rgba(7, 28, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.article-full-title {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.9vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #102633;
}

.article-full-media {
  margin-top: 1.45rem;
}

.article-full-byline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(12, 44, 61, 0.1);
}

.article-full-author,
.article-full-date {
  margin: 0;
  color: #3f6473;
  font-size: 0.98rem;
  font-weight: 700;
}

.article-full-body {
  margin-top: 1.5rem;
  color: #274252;
}

.article-full-body > *:first-child {
  margin-top: 0;
}

.article-full-body > * + * {
  margin-top: 1.3rem;
}

.article-full-body p,
.article-full-body li,
.article-editor-canvas p,
.article-editor-canvas li {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-full-body h2,
.article-editor-canvas h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #102633;
}

.article-full-body h3,
.article-editor-canvas h3 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.16rem, 1.7vw, 1.45rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #12384a;
}

.article-full-body ul,
.article-full-body ol,
.article-editor-canvas ul,
.article-editor-canvas ol {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.5rem;
}

.article-full-body a,
.article-editor-canvas a {
  color: #0d7184;
}

.article-full-body a:hover,
.article-full-body a:focus-visible,
.article-editor-canvas a:hover,
.article-editor-canvas a:focus-visible {
  color: #084d59;
}

.article-callout {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-left: 4px solid #1796b5;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(230, 246, 250, 0.95) 0%, rgba(244, 251, 253, 0.98) 100%);
  color: #124455;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 600;
}

.article-full-body hr {
  border: none;
  border-top: 1px solid rgba(12, 44, 61, 0.12);
  margin: 1.9rem 0;
}

.article-inline-figure {
  margin: 0;
}

.article-inline-image {
  display: block;
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(12, 44, 61, 0.08);
  box-shadow: 0 18px 42px rgba(7, 28, 39, 0.08);
}

.article-full-body figcaption {
  margin-top: 0.7rem;
  color: #628190;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: center;
}

.article-layout {
  display: grid;
  gap: 1rem;
}

.article-layout-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-layout-column {
  padding: 1.1rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 251, 253, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.article-page-loading,
.article-page-not-found {
  color: #587182;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.blog-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(200, 40, 40, 0.35);
  border-radius: 999px;
  background: rgba(255, 235, 235, 0.7);
  color: #b91c1c;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.blog-delete-btn:hover,
.blog-delete-btn:focus-visible {
  background: rgba(254, 202, 202, 0.9);
  border-color: rgba(185, 28, 28, 0.6);
}

.blog-feedback {
  margin: 0.7rem 0 0;
  color: #2e5a69;
  font-size: 0.88rem;
  line-height: 1.55;
}

.blog-feedback.is-error {
  color: #9f3427;
}

.blog-feedback.is-success {
  color: #0f6d4d;
}

.blog-admin-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.blog-admin-panel.is-unlocked .blog-admin-lock {
  display: none;
}

.blog-admin-panel:not(.is-unlocked) .blog-composer {
  display: none;
}

.blog-admin-action-card {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.95rem;
  padding: 1rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 253, 0.95) 100%);
}

.blog-admin-subtitle {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: #112c3a;
}

/* ── Blog section blocks ── */
.blog-section-block {
  display: grid;
  gap: 1rem;
}

.blog-section-heading {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #112c3a;
}

.blog-section-divider {
  margin: 0;
  border: none;
  border-top: 1.5px solid rgba(12, 44, 61, 0.1);
}

.blog-feed-empty {
  margin: 0;
  color: #7a9aaa;
  font-size: 0.95rem;
}

/* ── Iggy Tips grid ── */
.iggy-tips-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.iggy-tip-card {
  margin: 0;
  border: 1.5px solid rgba(12, 44, 61, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 28, 39, 0.07);
  display: flex;
  flex-direction: column;
}

.iggy-tip-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.iggy-tip-caption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #112c3a;
  line-height: 1.4;
  text-align: center;
}

/* ── Admin post-type tabs ── */
.blog-type-tabs {
  display: flex;
  gap: 0.4rem;
  margin: 0.85rem 0 0;
  padding: 0.3rem;
  border: 1px solid rgba(12, 44, 61, 0.1);
  border-radius: 999px;
  background: rgba(240, 247, 250, 0.8);
}

.blog-type-tab {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #4d6e7e;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.blog-type-tab.is-active {
  background: #ffffff;
  color: #0c3345;
  box-shadow: 0 2px 8px rgba(7, 28, 39, 0.1);
}

/* ── Lock button spacing ── */
.blog-lock-btn {
  margin-top: 0.6rem;
  width: 100%;
}

/* ── Article editor page ── */
.article-editor-page-shell {
  padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.article-editor-page {
  display: grid;
  gap: 1rem;
}

.article-editor-gate {
  max-width: 760px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.article-editor-page-title {
  margin: 0.3rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #102633;
}

.article-editor-page-title--workspace {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.article-editor-page-copy {
  margin: 0.8rem 0 0;
  max-width: 45rem;
  color: #486676;
  font-size: 1rem;
  line-height: 1.8;
}

.article-editor-workspace {
  display: grid;
  gap: 1rem;
}

.article-editor-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.article-editor-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.article-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
  gap: 1rem;
  align-items: start;
}

.article-editor-main,
.article-editor-sidebar {
  min-width: 0;
}

.article-editor-sidebar {
  position: sticky;
  top: 6.85rem;
  display: grid;
  gap: 1rem;
}

.article-editor-sheet,
.article-editor-sidecard {
  padding: clamp(1rem, 2.5vw, 1.3rem);
}

.article-editor-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.article-editor-field-title {
  grid-column: 1 / -1;
}

.article-editor-toolbar-shell {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 24px;
  background: rgba(247, 251, 253, 0.96);
}

.article-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: end;
}

.article-editor-toolbar-field {
  display: grid;
  gap: 0.35rem;
  min-width: 150px;
}

.article-editor-toolbar-field--compact {
  min-width: 92px;
}

.article-editor-toolbar-field span {
  color: #4f6c7c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-editor-color {
  width: 100%;
  min-height: 3rem;
  padding: 0.22rem;
  border: 1px solid rgba(12, 44, 61, 0.12);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
}

.article-editor-toolbar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-editor-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(12, 44, 61, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #113648;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.article-editor-tool:hover,
.article-editor-tool:focus-visible {
  border-color: rgba(26, 163, 188, 0.45);
  box-shadow: 0 10px 24px rgba(7, 28, 39, 0.08);
}

.article-editor-canvas-shell {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(26, 163, 188, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(124, 220, 242, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 220, 118, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(247, 251, 253, 0.98) 0%, rgba(239, 247, 250, 0.96) 100%);
}

.article-editor-canvas {
  display: grid;
  gap: 0.9rem;
  min-height: 640px;
  padding: 1rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.article-editor-canvas.is-empty::before {
  content: "Drag a layout block here or click a block from the insert panel.";
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 1rem;
  border: 1.5px dashed rgba(26, 163, 188, 0.3);
  border-radius: 22px;
  color: #7a96a4;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.article-editor-canvas.is-drop-at-end {
  box-shadow: inset 0 -4px 0 rgba(23, 150, 181, 0.7);
}

.editor-block {
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(7, 28, 39, 0.05);
}

.editor-block.is-active {
  border-color: rgba(26, 163, 188, 0.4);
  box-shadow:
    0 16px 30px rgba(7, 28, 39, 0.08),
    0 0 0 3px rgba(121, 228, 244, 0.16);
}

.editor-block.is-drop-target {
  outline: 2px solid rgba(23, 150, 181, 0.55);
  outline-offset: 2px;
}

.editor-block.is-dragging {
  opacity: 0.55;
}

.editor-block-chrome {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.editor-block-label,
.editor-column-label {
  margin: 0;
  color: #5f7a89;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editor-block-handle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(12, 44, 61, 0.12);
  border-radius: 14px;
  background: rgba(246, 250, 252, 0.98);
  color: #365766;
  font: inherit;
  font-weight: 800;
  cursor: grab;
}

.editor-block-delete {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #ad1d1d;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.editor-block-surface {
  display: grid;
  gap: 0.9rem;
}

.editor-block-surface--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.editor-column-shell {
  display: grid;
  gap: 0.6rem;
  padding: 0.9rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 20px;
  background: rgba(248, 251, 253, 0.98);
}

.editor-block-editable {
  min-height: 92px;
  outline: none;
}

.editor-block-editable--caption {
  min-height: 28px;
}

.editor-block-editable:empty::before {
  content: attr(data-placeholder);
  color: #91a6b1;
}

.editor-divider-preview {
  display: grid;
  place-items: center;
  min-height: 48px;
}

.editor-divider-preview span {
  display: block;
  width: 100%;
  border-top: 1px solid rgba(12, 44, 61, 0.14);
}

.editor-image-frame {
  overflow: hidden;
  border: 1px dashed rgba(26, 163, 188, 0.28);
  border-radius: 22px;
  background: rgba(242, 248, 251, 0.96);
}

.editor-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 1rem;
  color: #7a96a4;
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
}

.editor-image-preview {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.editor-image-controls {
  display: flex;
  justify-content: flex-start;
}

.editor-image-button {
  width: auto;
}

.article-editor-blocks {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.article-editor-block-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 0.88rem 0.95rem;
  border: 1px solid rgba(12, 44, 61, 0.1);
  border-radius: 18px;
  background: #ffffff;
  color: #12384a;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: grab;
  text-align: left;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.article-editor-block-btn:hover,
.article-editor-block-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(26, 163, 188, 0.35);
  box-shadow: 0 14px 28px rgba(7, 28, 39, 0.08);
}

.article-editor-draft-status {
  margin: 1rem 0 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(12, 44, 61, 0.08);
  border-radius: 16px;
  background: rgba(247, 251, 253, 0.98);
  color: #436474;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .article-editor-grid {
    grid-template-columns: 1fr;
  }

  .article-editor-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .article-layout-two-column,
  .editor-block-surface--columns,
  .article-editor-fields {
    grid-template-columns: 1fr;
  }

  .article-editor-topbar {
    flex-direction: column;
  }

  .article-editor-topbar-actions {
    justify-content: flex-start;
  }

  .article-editor-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .article-editor-toolbar-field,
  .article-editor-toolbar-field--compact {
    min-width: 0;
  }

  .article-editor-toolbar-buttons {
    width: 100%;
  }
}

.footer {
  background: #081722;
  border-top: 1px solid rgba(121, 228, 244, 0.14);
  padding: 1.2rem 0 1.35rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-brand,
.footer-email-text {
  margin: 0;
}

.footer-email-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
}

.footer-brand {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.footer-email-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.social-icon {
  width: auto;
  height: 1.2rem;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .team-roster-highlight {
    grid-template-columns: 1fr;
  }

  .team-roster-members {
    grid-template-columns: 1fr;
  }

  .tilted-member-card--featured {
    max-width: 350px;
  }

  .team-member-grid--specialists {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-member-grid--specialists > .tilted-member-card,
  .team-member-grid--specialists > .tilted-member-card:nth-child(5),
  .team-member-grid--specialists > .tilted-member-card:nth-child(6),
  .team-member-grid--specialists > .tilted-member-card:nth-child(7) {
    grid-column: auto;
  }
}

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

  .blog-hero-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .team-hero-grid {
    grid-template-columns: 1fr;
  }

  .team-roster-highlight {
    grid-template-columns: 1fr;
  }

  .tilted-member-card--featured {
    max-width: 350px;
  }

  .team-member-grid--specialists {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-member-grid--specialists > .tilted-member-card,
  .team-member-grid--specialists > .tilted-member-card:nth-child(5),
  .team-member-grid--specialists > .tilted-member-card:nth-child(6),
  .team-member-grid--specialists > .tilted-member-card:nth-child(7) {
    grid-column: auto;
  }

  .history-layout {
    grid-template-columns: 1fr;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .blog-admin-panel {
    position: static;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding-top: 1rem;
  }

  .blog-title {
    max-width: none;
  }

  .history-hero {
    padding: 2.4rem 0 1.3rem;
  }

  .history-title {
    max-width: none;
  }

  .team-title {
    max-width: none;
  }

  .team-quote-card {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .team-members-head h2 {
    max-width: none;
  }

  .team-member-group-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-roster-member {
    padding: 1rem;
  }

  .team-member-group-note {
    max-width: none;
    text-align: left;
  }

  .team-hero-figure {
    padding-bottom: 0;
  }

  .faq-title {
    max-width: none;
  }

  .faq-figure {
    min-height: 280px;
  }

  .faq-answer {
    margin-left: 0;
  }

  .blog-post-date {
    margin-left: 0;
  }

  .blog-admin-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 1.1rem));
  }

  .menu-toggle {
    left: 0.1rem;
  }

  .history-page-shell {
    padding-top: 5.4rem;
  }

  .history-copy-card,
  .history-image-card {
    border-radius: 24px;
  }

  .blog-hero-copy,
  .blog-hero-figure,
  .blog-feed-head,
  .blog-post-card,
  .blog-admin-card,
  .team-intro-card,
  .team-image-shell,
  .team-quote-card,
  .tilted-member-surface {
    border-radius: 24px;
  }

  .team-image {
    border-radius: 18px;
  }

  .team-members-shell {
    width: min(1360px, calc(100% - 1.1rem));
  }

  .team-roster-highlight,
  .team-member-group {
    border-radius: 24px;
  }

  .team-member-grid--core,
  .team-member-grid--specialists,
  .team-member-grid--mascot {
    grid-template-columns: 1fr;
  }

  .tilted-member-card--featured {
    max-width: none;
  }

  .tilted-member-surface {
    padding: 0.82rem;
  }

  .tilted-member-image {
    margin-top: 2.8rem;
    border-radius: 18px;
  }

  .tilted-member-overlay {
    top: 0.72rem;
    left: 0.72rem;
    right: 0.72rem;
  }

  .tilted-member-overlay span {
    min-height: 2.45rem;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }

  .tilted-member-tooltip {
    max-width: calc(100% - 1rem);
    font-size: 0.78rem;
  }

  .tilted-member-tooltip {
    display: none;
  }

  .history-image {
    border-radius: 18px;
  }

  .service-card {
    border-radius: 24px;
    min-height: 300px;
  }

  .faq-figure-card,
  .faq-card {
    border-radius: 24px;
  }

  .faq-conversation {
    padding-left: 0.95rem;
  }

  .faq-item {
    padding-left: 1.05rem;
  }

  .footer-inner,
  .footer-copy {
    align-items: center;
    text-align: center;
  }

  .hero-mission {
    min-height: calc(1.85em * 4);
  }
}

@media (hover: none) {
  .service-card {
    min-height: auto;
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
  }

  .service-card-face {
    position: static;
    padding: 0;
    opacity: 1;
    transform: none;
    background: transparent;
  }

  .service-card-front {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .service-card-front-copy {
    max-width: none;
  }

  .service-card-copy {
    max-width: none;
  }

  .service-image-wrapper {
    position: static;
    width: clamp(124px, 38vw, 168px);
    margin-left: auto;
    margin-top: 0.5rem;
    transform: none;
  }
}
