:root {
  --brand-teal: #0f9d8e;
  --brand-teal-dark: #0b7f73;
  --brand-green: #12b76a;
  --navy: #012663;
  --grad-brand: linear-gradient(105deg, #052536 0%, #0a4c5e 48%, #15939f 100%);
  --ink: #012663;
  --muted: #5b6c7a;
  --black: #000000;
  --line: #e3ebf2;
  --bg: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(6, 18, 28, 0.12);
  --shadow-sm: 0 12px 32px rgba(6, 18, 28, 0.07);
  --header-h: 76px;
  --container: 1180px;
  --display: "Instrument Sans", "Manrope", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  color: var(--black);
  background: #f7f9fb;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app main {
  flex: 1;
}

.page-fallback {
  min-height: 40vh;
}

@media (max-width: 980px) {
  .offerings,
  .story-section,
  .process-section,
  .why-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 640px;
  }

  .hero-photo,
  .hero-panel {
    animation: none;
  }
}

h1,
h2,
h3,
h4,
strong,
b {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-enter {
  animation: pageIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

.kicker {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-teal-dark);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.kicker-plain::before {
  content: none;
}

.section {
  padding: 5px 0;
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.section-lead {
  margin: 0 0 28px;
  max-width: 940px;
  color: var(--black);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 16px;
  background:
    radial-gradient(circle at 90% 0, rgba(15, 157, 142, 0.16), transparent 28%),
    linear-gradient(180deg, #ecf4f2, #f7f9fb 70%);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.page-hero p {
  margin: 0;
  max-width: 940px;
  color: var(--black);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: #111827;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.2);
}

.btn-green:hover {
  background: #0b7f73;
  box-shadow: 0 16px 34px rgba(11, 127, 115, 0.28);
}

.btn-green:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid #d5e0e8;
}

.btn-outline:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-dark);
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 40px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .page-enter,
  .reveal,
  .skeleton-block,
  .skeleton-line {
    animation: none !important;
  }

  .career-opening-plus,
  .career-opening-panel,
  .career-opening-body,
  .header-nav,
  .nav-backdrop,
  .menu-toggle span,
  .nav-dropdown,
  .chevron {
    transition: none;
  }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(6, 18, 28, 0.06);
}

.header-shell {
  width: 100%;
}

.header-bar {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.header-brand {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 42px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  appearance: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: #eef5f3;
}

.nav-link.active {
  color: var(--brand-teal-dark);
}

.nav-item {
  position: relative;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-item.is-open .chevron {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-inner {
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 981px) {
  .nav-item.is-open .chevron {
    transform: rotate(225deg) translateY(-1px);
  }

  .nav-item.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-link {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: #eef8f6;
  color: var(--brand-teal-dark);
}

.header-contact {
  padding: 5px 18px;
}

.mobile-only {
  display: none;
}

.nav-backdrop {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 12px;
  position: relative;
  z-index: 70;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: #eef3f6;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease, width 0.28s ease, left 0.28s ease;
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }

  .site-header.is-open {
    background: #fff;
    border-bottom-color: var(--line);
  }

  .header-bar {
    display: flex;
    grid-template-columns: unset;
    justify-content: space-between;
  }

  .desktop-only { display: none; }

  .mobile-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .menu-toggle { display: inline-flex; }

  .header-shell {
    position: relative;
    z-index: 70;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 55;
    border: 0;
    padding: 0;
    background: rgba(6, 18, 28, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: min(78dvh, calc(100dvh - var(--header-h)));
    padding: 10px 16px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 24px 48px rgba(6, 18, 28, 0.12);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.22s ease, visibility 0.22s ease;
  }

  .header-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    padding: 15px 6px;
    border-radius: 0;
    background: transparent;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-bottom: 1px solid #eef2f5;
  }

  .nav-link:hover,
  .nav-link.active {
    background: transparent;
  }

  .nav-item {
    display: flex;
    flex-direction: column;
  }

  .nav-item .nav-trigger {
    border-bottom-color: #eef2f5;
  }

  .nav-item.is-open .nav-trigger {
    color: var(--brand-teal-dark);
    border-bottom-color: transparent;
  }

  .nav-dropdown {
    position: static;
    left: auto;
    top: auto;
    display: grid;
    grid-template-rows: 0fr;
    min-width: 0;
    margin: 0 0 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    transition: grid-template-rows 0.28s ease;
  }

  .nav-dropdown-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 0 6px 8px;
  }

  .nav-item.is-open .nav-dropdown {
    grid-template-rows: 1fr;
    pointer-events: auto;
  }

  .dropdown-link {
    padding: 11px 8px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
  }
}

/* Footer */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  color: #d7eef2;
  padding: 30px 0 22px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("Images/footer_bg.png") center / cover no-repeat;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.9fr 0.85fr 1fr;
  gap: 24px;
  align-items: start;
}

.site-footer .container {
  width: min(1280px, calc(100% - 40px));
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.footer-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.playstore-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.qr-wrap {
  position: relative;
  width: 118px;
  height: 118px;
  padding: 8px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qr-mark {
  position: absolute;
  width: 28px;
  height: 28px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
}

.footer-block h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.footer-block p + h3,
.footer-block .footer-contact + h3 {
  margin-top: 18px;
}

.footer-block p,
.footer-block li,
.footer-block a {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.footer-block strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 600;
}

.footer-contact {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.footer-contact li + li {
  margin-top: 8px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(8, 28, 40, 0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(8, 28, 40, 0.35);
  color: #fff;
}

.play-badge small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.play-icon {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(135deg, #34a853 0 33%, #fbbc04 33% 50%, #ea4335 50% 68%, #4285f4 68%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.footer-subscribe {
  min-width: 0;
}

.footer-subscribe h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.footer-subscribe form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.footer-subscribe label {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.footer-subscribe input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #111;
  outline: none;
}

.footer-subscribe input::placeholder {
  color: #6b7280;
}

.footer-subscribe input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

.footer-subscribe button {
  align-self: flex-start;
  height: 34px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-subscribe button:hover:not(:disabled) {
  background: #e8e8e8;
}

.footer-subscribe button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer-subscribe-success {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.footer-subscribe-error {
  margin: 0;
  color: #fecaca;
  font-size: 13px;
}

.footer-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-copy .footer-social {
  justify-self: start;
}

.footer-copy-legal {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0;
}

.footer-copy-legal a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy a:hover,
.site-footer a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

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

  .footer-subscribe button {
    width: 100%;
  }

  .footer-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy .footer-social {
    justify-content: center;
  }

  .footer-copy-legal {
    grid-column: auto;
  }
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Home */

.home-fold {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
}

.hero {
  --mx: 70%;
  --my: 30%;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 157, 142, 0.14), transparent 26%),
    linear-gradient(180deg, #eef5f3 0%, #f7f9fb 70%);
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(520px circle at var(--mx) var(--my), rgba(15, 157, 142, 0.18), transparent 42%);
  transition: background 0.08s linear;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 14px;
  max-width: 620px;
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #0b7f73 0%, #14b8a6 42%, #38bdf8 72%, #0b7f73 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5s ease infinite, glowPulse 2.8s ease-in-out infinite;
}

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

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(20, 184, 166, 0.2)); }
  50% { filter: drop-shadow(0 0 14px rgba(20, 184, 166, 0.55)); }
}

.hero .kicker {
  margin: 0 0 10px;
}

.hero-lead {
  margin: 0 0 18px;
  max-width: 540px;
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #dce7ee;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.hero-metrics span {
  margin-top: 4px;
  color: var(--black);
  font-size: 12px;
}

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

.hero-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-photo-main {
  width: 78%;
  height: 320px;
  right: 0;
  top: 28px;
  animation: floaty 7s ease-in-out infinite;
}

.hero-photo-alt {
  width: 46%;
  height: 160px;
  left: 0;
  bottom: 0;
  border: 6px solid #f7f9fb;
  animation: floaty 8s ease-in-out infinite reverse;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: 4%;
  top: 8px;
  width: 230px;
  padding: 16px 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  animation: floaty 6.5s ease-in-out infinite;
}

.hero-panel span,
.hero-panel h3,
.hero-panel p {
  margin: 0;
}

.panel-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: live 1.8s ease-out infinite;
}

@keyframes live {
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-panel span {
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
}

.hero-panel h3 {
  margin: 8px 0 12px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.panel-bars {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.panel-bars i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, #14b8a6, #d1fae5);
  animation: fill 2.8s ease infinite;
}

.panel-bars i:nth-child(1) { width: 92%; }
.panel-bars i:nth-child(2) { width: 74%; animation-delay: 0.2s; }
.panel-bars i:nth-child(3) { width: 86%; animation-delay: 0.4s; }
.panel-bars i:nth-child(4) { width: 61%; animation-delay: 0.6s; }

@keyframes fill {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.4); }
}

.hero-panel p {
  color: var(--black);
  font-size: 12px;
  line-height: 1.5;
}

.ticker {
  flex-shrink: 0;
  overflow: hidden;
  border-top: 1px solid #e4ecef;
  border-bottom: 1px solid #e4ecef;
  background: #fff;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 12px 0;
  animation: marquee 28s linear infinite;
}

.ticker-track span {
  color: #5b21b6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(139, 92, 246, 0.7),
    0 0 18px rgba(91, 33, 182, 0.45);
  animation: tickerGlow 2.6s ease-in-out infinite;
}

.ticker-track span:nth-child(even) {
  animation-delay: 0.7s;
}

@keyframes tickerGlow {
  0%, 100% {
    color: #4c1d95;
    text-shadow:
      0 0 6px rgba(91, 33, 182, 0.45),
      0 0 14px rgba(139, 92, 246, 0.3);
  }
  50% {
    color: #7c3aed;
    text-shadow:
      0 0 10px rgba(139, 92, 246, 0.9),
      0 0 22px rgba(91, 33, 182, 0.65),
      0 0 34px rgba(167, 139, 250, 0.4);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.customer-logos {
  padding: 28px 0 8px;
}

.customer-logos .kicker {
  margin-bottom: 18px;
}

.customer-logos-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.customer-logos-track {
  display: flex;
  width: max-content;
  animation: customer-marquee 42s linear infinite;
}

.customer-logos-set {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 10px 14px;
  list-style: none;
  background: #fff;
}

.customer-logos-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 64px;
  flex: 0 0 148px;
}

.customer-logos-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.customer-logos-item.is-wide {
  width: 200px;
  height: 56px;
  flex-basis: 200px;
}

.customer-logos-item.is-wide img {
  object-fit: contain;
  transform: scale(1.35);
}

.customer-logos-item.is-large {
  width: 176px;
  height: 86px;
  flex-basis: 176px;
}

.customer-logos-item.is-large img {
  transform: scale(1.2);
}

.customer-logos:hover .customer-logos-track {
  animation-play-state: paused;
}

@keyframes customer-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.offerings {
  padding-top: 48px;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bento > .reveal {
  display: flex;
  height: 100%;
}

.bento-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 210px;
  width: 100%;
  padding: 28px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: #b9e5dc;
  box-shadow: var(--shadow);
}

.bento-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-teal-dark);
}

.bento-card h3 {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bento-card p {
  margin: 0 0 24px;
  color: var(--black);
  line-height: 1.7;
}

.bento-card em {
  margin-top: auto;
  font-style: normal;
  font-weight: 600;
  color: var(--brand-teal-dark);
}

.story-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0 12px;
}

.story-section-alt {
  padding-top: 8px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.story-grid-flip {
  grid-template-columns: 0.95fr 1.05fr;
}

.story-grid-flip .story-media {
  order: -1;
}

.story-copy {
  position: relative;
}

.story-index {
  position: absolute;
  top: -22px;
  left: -8px;
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  color: rgba(1, 38, 99, 0.06);
  pointer-events: none;
}

.story-copy .kicker,
.story-copy .section-title,
.story-copy .section-lead,
.story-copy .story-points,
.story-copy .story-tiles {
  position: relative;
  z-index: 1;
}

.story-copy .section-title {
  max-width: 25ch;
}

.story-copy .section-title em {
  font-style: normal;
  color: var(--brand-teal-dark);
}

.story-copy .section-lead {
  max-width: 99ch;
}

.story-points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.story-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.story-points li span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(160deg, #e7fbf7, #d8f3ee);
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.story-tiles {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-tiles li {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--black);
  font-size: 14px;
  line-height: 1.55;
}

.story-tiles strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.story-media {
  position: relative;
  min-height: 360px;
}

.story-orbit {
  position: absolute;
  width: 78%;
  height: 78%;
  right: -6%;
  top: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(15, 157, 142, 0.45);
  box-shadow: 0 0 0 18px rgba(15, 157, 142, 0.06);
  pointer-events: none;
}

.story-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 36px 12px 36px 12px;
  background: #e8f4f1;
  box-shadow: var(--shadow);
}

.story-media-dark .story-frame {
  border-radius: 12px 36px 12px 36px;
  background:
    radial-gradient(circle at 20% 0, rgba(20, 184, 166, 0.28), transparent 40%),
    #0c1a24;
}

.story-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.story-float {
  position: absolute;
  z-index: 2;
  left: -12px;
  bottom: 28px;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.story-float-alt {
  left: auto;
  right: -8px;
  bottom: 36px;
  background: var(--grad-brand);
  color: #fff;
}

.process-section {
  background: var(--grad-brand);
  color: #fff;
}

.process-section .kicker,
.process-section .section-title {
  color: #fff;
}

.process-section .kicker {
  color: #5eead4;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.5), transparent);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #0f9d8e;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.process-step p {
  margin: 0;
  color: #93a4b3;
  line-height: 1.7;
}

.why-section {
  background: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.why-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.why-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.why-row p {
  margin: 0;
  color: var(--black);
  line-height: 1.7;
}

.team-section {
  padding-top: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.team-card-wrap {
  min-width: 0;
}

.team-card {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (min-width: 981px) {
  .team-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.team-card:hover,
.team-card.is-open,
.team-card:focus-visible {
  transform: translateY(-6px);
  border-color: #b9e5dc;
  box-shadow: var(--shadow);
  outline: none;
}

.team-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eef3f6;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-photo img,
.team-card.is-open .team-photo img {
  transform: scale(1.06);
}

.team-photo-hint {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 6px 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 37, 54, 0.82);
  color: #fff;
  font: inherit;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, background 0.2s ease;
}

.team-card:hover .team-photo-hint,
.team-card.is-open .team-photo-hint {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.team-photo-hint:hover,
.team-photo-hint:focus-visible {
  background: #0f9d8e;
  outline: none;
}

@media (hover: none) {
  .team-photo-hint {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

.team-copy {
  padding: 10px 10px 12px;
}

.team-copy h3 {
  margin: 0 0 2px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.team-copy p {
  margin: 0;
  color: var(--brand-teal-dark);
  font-size: 11px;
  font-weight: 600;
}

.team-modal-root {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 19, 31, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  animation: team-modal-fade 0.28s ease;
}

.team-modal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  width: min(780px, 100%);
  max-height: min(560px, calc(100vh - 48px));
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(5, 19, 31, 0.28);
  animation: team-modal-rise 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

.team-modal-close:hover,
.team-modal-close:focus-visible {
  transform: rotate(90deg);
  background: #fff;
  outline: none;
}

.team-modal-media {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: #0a4c5e;
}

.team-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  animation: team-modal-zoom 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-modal-body {
  padding: 36px 40px 36px 32px;
  overflow: auto;
}

.team-modal-body .kicker {
  margin-bottom: 8px;
}

.team-modal-body h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.team-modal-overview {
  margin: 0 0 22px;
  color: var(--black);
  line-height: 1.7;
}

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

.team-modal-tags li {
  padding: 7px 12px;
  border-radius: 999px;
  background: #e8f7f4;
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 600;
  animation: team-modal-tag 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.team-modal-tags li:nth-child(2) { animation-delay: 0.06s; }
.team-modal-tags li:nth-child(3) { animation-delay: 0.12s; }

@keyframes team-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes team-modal-rise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes team-modal-zoom {
  from { transform: scale(1.08); }
  to { transform: none; }
}

@keyframes team-modal-tag {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .team-modal {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
  }

  .team-modal-media {
    height: 220px;
    min-height: 220px;
  }

  .team-modal-body {
    padding: 22px 22px 26px;
  }

  .team-modal-body h3 {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-modal,
  .team-modal-backdrop,
  .team-modal-media img,
  .team-modal-tags li,
  .team-photo img,
  .team-photo-hint {
    animation: none;
    transition: none;
  }
}

.cta-band {
  padding: 0 0 56px;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(21, 147, 159, 0.35), transparent 34%),
    var(--grad-brand);
  color: #fff;
}

.cta-inner .kicker { color: #5eead4; }

.cta-inner h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-inner p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
}

.cta-inner .btn-green {
  background: #fff;
  color: #06121c;
}

.cta-inner .btn-green:hover {
  background: #5eead4;
}

@media (max-width: 980px) {
  .hero-grid,
  .why-layout,
  .process-line,
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .story-grid,
  .story-grid-flip,
  .why-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .story-grid-flip .story-media {
    order: 0;
  }

  .story-frame img {
    height: 320px;
  }

  .story-float,
  .story-float-alt {
    left: 12px;
    right: auto;
  }

  .hero-stage { min-height: 360px; }

  .hero-photo-main {
    height: 280px;
    top: 24px;
  }
}

@media (max-width: 640px) {
  .customer-logos-set {
    gap: 16px;
    padding: 8px 8px;
  }

  .customer-logos-item {
    width: 120px;
    height: 52px;
    flex-basis: 120px;
  }

  .customer-logos-item.is-wide {
    width: 160px;
    height: 46px;
    flex-basis: 160px;
  }

  .customer-logos-item.is-large {
    width: 148px;
    height: 72px;
    flex-basis: 148px;
  }

  .hero-metrics,
  .process-line,
  .why-row,
  .bento {
    grid-template-columns: 1fr;
  }

  .hero-photo-alt { display: none; }

  .hero-photo-main {
    width: 100%;
    height: 220px;
    top: 88px;
  }

  .hero-stage { min-height: 320px; }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 em,
  .hero-photo,
  .hero-panel,
  .ticker-track,
  .ticker-track span,
  .customer-logos-track,
  .panel-dot,
  .panel-bars i {
    animation: none !important;
  }
}

/* Inner pages */

.inner-page {
  padding-bottom: 40px;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.info-card,
.job-card,
.article-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: calc(var(--header-h) + 16px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover,
.job-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.info-card h2,
.job-card h2,
.article-card h2,
.form-card h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.info-card p,
.job-card p,
.article-card p,
.form-card p {
  margin: 0 0 12px;
  color: var(--brand-teal-dark);
  line-height: 1.75;
}

.info-card ul,
.job-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--black);
  line-height: 1.75;
}

.policy-doc:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.policy-doc h2 {
  margin-bottom: 16px;
}

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

.policy-doc ul {
  margin: 0 0 16px;
}

.policy-doc li + li {
  margin-top: 10px;
}

.policy-doc strong {
  color: var(--ink);
}

.policy-doc a {
  color: var(--brand-teal-dark);
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

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

.card-grid > .reveal {
  height: 100%;
}

.card-grid .info-card,
.card-grid .job-card {
  height: 100%;
}

.card-grid.two {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 13px 14px;
  outline: none;
  background: #f5f8fb;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.field textarea {
  display: block;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand-teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 157, 142, 0.12);
}

.form-success,
.form-card p.form-success {
  padding: 14px 16px;
  border-radius: 14px;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 600;
}

.reach-list {
  display: grid;
  gap: 16px;
}

.reach-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.article-meta,
.job-meta {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8f6;
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 600;
}

.job-card h3 {
  margin: 18px 0 8px;
  font-size: 15px;
}

.job-card .job-skills {
  margin-top: 12px;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px 48px;
  align-items: start;
}

.careers-openings,
.careers-apply {
  min-width: 0;
}

.careers-closed {
  margin-top: 32px;
}

.careers-closed h2,
.careers-openings h2,
.careers-apply h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.careers-apply h2 {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
}

.career-opening {
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.career-opening.is-open {
  border-radius: 10px;
}

.career-opening-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.career-opening-toggle > span:first-child {
  flex: 1;
}

.career-opening-badge {
  margin: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef1f4;
  color: var(--black);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.career-opening.is-closed {
  background: #f7f8fa;
}

.career-opening-plus {
  flex: 0 0 22px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.32s ease;
}

.career-opening.is-open .career-opening-plus {
  transform: rotate(45deg);
}

.career-opening-panel {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.36s ease, opacity 0.28s ease;
}

.career-opening.is-open .career-opening-panel {
  opacity: 1;
}

.career-opening-body {
  padding: 0 20px 20px;
}

.career-opening-facts {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
}

.career-opening-facts li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.career-opening-facts span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.career-opening-facts strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-teal-dark);
}

.career-opening-body h3 {
  margin: 16px 0 8px;
  font-size: 15px;
  color: var(--ink);
}

.career-opening-body p {
  margin: 0 0 12px;
  color: var(--brand-teal-dark);
}

.career-opening-skeleton {
  pointer-events: none;
}

.career-opening-skeleton .career-opening-toggle {
  cursor: default;
}

.career-opening-skeleton .skeleton-line-title {
  width: 58%;
  height: 16px;
  margin: 0;
}

.career-opening-skel-plus {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex: 0 0 18px;
}

.career-opening-skeleton .career-opening-body {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.career-opening-skeleton .career-opening-facts .skeleton-line-sm {
  width: 72%;
}

.career-opening-skeleton .career-opening-facts .skeleton-line-mid {
  width: 48%;
  margin-bottom: 0;
}

.careers-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.careers-apply .btn {
  margin-top: 4px;
}

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

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot.is-photo img {
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 36px 48px;
  align-items: start;
}

.product-intro.is-flip > :last-child {
  order: -1;
}

.product-intro .section-title {
  margin-bottom: 16px;
}

.page-hero-metrics {
  max-width: 780px;
  margin-top: 22px;
}

.product-copy p {
  margin: 0 0 16px;
  color: var(--black);
  line-height: 1.75;
  font-size: 15px;
}

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

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

.product-capability-grid .info-card {
  height: 100%;
}

.product-benefit-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 22px;
}

.product-benefit-grid > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.product-card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-card-link:hover {
  text-decoration: underline;
}

.comanage-page {
  padding-bottom: 56px;
}

.comanage-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  min-height: min(72vh, 620px);
  background: var(--grad-brand);
}

.comanage-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(24px, 5vw, 72px);
}

.comanage-hero-copy .kicker {
  color: #5eead4;
}

.comanage-hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
}

.comanage-hero-copy p {
  margin: 0;
  max-width: 460px;
  color: #c5d4de;
  font-size: 16px;
  line-height: 1.75;
}

.comanage-hero-media {
  position: relative;
  min-height: 360px;
}

.comanage-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 18%;
}

.comanage-hero-media.is-center img {
  object-position: 32% 72%;
}

.comanage-chip {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(6, 18, 28, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.comanage-promise {
  padding: 48px 0 16px;
}

.comanage-quote {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--ink);
}

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

.comanage-pill {
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.comanage-pill strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.comanage-pill span {
  color: var(--black);
  font-size: 13px;
  line-height: 1.55;
}

.comanage-ramp {
  padding: 40px 0 8px;
}

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

.comanage-steps.is-quad {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .comanage-steps.is-quad {
    grid-template-columns: 1fr 1fr;
  }
}

.comanage-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #0f9d8e, #15939f 50%, #e3ebf2);
}

.comanage-step {
  position: relative;
  padding: 0 20px 8px 0;
}

.comanage-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.comanage-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.comanage-step p {
  margin: 0;
  color: var(--black);
  font-size: 14px;
  line-height: 1.7;
}

.comanage-offer {
  padding: 40px 0 8px;
}

.comanage-offer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 40px 56px;
  align-items: start;
}

.comanage-offer-copy p {
  margin: 0 0 22px;
  color: var(--black);
  line-height: 1.75;
}

.comanage-rail {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comanage-rail li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.comanage-rail li:last-child {
  border-bottom: 1px solid var(--line);
}

.comanage-rail span {
  color: var(--brand-teal-dark);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  padding-top: 2px;
}

.comanage-mosaic {
  position: relative;
  min-height: 460px;
}

.comanage-mosaic-main {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.comanage-mosaic-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.comanage-mosaic-card {
  position: absolute;
  right: -8px;
  bottom: 8px;
  width: min(58%, 280px);
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}

.comanage-mosaic-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.comanage-mosaic-card figcaption {
  padding: 10px 12px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.connect-page {
  padding-bottom: 40px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.post-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e8f0f4;
}

.post-card-media img,
.post-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.post-card-media:hover img {
  transform: scale(1.08);
}

.post-media-preview {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0b1c28;
}

.post-media-preview img,
.post-media-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.post-media-play span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(1, 38, 99, 0.9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 18, 28, 0.28);
}

.post-media-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: currentColor;
}

.post-card-media:hover .post-media-play span {
  background: var(--brand-teal-dark);
}

.post-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 14px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.post-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e7fbf7;
  color: var(--brand-teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.post-author strong,
.post-author span {
  display: block;
}

.post-author strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.post-author span {
  color: var(--black);
  font-size: 12px;
}

.post-card-copy h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}

.post-card-copy p {
  margin: 0 0 5px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.65;
}

.post-card-skeleton {
  pointer-events: none;
  cursor: default;
}

.skeleton-block,
.skeleton-line {
  display: block;
  background: linear-gradient(90deg, #e8eef3 0%, #f4f7fa 45%, #e8eef3 90%);
  background-size: 200% 100%;
  animation: skeletonShine 1.2s ease-in-out infinite;
}

.post-card-skeleton .post-card-media {
  background: #e8eef3;
}

.post-card-skeleton .post-avatar {
  background: #e8eef3;
}

.skeleton-author {
  display: grid;
  gap: 6px;
  flex: 1;
}

.skeleton-line {
  height: 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.skeleton-line-sm {
  width: 42%;
  height: 10px;
  margin-bottom: 0;
}

.skeleton-line-xs {
  width: 28%;
  height: 8px;
  margin-bottom: 0;
}

.skeleton-line-title {
  width: 86%;
  height: 18px;
  margin: 4px 0 12px;
}

.skeleton-line-mid {
  width: 64%;
}

.skeleton-line-stat {
  width: 48px;
  height: 12px;
  margin: 0;
}

@keyframes skeletonShine {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.post-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
}

.post-stats span,
.post-stats button.post-like,
.post-stats button.post-comments {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-stats button.post-like,
.post-stats button.post-comments {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 600;
}

.post-stats button.post-like.is-liked {
  color: #e11d48;
}

.post-stats button.post-like:disabled {
  opacity: 0.7;
}

.connect-page .post-views {
  color: #2f6fed;
}

.connect-page .post-views:hover {
  color: #1d4ed8;
}

.connect-page .post-stats button.post-comments {
  color: var(--brand-teal);
}

.connect-page .post-stats button.post-comments:hover {
  color: var(--brand-teal-dark);
}

.post-stats svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.post-rating {
  margin-left: auto;
  color: #f59e0b;
  gap: 2px !important;
}

.post-rating svg {
  width: 14px;
  height: 14px;
}

.connect-cta {
  margin-top: 0;
}

.post-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 28px;
}

.post-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.post-pagination button:hover:not(:disabled):not(.is-active) {
  border-color: var(--brand-teal);
  color: var(--brand-teal-dark);
}

.post-pagination button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.post-pagination button:disabled {
  opacity: 0.38;
  cursor: default;
}

.post-pagination-ellipsis {
  min-width: 18px;
  padding: 0 2px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 1px;
}

.view-post-wrap {
  max-width: 860px;
}

.view-post-status {
  color: var(--black);
}

.view-post-loader {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 20px 0 36px;
}

.view-post-loader-anim {
  width: 96px;
  height: 96px;
}

.view-post-loader-fallback {
  color: var(--black);
}

.page-hero a {
  color: var(--brand-teal-dark);
  font-weight: 600;
}

.view-post {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.view-post-media {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #e8f0f4;
}

.view-post-media img,
.view-post-media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.view-post-media .post-media-preview {
  background: #0b1c28;
}

.view-post-media .post-media-play {
  pointer-events: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.view-post-media .post-media-play span {
  width: 72px;
  height: 72px;
}

.view-post-media .post-media-play svg {
  width: 28px;
  height: 28px;
}

.view-post-body {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 24px 28px 28px;
}

.view-post .post-author,
.connect-page .post-card .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.view-post .post-author {
  margin: 0 0 16px;
}

.connect-page .post-card .post-author {
  margin: 0 0 5px;
}

.view-post .post-avatar,
.connect-page .post-card .post-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #d8f3ee;
  color: var(--brand-teal-dark);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.view-post .post-avatar span,
.connect-page .post-card .post-avatar span {
  display: block;
  line-height: 1;
  color: var(--brand-teal-dark);
}

.view-post .post-author strong,
.connect-page .post-card .post-author strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
}

.view-post .post-author > div:not(.post-avatar) span,
.connect-page .post-card .post-author > div:not(.post-avatar) span {
  display: block;
  margin-top: 3px;
  color: var(--brand-teal-dark);
  font-size: 12px;
  line-height: 1.3;
}

.view-post-body h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  color: var(--ink);
}

.view-post-content {
  margin-top: 22px;
}

.view-post-content p {
  margin: 0 0 16px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.view-post-content p:last-child {
  margin-bottom: 0;
}

.comments-panel {
  margin-top: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  overflow: visible;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.comments-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.comments-head strong {
  font-size: 16px;
}

.comments-head-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #c5ced6;
}

.star-row {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex-shrink: 0;
  gap: 2px;
  color: #c5ced6;
}

.star-row span {
  display: inline-flex;
  margin: 0;
}

.star-row .is-filled,
.comments-head-rating .is-filled {
  color: #f5b942;
}

.star-row svg,
.comments-head-rating svg {
  width: 16px;
  height: 16px;
}

.star-row-sm svg {
  width: 13px;
  height: 13px;
}

.comments-head-rating em {
  margin-left: 8px;
  color: var(--black);
  font-style: normal;
  font-size: 13px;
}

.comments-form,
.comments-composer,
.comment-reply {
  min-width: 0;
  max-width: 100%;
}

.comments-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.comments-fields input,
.comments-composer,
.comment-reply textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  background: #fff;
  color: var(--ink);
}

.comments-fields input {
  height: 44px;
  padding: 0 12px;
  border-radius: 4px;
}

.comments-fields input:focus,
.comments-composer:focus-within,
.comments-composer textarea:focus,
.comment-reply textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
}

.comments-composer {
  border-radius: 4px;
  padding: 14px 14px 8px;
}

.comments-rate-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
}

.comments-stars {
  display: flex;
  gap: 2px;
}

.comments-stars button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand-teal);
}

.comments-stars svg {
  width: 18px;
  height: 18px;
}

.comments-stars button.is-active,
.rating-panel .comments-stars button.is-active {
  color: #f5b942;
}

.rating-panel .comments-rate-row {
  margin: 0;
}

.rating-panel .comments-stars svg {
  width: 28px;
  height: 28px;
}

.rating-panel .comments-stars button:disabled {
  opacity: 0.65;
}

.comments-composer textarea,
.comment-reply textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 0;
  resize: vertical;
  min-height: 88px;
  padding: 4px 0 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.comments-composer textarea::placeholder,
.comments-fields input::placeholder,
.comment-reply textarea::placeholder {
  color: #8a97a6;
}

.comments-toolbar {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}

.comments-toolbar button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
  color: #6b7785;
}

.comments-toolbar svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto;
}

.comments-emojis {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 4px;
}

.comments-emojis button {
  border: 0;
  background: #f4f7fa;
  border-radius: 6px;
  padding: 4px 6px;
}

.comments-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.comments-cancel {
  border: 0;
  background: none;
  color: var(--brand-teal-dark);
  font-weight: 600;
  padding: 0;
}

.comments-publish {
  min-width: 92px;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--brand-teal);
  color: #fff;
  font-weight: 600;
}

.comments-publish:disabled {
  opacity: 0.6;
}

.comments-sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 8px;
  color: var(--black);
  font-size: 13px;
}

.comments-tree-actions {
  display: flex;
  gap: 14px;
}

.comments-tree-actions button {
  border: 0;
  background: none;
  padding: 0;
  color: var(--brand-teal-dark);
  font-weight: 700;
  font-size: 13px;
}

.comments-sort label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.comments-sort select {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  padding: 0;
}

.comments-empty {
  margin: 0;
  color: var(--black);
}

.comments-tree {
  min-width: 0;
}

.comment-thread {
  --comment-avatar: 40px;
  --comment-gap: 12px;
  --comment-spine: #b7cec9;
  display: grid;
  grid-template-columns: var(--comment-avatar) minmax(0, 1fr);
  column-gap: var(--comment-gap);
  position: relative;
  min-width: 0;
  padding: 12px 0 4px;
}

.comments-tree > .comment-thread + .comment-thread {
  border-top: 1px solid #edf3f6;
}

.comment-thread.is-reply {
  padding: 8px 0 2px;
}

.comment-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comment-spine {
  display: block;
  width: 2px;
  flex: 1 1 auto;
  margin-top: 6px;
  margin-bottom: calc(var(--comment-avatar) / 2);
  background: var(--comment-spine);
  border-radius: 99px;
}

.comment-body,
.comment-main,
.comment-children {
  min-width: 0;
}

.comment-children {
  margin-top: 2px;
}

.comment-main p {
  margin: 6px 0 8px;
  color: #24384a;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.comment-avatar {
  width: var(--comment-avatar);
  height: var(--comment-avatar);
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  background: #d8f3ee;
  color: var(--brand-teal-dark);
  font-size: 12px;
  font-weight: 700;
}

.comment-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.comment-who {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  min-width: 0;
}

.comment-who strong {
  display: inline;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.comment-time {
  display: inline;
  margin: 0;
  color: #7b8b99;
  font-size: 12px;
}

.comment-top .star-row {
  margin: 0;
}

.comment-menu {
  position: relative;
  flex-shrink: 0;
}

.comment-menu-btn {
  width: 32px;
  height: 32px;
  margin: -6px -4px 0 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: #6b7785;
  display: grid;
  place-items: center;
}

.comment-menu-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.comment-menu-btn:hover,
.comment-menu-btn.is-open {
  background: #eef6f4;
  color: var(--brand-teal-dark);
}

.comment-menu-pop {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  z-index: 12;
  min-width: 148px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(6, 18, 28, 0.12);
}

.comment-menu-pop button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.comment-menu-pop button svg {
  width: 16px;
  height: 16px;
  color: var(--brand-teal-dark);
}

.comment-menu-pop button:hover {
  background: #eef7f5;
  color: var(--brand-teal-dark);
}

.comment-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.comment-foot button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  padding: 0;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.comment-toggle svg {
  transition: transform 0.2s ease;
}

.comment-toggle.is-open svg {
  transform: rotate(180deg);
}

.comment-reply {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
}

.comments-form.is-compact .comments-fields input {
  height: 40px;
}

.comments-form.is-compact .comments-composer {
  padding: 12px;
}

.comments-form.is-compact .comments-actions {
  margin-top: 8px;
}

.comment-foot svg {
  width: 16px;
  height: 16px;
}

.comment-foot .is-liked {
  color: #e11d48;
}

.post-rating em {
  margin-left: 4px;
  color: var(--black);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}

.post-feature-media img,
.post-feature-media video,
.admin-preview img,
.admin-preview video,
.admin-item img,
.admin-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-login-wrap {
  max-width: 460px;
}

.admin-login .btn {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.admin-login-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin: 0 0 16px;
}

.admin-login .admin-login-links:last-child {
  margin: 16px 0 0;
  justify-content: space-between;
}

.admin-login-links a {
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.admin-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
}

.admin-tabs button.is-active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.admin-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.admin-role-card {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.admin-role-card strong {
  color: var(--ink);
  font-size: 14px;
}

.admin-role-card span {
  color: var(--black);
  font-size: 13px;
  line-height: 1.5;
}

.admin-subscribers .admin-list-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 16px;
}

.admin-subscribers .admin-list-head h2,
.admin-subscribers .admin-list-head p {
  margin: 0 0 6px;
}

.admin-search {
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #f5f8fb;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.admin-filters select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #f5f8fb;
  font-family: inherit;
}

.admin-career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.admin-career-view h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.admin-career-view h4 {
  margin: 16px 0 8px;
  font-size: 14px;
}

.admin-career-view ul {
  margin: 0;
  padding-left: 18px;
  color: var(--black);
  line-height: 1.7;
}

.application-status {
  margin: 0;
  color: var(--muted);
}

.application-view {
  display: grid;
  gap: 18px;
}

.application-profile,
.application-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  animation: application-rise 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.application-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

.application-avatar {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #0f9d8e 0%, #052536 100%);
  color: #fff;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(5, 37, 54, 0.22);
}

.application-profile-copy {
  min-width: 0;
}

.application-profile-copy .kicker {
  margin-bottom: 4px;
}

.application-profile-copy h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.application-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.application-chips span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f6f3;
  color: var(--brand-teal-dark);
  font-size: 13px;
  font-weight: 600;
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: start;
}

.application-main,
.application-aside {
  display: grid;
  gap: 18px;
}

.application-card {
  padding: 22px 24px;
}

.application-card h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.application-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.application-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 12px 12px 14px;
  border: 1px solid #e3eeeb;
  border-radius: 16px;
  background: #f4f8f7;
}

.application-contact:hover {
  border-color: var(--brand-teal);
  background: #eef8f5;
}

.application-contact-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.application-contact-icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 6px 14px rgba(6, 18, 28, 0.06);
}

.application-contact-icon svg {
  width: 18px;
  height: 18px;
}

.application-contact-icon rect,
.application-contact-icon path {
  fill: none;
  stroke: var(--brand-teal-dark);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.application-contact-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.application-contact-text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.application-contact-text strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.application-copy {
  flex: 0 0 auto;
  border: 0;
  background: #fff;
  color: var(--brand-teal-dark);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.application-copy:hover,
.application-copy:focus-visible {
  background: #111827;
  color: #fff;
}

.application-letter {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f3faf8 0%, #f7f9fb 100%);
  border-left: 3px solid var(--brand-teal);
}

.application-letter p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

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

.application-empty {
  margin: 0;
  color: var(--muted);
}

.application-resume {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(15, 157, 142, 0.14), transparent 52%),
    var(--white);
}

.application-resume-icon {
  position: relative;
  width: 68px;
  height: 78px;
  margin: 4px auto 16px;
}

.application-resume-icon svg {
  width: 100%;
  height: 100%;
}

.application-resume-icon path:first-child {
  fill: #e8f6f3;
  stroke: var(--brand-teal-dark);
  stroke-width: 1.6;
}

.application-resume-icon path:last-child {
  fill: #d9f3ee;
  stroke: var(--brand-teal-dark);
  stroke-width: 1.6;
}

.application-resume-icon em {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-width: 36px;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--brand-teal-dark);
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.application-resume-name {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  word-break: break-word;
}

.application-resume .btn {
  width: 100%;
}

.application-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@keyframes application-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .application-profile,
  .application-card {
    animation: none;
  }
}

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

.career-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.career-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  line-height: 1.6;
  font-size: 14px;
}

.career-check-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.career-check-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.career-check-icon circle {
  fill: #d9f3ee;
}

.career-check-icon path {
  fill: none;
  stroke: var(--brand-teal-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field span em {
  font-style: normal;
  font-weight: 400;
  color: var(--black);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.admin-table th {
  color: var(--black);
  font-weight: 600;
}

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}

.admin-table-single th,
.admin-table-single td {
  white-space: nowrap;
}

.admin-table-single .admin-table-actions {
  margin-top: 0;
  flex-wrap: nowrap;
}

.admin-badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8eef3;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.admin-badge.is-on {
  background: #d9f3ee;
  color: var(--brand-teal-dark);
}

.admin-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.admin-file {
  color: var(--black);
  font-size: 12px;
  font-style: normal;
}

.admin-preview {
  overflow: hidden;
  height: 180px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #e8f0f4;
}

.admin-preview.is-detail {
  height: 440px;
}

.admin-preview .post-media-preview {
  min-height: inherit;
  height: 100%;
}

.admin-preview .post-media-play {
  pointer-events: auto;
  cursor: pointer;
}

.post-compose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 8px;
}

.post-compose-copy textarea {
  min-height: 240px;
}

.post-compose-empty {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #f5f8fb;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.admin-preview.is-compose {
  height: auto;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-preview.is-compose img,
.admin-preview.is-compose video {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.admin-list {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.admin-list h2 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--ink);
}

.admin-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-item-actions .btn {
  margin: 0;
}

.admin-item img,
.admin-item video {
  width: 72px;
  height: 56px;
  border-radius: 10px;
}

.admin-item strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.admin-item span {
  color: var(--white);
  font-size: 12px;
}

.admin-item-skeleton {
  pointer-events: none;
}

.admin-item-skel-media {
  width: 72px;
  height: 56px;
  border-radius: 10px;
}

.admin-skel-btn {
  width: 72px;
  height: 32px;
  border-radius: 999px;
}

.admin-table-skeleton .skeleton-line {
  margin-bottom: 0;
  min-width: 72px;
}

.admin-table-skeleton .admin-table-actions {
  margin-top: 0;
  flex-wrap: nowrap;
}

.admin-count-skel {
  width: 168px;
  height: 12px;
  margin: 6px 0 0;
}

.form-error,
.form-card p.form-error {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 600;
}

.btn-ghost {
  background: transparent;
  color: #b91c1c;
  border: 1px solid #fecaca;
  box-shadow: none;
}

.btn-ghost:hover {
  background: #fef2f2;
}

@media (max-width: 1280px) {
  .view-post-body {
    padding: 22px 24px 24px;
  }

  .comments-panel {
    padding: 24px;
  }
}

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

  .post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-intro,
  .comanage-hero,
  .comanage-offer-grid {
    grid-template-columns: 1fr;
  }

  .product-intro.is-flip > :last-child {
    order: 0;
  }

  .comanage-hero {
    min-height: 0;
  }

  .comanage-hero-copy {
    padding: 40px 24px 32px;
  }

  .comanage-hero-media {
    min-height: 280px;
  }

  .comanage-pills,
  .comanage-steps {
    grid-template-columns: 1fr;
  }

  .comanage-steps::before {
    display: none;
  }

  .comanage-mosaic {
    min-height: 0;
  }

  .comanage-mosaic-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .product-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .admin-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .admin-item-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .admin-subscribers .admin-list-head {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-career-grid {
    grid-template-columns: 1fr;
  }

  .application-layout,
  .application-contacts {
    grid-template-columns: 1fr;
  }

  .application-profile {
    align-items: flex-start;
  }

  .admin-hero {
    display: grid;
    align-items: start;
  }

  .view-post {
    border-radius: 22px;
  }

  .view-post-body {
    padding: 20px;
  }

  .comments-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .comments-fields,
  .comments-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .comment-thread {
    --comment-avatar: 36px;
    --comment-gap: 10px;
  }
}

@media (max-width: 860px) {
  .admin-preview.is-detail {
    height: 280px;
  }

  .post-compose-grid {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .card-grid,
  .post-grid,
  .careers-layout,
  .careers-apply-grid,
  .product-intro,
  .product-capability-grid,
  .product-benefit-grid,
  .comanage-hero,
  .comanage-offer-grid,
  .comanage-pills,
  .comanage-steps {
    grid-template-columns: 1fr;
  }

  .comanage-mosaic-main img {
    height: 260px;
  }

  .comanage-mosaic-card img {
    height: 160px;
  }

  .product-intro.is-flip > :last-child {
    order: 0;
  }

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

  .product-shot.is-photo img {
    height: 240px;
  }

  .comments-fields,
  .comments-head {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 768px) {
  .view-post,
  .comments-panel {
    border-radius: 18px;
  }

  .view-post-body,
  .comments-panel {
    padding: 16px;
  }

  .view-post-body h2 {
    font-size: 22px;
  }

  .view-post-content p {
    font-size: 15px;
  }

  .view-post-page .post-rating {
    margin-left: 0;
  }

  .comments-composer {
    padding: 12px 10px 8px;
  }

  .comment-thread {
    --comment-avatar: 32px;
    --comment-gap: 8px;
  }

  .comment-avatar {
    font-size: 11px;
  }

  .comment-thread.is-depth-2 > .comment-rail .comment-spine {
    display: none;
  }

  .comments-actions {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 16px 0 12px;
  }

  .view-post,
  .comments-panel {
    border-radius: 14px;
  }

  .view-post-body,
  .comments-panel {
    padding: 14px 12px;
  }

  .comment-thread {
    --comment-avatar: 28px;
    --comment-gap: 8px;
  }

  .comment-avatar {
    font-size: 10px;
  }

  .comment-menu-btn {
    width: 28px;
    height: 28px;
  }

  .comments-fields input {
    height: 42px;
  }

  .comments-publish {
    min-width: 84px;
    height: 34px;
  }
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-launcher {
  position: relative;
  width: 76px;
  height: 92px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  cursor: pointer;
  appearance: none;
}

.chatbot-launcher::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 54px;
  height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.2) 50%, rgba(15, 23, 42, 0) 74%);
  pointer-events: none;
  
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-2px);
}

.chatbot-launcher:hover::after,
.chatbot-launcher:focus-visible::after {
  width: 40px;
  opacity: 0.75;
}

.chatbot-robot {
  display: block;
  width: 76px;
  height: 92px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  filter: drop-shadow(0 8px 10px rgba(15, 23, 42, 0.28)) drop-shadow(0 2px 4px rgba(15, 23, 42, 0.18));
}

.chatbot-panel {
  width: min(360px, calc(100vw - 28px));
  height: min(480px, calc(100vh - 140px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  animation: chatbot-rise 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #ecf4f2, #fff);
  border-bottom: 1px solid var(--line);
}

.chatbot-head-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eef4f8;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.chatbot-head-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.chatbot-head .kicker {
  margin: 0;
}

.chatbot-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
}

.chatbot-close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f4f8f7;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-thread {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: #f7f9fb;
}

.chatbot-bubble {
  margin: 0;
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.chatbot-bubble.is-bot {
  justify-self: start;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.chatbot-bubble.is-user {
  justify-self: end;
  background: #012663;
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chatbot-field {
  flex: 1;
  min-width: 0;
}

.chatbot-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #f5f8fb;
  font-family: inherit;
}

.chatbot-form .btn {
  flex: 0 0 auto;
}

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

@keyframes chatbot-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

@media (max-width: 480px) {
  .chatbot {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    height: min(520px, calc(100vh - 110px));
  }
}
