:root {
  --bg: #ffffff;
  --ink: #1d2029;
  --muted: #59606c;
  --soft: #f4f5f7;
  --soft-2: #eef0f4;
  --line: #e4e6eb;
  --brand-blue: #20a8f3;
  --brand-blue-dark: #087ed6;
  --brand-blue-soft: rgba(32, 168, 243, 0.12);
  --brand-blue-faint: rgba(32, 168, 243, 0.055);
  --brand-blue-line: rgba(32, 168, 243, 0.24);
  --brand-blue-glow: rgba(32, 168, 243, 0.2);
  --max: 1520px;
  --pad: 40px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue), #6ed1ff);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background:
    linear-gradient(90deg, rgba(32, 168, 243, 0.065), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  backdrop-filter: blur(15px);
  box-shadow: inset 0 -1px 0 rgba(32, 168, 243, 0.07);
  transition: background 260ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.brand:hover .brand-name {
  color: var(--brand-blue-dark);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(25, 156, 230, 0.2), 0 0 0 1px rgba(32, 168, 243, 0.1);
}

.brand-name {
  color: var(--brand-blue-dark);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a,
.nav-support > a {
  padding: 10px 0;
}

.desktop-nav a {
  position: relative;
  transition: opacity 180ms ease;
}

.footer-bottom a {
  position: relative;
}

.desktop-nav a:hover {
  color: var(--brand-blue-dark);
  opacity: 1;
}

.desktop-nav a.is-active,
.footer-bottom a.is-active,
.mobile-panel a.is-active,
.mobile-panel details.is-active summary {
  color: var(--ink);
}

.mobile-panel a.is-active,
.mobile-panel details.is-active summary {
  opacity: 1;
  transform: translateY(0);
}

.desktop-nav a.is-active::after,
.footer-bottom a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-blue);
}

.nav-support {
  position: relative;
}

.support-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 230px;
  padding: 8px;
  border: 1px solid rgba(29, 32, 41, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(29, 32, 41, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.support-menu a {
  display: block;
  padding: 11px 10px;
  border-radius: 6px;
  color: #272b36;
  font-size: 13px;
  line-height: 1.1;
}

.support-menu a:hover {
  background: var(--brand-blue-soft);
  opacity: 1;
}

.nav-support:hover .support-menu,
.nav-support:focus-within .support-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 58px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle .menu-close {
  opacity: 0;
  transform: translateY(-10px);
}

body.menu-open .menu-toggle .menu-open {
  opacity: 0;
  transform: translateY(10px);
}

body.menu-open .menu-toggle .menu-close {
  opacity: 1;
  transform: translateY(0);
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: none;
  padding: 96px 32px 34px;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(29, 32, 41, 0.08);
  transform: translateY(-105%);
  transition: transform 220ms ease;
}

.mobile-panel a,
.mobile-panel summary {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.mobile-panel details {
  border: 0;
}

.mobile-panel details a {
  padding-left: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 176px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 auto;
  height: clamp(335px, 34vw, 430px);
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(32, 168, 243, 0.08) 18px 19px),
    linear-gradient(180deg, rgba(32, 168, 243, 0.16), rgba(32, 168, 243, 0.11) 72%, transparent 100%),
    linear-gradient(90deg, rgba(32, 168, 243, 0.16), transparent 58%);
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  top: 126px;
  right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  width: 38px;
  height: 38px;
  pointer-events: none;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.82;
  transform-origin: center;
  filter: drop-shadow(0 12px 22px rgba(32, 168, 243, 0.24));
  animation: hero-star-sparkle 3.8s ease-in-out infinite;
}

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

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 680px) 210px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  position: relative;
  font-size: 64px;
  line-height: 1.06;
  font-weight: 800;
}

.hero h1::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: 8px;
  width: 18px;
  height: 18px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.9;
  transform-origin: center;
  filter: drop-shadow(0 6px 14px rgba(32, 168, 243, 0.22));
  animation: hero-title-star-sparkle 3.2s ease-in-out 0.45s infinite;
}

.text-cta {
  justify-self: end;
  display: grid;
  grid-template-columns: auto 28px;
  gap: 8px 12px;
  align-items: center;
  min-width: 150px;
  font-size: 18px;
  line-height: 1;
}

.arrow-icon {
  position: relative;
  width: 25px;
  height: 25px;
}

.arrow-icon::before,
.arrow-icon::after {
  content: "";
  position: absolute;
  background: var(--brand-blue);
  border-radius: 2px;
}

.arrow-icon::before {
  right: 4px;
  top: 6px;
  width: 15px;
  height: 3px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.arrow-icon::after {
  right: 5px;
  top: 5px;
  width: 3px;
  height: 15px;
}

.cta-lines {
  grid-column: 1 / 2;
  width: 31px;
  height: 8px;
  background:
    linear-gradient(var(--brand-blue), var(--brand-blue)) left top / 4px 4px no-repeat,
    linear-gradient(var(--brand-blue), var(--brand-blue)) left bottom / 28px 3px no-repeat;
  border-radius: 4px;
}

.hero-rail-wrap {
  position: relative;
  margin-top: 44px;
  padding-bottom: 36px;
}

.hero-rail {
  overflow: hidden;
  overscroll-behavior-x: contain;
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  scrollbar-width: none;
}

.hero-rail::-webkit-scrollbar {
  display: none;
}

.hero-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}

.hero-card {
  position: relative;
  flex: 0 0 274px;
  height: 348px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  scroll-snap-align: start;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--image-scale, 1.03));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card:hover {
  box-shadow: 0 22px 46px rgba(29, 32, 41, 0.12), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-6px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.hero-card:hover img {
  --image-scale: 1.08;
}

.card-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 168, 243, 0.18);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.card-caption b {
  font-size: 14px;
}

.card-caption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.hero-card:hover .card-caption {
  opacity: 1;
  transform: translateY(0);
}

.plus {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 20px;
  height: 20px;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-blue);
  transform: translate(-50%, -50%);
}

.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hero-card:hover .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.hero-card:hover .plus::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.rail-button {
  position: absolute;
  z-index: 2;
  top: 142px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(29, 32, 41, 0.12);
  cursor: pointer;
}

.rail-prev {
  left: 18px;
}

.rail-next {
  right: 18px;
}

.rail-button::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
}

.rail-prev::before {
  transform: rotate(-135deg);
}

.rail-next::before {
  transform: rotate(45deg);
}

.brand-strip {
  max-width: var(--max);
  margin: 4px auto 0;
  padding: 0 var(--pad) 72px;
  text-align: center;
}

.brand-strip p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.mini-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-top: 26px;
  color: #262a36;
  font-size: 13px;
  font-weight: 800;
}

.mini-logos span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  border-radius: 50%;
  vertical-align: -3px;
  background:
    linear-gradient(45deg, transparent 43%, var(--brand-blue) 44% 56%, transparent 57%),
    linear-gradient(-45deg, transparent 43%, var(--brand-blue) 44% 56%, transparent 57%);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 102px var(--pad);
}

.section-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--brand-blue-dark);
  font-size: 14px;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(260px, 430px);
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.split-heading h1,
.split-heading h2,
.work-header h2,
.services-head h2,
.testimonial-head h2,
.pricing-intro h2,
.faq-head h2,
.journal-head h2,
.cta-banner h2 {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 800;
}

.split-heading p,
.work-header p,
.testimonial-head p,
.pricing-intro p,
.journal-head p,
.cta-banner p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.about-image {
  overflow: hidden;
  margin-top: 64px;
  border-radius: var(--radius);
  background: #b4d8eb;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  transition: transform 120ms linear;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.stats-grid div {
  min-height: 168px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.stats-grid strong,
.stats-grid span {
  display: inline-block;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.stats-grid strong.count-tick {
  animation: count-tick-pop 180ms ease-out;
}

.stats-grid p {
  max-width: 265px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.story-page {
  padding-top: 112px;
}

.story-hero h1,
.story-hero h2 {
  max-width: 760px;
}

.story-jump {
  position: sticky;
  top: 80px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-top: 42px;
  padding: 8px;
  border: 1px solid var(--brand-blue-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(29, 32, 41, 0.08), 0 8px 26px rgba(32, 168, 243, 0.08);
}

.story-jump a {
  position: relative;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
}

.story-jump a:hover,
.story-jump a.is-active {
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
}

.story-image {
  margin-top: 36px;
}

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

.story-intro-grid article,
.principle-grid article,
.timeline-list article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f6f8;
  transform-style: preserve-3d;
}

.story-intro-grid article {
  min-height: 292px;
  padding: 28px;
}

.story-intro-grid span {
  color: var(--muted);
  font-size: 14px;
}

.story-intro-grid h3 {
  margin-top: 44px;
  font-size: 30px;
  line-height: 1.08;
}

.story-intro-grid p,
.story-feature p,
.principle-grid p,
.timeline-list p,
.story-trust p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.story-intro-grid p {
  margin-top: 18px;
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(260px, 0.42fr);
  gap: 10px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5f6f8 0%, #f5f6f8 72%, var(--brand-blue-faint) 100%);
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
}

.story-feature > div {
  align-self: center;
  padding: 58px;
}

.story-feature h3,
.story-section-head h3,
.story-trust h3 {
  max-width: 780px;
  font-size: 42px;
  line-height: 1.08;
}

.story-feature p {
  max-width: 620px;
  margin-top: 20px;
}

.story-feature img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.05);
  transition: transform 120ms linear;
}

.story-principles,
.story-timeline,
.story-trust {
  margin-top: 80px;
}

.story-section-head {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(320px, 760px);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}

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

.principle-grid article {
  min-height: 238px;
  padding: 24px;
}

.principle-grid b {
  display: block;
  font-size: 20px;
  line-height: 1.12;
}

.principle-grid p {
  margin-top: 42px;
}

.timeline-list {
  display: grid;
  gap: 10px;
}

.timeline-list article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(220px, 0.28fr) minmax(320px, 0.54fr);
  align-items: start;
  gap: 32px;
  padding: 30px;
}

.timeline-list time {
  color: var(--muted);
  font-size: 14px;
}

.timeline-list h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.story-trust {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(320px, 0.52fr);
  gap: 48px;
  align-items: end;
  padding: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(122, 213, 255, 0.34);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 66%, rgba(126, 218, 255, 0.2) 100%),
    linear-gradient(135deg, #052d5c 0%, #075fa9 52%, #14a5f4 132%);
  box-shadow: 0 26px 70px rgba(8, 126, 214, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}

.story-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 22px);
  opacity: 0.34;
}

.story-trust > * {
  position: relative;
  z-index: 1;
}

.story-trust .section-kicker,
.story-trust p {
  color: rgba(228, 246, 255, 0.84);
}

.story-trust p {
  font-size: 17px;
}

.story-trust a {
  display: inline-flex;
  width: max-content;
  margin-top: 26px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.story-stats {
  margin-top: 72px;
}

.story-intro-grid article,
.principle-grid article,
.timeline-list article {
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    background 420ms ease;
}

.story-intro-grid article:hover,
.principle-grid article:hover,
.timeline-list article:hover {
  background: #fff;
  box-shadow: 0 18px 42px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.js .story-intro-grid:not(.is-visible) article,
.js .story-principles:not(.is-visible) .principle-grid article,
.js .story-timeline:not(.is-visible) .timeline-list article {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px);
}

.story-intro-grid article:nth-child(2),
.principle-grid article:nth-child(2),
.timeline-list article:nth-child(2) {
  transition-delay: 120ms;
}

.story-intro-grid article:nth-child(3),
.principle-grid article:nth-child(3),
.timeline-list article:nth-child(3) {
  transition-delay: 200ms;
}

.principle-grid article:nth-child(4),
.timeline-list article:nth-child(4) {
  transition-delay: 280ms;
}

.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 20px;
  isolation: isolate;
  max-width: calc(var(--max) - 80px);
  min-height: 560px;
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.18) 100%),
    url("./assets/second-scene-bg.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
}

.quote-content {
  position: relative;
  z-index: 1;
  padding: 72px;
}

.micro-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 68px;
}

.micro-logo-img {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(25, 156, 230, 0.24), 0 0 0 1px rgba(32, 168, 243, 0.14);
}

blockquote {
  max-width: 600px;
  margin: 0;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
}

.person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.person div {
  display: grid;
  gap: 4px;
}

.person b {
  font-size: 14px;
}

.person span {
  color: var(--muted);
  font-size: 13px;
}

.quote-object {
  --quote-float-low: 38px;
  --quote-float-high: 12px;
  align-self: end;
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: translate3d(0, calc(var(--quote-float-low) + var(--parallax-y, 0px)), 0) rotate(var(--float-rotate, 0deg));
  filter: drop-shadow(0 28px 52px rgba(22, 145, 227, 0.18));
  animation: quote-object-float 5.8s ease-in-out infinite;
  transition: filter 220ms ease;
}

.work-header,
.services-head,
.testimonial-head,
.journal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.work-header > div:first-child {
  max-width: 560px;
}

.team-pill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.team-pill img {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.team-pill img:first-child {
  margin-left: 0;
}

.team-pill-label {
  display: block;
  margin-left: 14px;
  white-space: nowrap;
}

.advantage-mini-icon {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-left: -8px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(29, 130, 221, 0.18);
}

.advantage-mini-icon:first-child {
  margin-left: 0;
}

.advantage-mini-icon::before,
.advantage-mini-icon::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.icon-match {
  background: linear-gradient(135deg, #1da7ff 0%, #62dcff 54%, #ff86a4 100%);
}

.icon-match::before {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.icon-match::after {
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.icon-chat {
  background: linear-gradient(135deg, #0b8dff 0%, #7de3ff 58%, #8f7cff 100%);
}

.icon-chat::before {
  left: 50%;
  top: 50%;
  width: 24px;
  height: 16px;
  border-radius: 9px;
  background: #fff;
  transform: translate(-50%, -54%);
}

.icon-chat::after {
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1da7ff;
  box-shadow: -7px 0 0 #1da7ff, 7px 0 0 #1da7ff;
  transform: translate(-50%, -54%);
}

.icon-signal {
  background: linear-gradient(135deg, #6f7cff 0%, #1db7ff 50%, #7affc7 100%);
}

.icon-signal::before {
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  transform: translate(-50%, -50%);
}

.icon-signal::after {
  right: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff98a8;
}

.icon-space {
  background: linear-gradient(135deg, #ff86a4 0%, #27b7ff 46%, #69edcf 100%);
}

.icon-space::before {
  left: 50%;
  top: 50%;
  width: 21px;
  height: 21px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.icon-space::after {
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: -10px 1px 0 rgba(255, 255, 255, 0.78), 10px -2px 0 rgba(255, 255, 255, 0.78);
  transform: translate(-50%, -50%);
}

.case-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  grid-auto-rows: 265px;
  gap: 10px;
  margin-top: 46px;
}

.case-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.case-tile::after,
.feature-cards article::after,
.story-intro-grid article::after,
.principle-grid article::after,
.timeline-list article::after,
.testimonial-grid article::after,
.plan-card::after,
.article-row a::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.2;
}

.case-tile::after {
  z-index: 3;
}

.case-tile.tall {
  grid-row: span 2;
}

.case-tile.wide {
  grid-column: span 2;
}

.case-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  --image-scale: 1.03;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--image-scale));
  transition: transform 500ms ease;
}

.case-tile:hover img {
  --image-scale: 1.08;
}

.case-tile.image-zoom img {
  --image-scale: 1.08;
}

.case-tile.image-zoom:hover img {
  --image-scale: 1.1;
}

.case-tile.image-complete {
  background:
    linear-gradient(180deg, rgba(231, 247, 255, 0.82), rgba(213, 237, 255, 0.92)),
    #e9f7ff;
}

.case-tile.image-complete::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("./assets/product-advantage-openers.png") center / cover no-repeat;
  filter: blur(16px);
  opacity: 0.62;
  transform: scale(1.08);
}

.case-tile.image-complete img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center;
  --image-scale: 1.06;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--image-scale));
}

.case-tile.image-complete:hover img {
  --image-scale: 1.08;
}

.case-tile span {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(32, 168, 243, 0.18);
  color: var(--ink);
  font-size: 14px;
}

.case-tile em {
  color: var(--muted);
  font-style: normal;
}

.feature-band {
  max-width: calc(var(--max) - 80px);
  margin: 10px auto 0;
  padding: 74px 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5f6f8 0%, #f5f6f8 68%, rgba(32, 168, 243, 0.1) 100%);
}

.feature-band > span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-blue-dark);
  font-size: 14px;
}

.feature-band h2 {
  max-width: 760px;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 800;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 50px;
}

.feature-cards article {
  position: relative;
  min-height: 274px;
  padding: 30px clamp(126px, 12vw, 154px) 30px 30px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.feature-cards article:hover {
  box-shadow: 0 20px 44px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.feature-cards small {
  position: relative;
  z-index: 2;
  color: var(--brand-blue-dark);
  font-size: 14px;
}

.feature-cards h3 {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin-top: 20px;
  font-size: 32px;
  line-height: 1.12;
  text-wrap: balance;
}

.feature-cards p {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin-top: 74px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.feature-cards img {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 3vw, 34px);
  top: 50%;
  width: clamp(72px, 7vw, 92px);
  height: clamp(72px, 7vw, 92px);
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(-46%);
}

.services-head {
  margin-bottom: 46px;
}

.small-link {
  color: var(--ink);
  font-size: 15px;
}

.small-link::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  transform: translateY(3px) rotate(45deg);
}

.service-list {
  display: grid;
  gap: 14px;
  padding-bottom: 58px;
}

.service-row {
  position: sticky;
  top: calc(86px + (var(--stack-index, 0) * 14px));
  z-index: calc(20 + var(--stack-index, 0));
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(320px, 0.52fr);
  min-height: 450px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--service-card-bg, linear-gradient(135deg, #f4f5f7 0%, #f4f5f7 76%, var(--brand-blue-faint) 100%));
  box-shadow: 0 calc(var(--stack-shadow, 0) * 18px) calc(var(--stack-shadow, 0) * 44px)
      rgba(29, 32, 41, calc(var(--stack-shadow, 0) * 0.12)),
    inset 0 0 0 1px var(--service-line, rgba(32, 168, 243, 0.08));
  transform: scale(var(--stack-scale, 1));
  transform-origin: center top;
  transition: box-shadow 180ms linear, transform 180ms linear;
}

.service-row:nth-child(1) {
  --stack-index: 0;
  --service-accent: #0b8dff;
  --service-line: rgba(24, 148, 242, 0.16);
  --service-tag-bg: rgba(14, 145, 255, 0.12);
  --service-tag-color: #086fbd;
  --service-card-bg: linear-gradient(135deg, #f7fcff 0%, #edf8ff 56%, #dff2ff 100%);
  --service-media-bg:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.98) 0 14%, transparent 34%),
    radial-gradient(circle at 78% 80%, rgba(25, 154, 246, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(223, 244, 255, 0.96), rgba(255, 255, 255, 0.74));
}

.service-row:nth-child(2) {
  --stack-index: 1;
  --service-accent: #7a54ff;
  --service-line: rgba(126, 108, 255, 0.18);
  --service-tag-bg: rgba(119, 95, 255, 0.12);
  --service-tag-color: #5f42d7;
  --service-card-bg: linear-gradient(135deg, #f8fbff 0%, #eef4ff 48%, #e8e4ff 100%);
  --service-media-bg:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.96) 0 16%, transparent 36%),
    radial-gradient(circle at 82% 74%, rgba(137, 97, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(231, 241, 255, 0.96), rgba(243, 235, 255, 0.74));
}

.service-row:nth-child(3) {
  --stack-index: 2;
  --service-accent: #119ce8;
  --service-line: rgba(68, 180, 245, 0.18);
  --service-tag-bg: rgba(43, 176, 242, 0.12);
  --service-tag-color: #087cb8;
  --service-card-bg: linear-gradient(135deg, #f7fdff 0%, #edf9ff 52%, #ddecff 100%);
  --service-media-bg:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.96) 0 16%, transparent 38%),
    radial-gradient(circle at 76% 78%, rgba(54, 189, 243, 0.22), transparent 46%),
    linear-gradient(135deg, rgba(223, 246, 255, 0.96), rgba(238, 247, 255, 0.74));
}

.service-row:nth-child(4) {
  --stack-index: 3;
  --service-accent: #b323e9;
  --service-line: rgba(184, 79, 235, 0.2);
  --service-tag-bg: rgba(179, 35, 233, 0.12);
  --service-tag-color: #8c1fb8;
  --service-card-bg: linear-gradient(135deg, #fff8ff 0%, #f6efff 48%, #ffe8f8 100%);
  --service-media-bg:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 16%, transparent 38%),
    radial-gradient(circle at 80% 76%, rgba(224, 73, 230, 0.22), transparent 46%),
    linear-gradient(135deg, rgba(244, 235, 255, 0.96), rgba(255, 236, 248, 0.74));
}

.service-row img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 2.4vw, 32px);
  object-fit: contain;
  object-position: center;
  background: var(--service-media-bg);
  --image-scale: 1;
  transform: translate3d(0, 0, 0) scale(var(--image-scale));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover img {
  --image-scale: 1.018;
}

.service-copy {
  align-self: center;
  padding: 50px 58px;
}

.service-copy > span {
  color: var(--service-accent, var(--brand-blue-dark));
  font-size: 16px;
}

.service-copy h3 {
  margin-top: 18px;
  font-size: 43px;
  line-height: 1.08;
}

.service-copy p {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.4;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.tags span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--service-tag-bg, var(--brand-blue-soft));
  color: var(--service-tag-color, var(--brand-blue-dark));
  font-size: 13px;
}

.testimonial-head {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(280px, 430px);
  align-items: end;
  gap: 12px 52px;
}

.testimonial-head > * {
  max-width: none;
}

.testimonial-head .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.testimonial-head h2 {
  max-width: 620px;
}

.testimonial-head p {
  max-width: 430px;
}

.testimonials.section-pad {
  padding-top: 66px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.testimonial-grid article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 24px;
  border-radius: var(--radius);
  background: #f5f6f8;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.testimonial-grid article:hover {
  box-shadow: 0 18px 42px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.testimonial-grid p {
  min-height: 150px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.testimonial-grid img {
  width: 54px;
  height: 54px;
  margin-top: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-grid b,
.testimonial-grid span {
  display: block;
}

.testimonial-grid b {
  margin-top: 18px;
  font-size: 15px;
}

.testimonial-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.pricing {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 28px;
}

.pricing-intro {
  align-self: start;
  position: sticky;
  top: 110px;
}

.pricing-intro p {
  margin-top: 18px;
}

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

.plan-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbff 0%, #f5f6f8 66%, var(--brand-blue-faint) 100%);
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.plan-card:hover {
  box-shadow: 0 22px 50px rgba(29, 32, 41, 0.1), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.plan-card h3 {
  font-size: 28px;
}

.plan-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.price {
  margin-top: 48px;
  color: var(--brand-blue-dark);
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.plan-card ul {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
}

.button-dark,
.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 40px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(32, 168, 243, 0.16);
}

.button-light {
  background: #fff;
  color: var(--brand-blue-dark);
}

.popular {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
  font-size: 12px;
}

.plan-featured img {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(25, 156, 230, 0.2), 0 0 0 1px rgba(32, 168, 243, 0.12);
}

.faq {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 28px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 6px;
  font-size: 28px;
  font-weight: 500;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  max-width: 780px;
  padding: 0 70px 26px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.journal {
  padding-top: 70px;
}

.journal-head > div {
  max-width: 760px;
}

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

.article-row a {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  min-height: 258px;
  padding: 24px;
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
  line-height: 1.15;
}

.article-row a:hover {
  background: linear-gradient(135deg, #fff 0%, #fff 76%, var(--brand-blue-faint) 100%);
  box-shadow: 0 18px 42px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
}

.article-row span {
  color: var(--muted);
  font-size: 13px;
}

.article-row b {
  align-self: end;
  max-width: 440px;
  font-size: 24px;
  line-height: 1.12;
}

.article-row em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--brand-blue-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.article-row em::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.article-page {
  padding-top: 132px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 28px;
  color: var(--brand-blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.article-back::before {
  content: "";
  width: 14px;
  height: 14px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.article-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  align-items: center;
  gap: 44px;
  min-height: 560px;
  padding: 56px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 18%, rgba(32, 168, 243, 0.18), transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(255, 135, 170, 0.12), transparent 34%),
    linear-gradient(135deg, #f7fcff 0%, #fff 58%, #e9f7ff 100%);
  box-shadow: inset 0 0 0 1px var(--brand-blue-line);
}

.article-hero::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 32px;
  width: 24px;
  height: 24px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.26;
}

.article-hero h1 {
  max-width: 760px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.article-hero p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.article-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, rgba(224, 245, 255, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow: 0 28px 70px rgba(29, 130, 221, 0.14), inset 0 0 0 1px rgba(32, 168, 243, 0.12);
}

.article-visual-soft {
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(135deg, rgba(232, 246, 255, 0.96), rgba(244, 238, 255, 0.76));
}

.article-visual-wide {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.94), transparent 36%),
    linear-gradient(135deg, rgba(224, 244, 255, 0.96), rgba(255, 247, 252, 0.76));
}

.article-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  object-fit: contain;
  animation: article-float 5.8s ease-in-out infinite;
}

.article-body {
  display: grid;
  grid-template-columns: 300px minmax(0, 760px);
  align-items: start;
  gap: 72px;
  margin-top: 76px;
}

.article-note {
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fcff 0%, #fff 72%, var(--brand-blue-faint) 100%);
  box-shadow: inset 0 0 0 1px var(--brand-blue-line);
}

.article-note img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 16px 38px rgba(29, 130, 221, 0.16);
}

.article-note p {
  margin-top: 28px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.article-content p + p {
  margin-top: 22px;
}

.article-content h2 {
  margin-top: 56px;
  font-size: 38px;
  line-height: 1.08;
}

.article-content h2 + p {
  margin-top: 18px;
}

.article-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 36px 0 8px;
}

.article-points section {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
}

.article-points section::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.16;
}

.article-points span {
  color: var(--brand-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.article-points h3 {
  margin-top: 44px;
  font-size: 22px;
  line-height: 1.12;
}

.article-points p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.article-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 86px;
}

.article-next a {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5f6f8 0%, #fff 72%, var(--brand-blue-faint) 100%);
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.1);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease;
}

.article-next a:hover {
  box-shadow: 0 18px 42px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px);
}

.article-next a::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  transform: rotate(45deg);
}

.article-next span {
  color: var(--brand-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.article-next b {
  display: block;
  max-width: 420px;
  margin-top: 38px;
  font-size: 26px;
  line-height: 1.12;
}

.support-page,
.policy-page {
  padding-top: 132px;
}

.support-hero,
.policy-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 16%, rgba(32, 168, 243, 0.2), transparent 32%),
    radial-gradient(circle at 12% 84%, rgba(255, 135, 170, 0.11), transparent 34%),
    linear-gradient(135deg, #f7fcff 0%, #fff 58%, #e8f7ff 100%);
  box-shadow: inset 0 0 0 1px var(--brand-blue-line);
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  align-items: stretch;
  gap: 36px;
  min-height: 520px;
  padding: 56px;
}

.support-hero::after,
.policy-hero::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 32px;
  width: 24px;
  height: 24px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.25;
}

.support-hero h1,
.policy-hero h1 {
  max-width: 850px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.support-hero p,
.policy-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.support-hero-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 62px rgba(29, 130, 221, 0.12), inset 0 0 0 1px rgba(32, 168, 243, 0.12);
  backdrop-filter: blur(16px);
  position: relative;
}


.support-hero-card img {
  width: 82px;
  height: 82px;
  margin-bottom: auto;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 16px 38px rgba(29, 130, 221, 0.18);
}
.support-hero-card .support-hero-card-conner {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  animation: contact-float 5.8s ease-in-out infinite;
  box-shadow: none;
  z-index: -1;
}

.support-hero-card b {
  font-size: 28px;
  line-height: 1.1;
}

.support-hero-card p {
  margin-top: 16px;
  font-size: 15px;
}

.support-hero-card a {
  width: max-content;
  margin-top: 24px;
  color: var(--brand-blue-dark);
  font-size: 15px;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
}

.support-grid article,
.support-steps section,
.policy-link-grid a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease;
}

.support-grid article {
  min-height: 270px;
  padding: 26px;
}

.support-grid article::after,
.support-steps section::after,
.policy-link-grid a::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.16;
}

.support-grid article:hover,
.policy-link-grid a:hover {
  box-shadow: 0 18px 42px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px);
}

.support-grid span,
.policy-link-grid span {
  color: var(--brand-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.support-grid h2 {
  margin-top: 82px;
  font-size: 25px;
  line-height: 1.12;
}

.support-grid p,
.support-steps p,
.policy-link-grid p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.support-band,
.support-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  margin-top: 86px;
}

.support-band h2,
.support-faq h2 {
  font-size: 42px;
  line-height: 1.05;
}

.support-steps {
  display: grid;
  gap: 10px;
}

.support-steps section {
  min-height: 150px;
  padding: 26px;
}

.support-steps b {
  display: block;
  max-width: 420px;
  font-size: 22px;
}

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

.policy-link-grid a {
  min-height: 260px;
  padding: 26px;
}

.policy-link-grid b {
  display: block;
  max-width: 360px;
  margin-top: 76px;
  font-size: 25px;
  line-height: 1.12;
}

.policy-hero {
  padding: 56px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 830px);
  align-items: start;
  gap: 76px;
  margin-top: 76px;
}

.policy-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--brand-blue-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(29, 32, 41, 0.06), 0 12px 32px rgba(32, 168, 243, 0.08);
  backdrop-filter: blur(16px);
}

.policy-sidebar a {
  padding: 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.1;
}

.policy-sidebar a:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue-dark);
}

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

.policy-content section {
  padding: 34px;
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
}

.policy-content h2 {
  font-size: 34px;
  line-height: 1.08;
}

.policy-content p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.contact-page {
  padding-top: 132px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(320px, 0.4fr);
  align-items: center;
  gap: 42px;
  min-height: 540px;
  padding: 56px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(32, 168, 243, 0.22), transparent 31%),
    radial-gradient(circle at 18% 86%, rgba(255, 135, 170, 0.12), transparent 34%),
    linear-gradient(135deg, #f7fcff 0%, #fff 58%, #e8f7ff 100%);
  box-shadow: inset 0 0 0 1px var(--brand-blue-line);
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 32px;
  width: 24px;
  height: 24px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.25;
}

.contact-hero h1 {
  max-width: 820px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.contact-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.contact-orbit {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(32, 168, 243, 0.16), transparent 30%),
    radial-gradient(circle at 80% 72%, rgba(255, 145, 175, 0.15), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(229, 247, 255, 0.72));
  box-shadow: 0 26px 70px rgba(29, 130, 221, 0.13), inset 0 0 0 1px rgba(32, 168, 243, 0.12);
}

.contact-orbit img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 148px;
  height: 148px;
  border-radius: 32px;
  object-fit: contain;
  box-shadow: 0 28px 62px rgba(29, 130, 221, 0.2);
  transform: translate(-50%, -50%);
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  inset: 62px 42px;
  border: 2px solid rgba(32, 168, 243, 0.22);
  border-radius: 50%;
}

.contact-orbit::after {
  inset: 88px 72px;
  border-color: rgba(255, 255, 255, 0.86);
  transform: rotate(-18deg);
}

.orbit-bubble {
  position: absolute;
  z-index: 3;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.96), transparent 26%),
    linear-gradient(135deg, #20a8f3, #7bdcff);
  box-shadow: 0 18px 38px rgba(29, 130, 221, 0.18);
  animation: contact-float 5.8s ease-in-out infinite;
}

.bubble-one {
  left: 18%;
  top: 24%;
}

.bubble-two {
  right: 16%;
  top: 34%;
  width: 42px;
  height: 42px;
  animation-delay: 900ms;
}

.bubble-three {
  right: 28%;
  bottom: 18%;
  width: 50px;
  height: 50px;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 255, 255, 0.96), transparent 26%),
    linear-gradient(135deg, #ff8ea8, #ffd4df);
  animation-delay: 1600ms;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 28px;
  margin-top: 42px;
}

.contact-form,
.contact-panel {
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
}

.contact-form div:nth-child(3),
.contact-form div:nth-child(4) {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 168, 243, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  padding: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 4px var(--brand-blue-soft);
}

.contact-form .button-dark {
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 30px;
  background:
    radial-gradient(circle at 72% 24%, rgba(32, 168, 243, 0.14), transparent 32%),
    linear-gradient(135deg, #f7fcff 0%, #fff 64%, var(--brand-blue-faint) 100%);
}

.contact-panel img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  animation: article-float 5.8s ease-in-out infinite;
}

.contact-panel a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 12px;
  color: var(--brand-blue-dark);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

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

.contact-cards article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(32, 168, 243, 0.08);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease;
}

.contact-cards article:hover {
  box-shadow: 0 18px 42px rgba(29, 32, 41, 0.08), 0 0 0 1px var(--brand-blue-line);
  transform: translateY(-4px);
}

.contact-cards article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 16px;
  height: 16px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  opacity: 0.16;
}

.contact-cards span {
  color: var(--brand-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.contact-cards h2 {
  margin-top: 78px;
  font-size: 25px;
  line-height: 1.12;
}

.contact-cards p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.contact-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  margin-top: 86px;
}

.contact-faq h2 {
  font-size: 42px;
  line-height: 1.05;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: calc(var(--max) - 80px);
  margin: 20px auto 0;
  padding: 54px 58px;
  border-radius: var(--radius);
  border: 1px solid rgba(122, 213, 255, 0.34);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 66%, rgba(126, 218, 255, 0.2) 100%),
    linear-gradient(135deg, #052d5c 0%, #075fa9 52%, #14a5f4 132%);
  box-shadow: 0 26px 70px rgba(8, 126, 214, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 22px);
  opacity: 0.34;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner div {
  max-width: 720px;
}

.cta-banner span {
  display: block;
  margin-bottom: 18px;
  color: rgba(214, 242, 255, 0.82);
  font-size: 14px;
}

.cta-banner p {
  margin-top: 18px;
  color: rgba(228, 246, 255, 0.82);
}

.cta-banner .button-light {
  color: var(--brand-blue-dark);
  box-shadow: 0 16px 34px rgba(4, 45, 92, 0.24);
}

.footer {
  padding: 100px var(--pad) 40px;
  background:
    linear-gradient(180deg, transparent 0, rgba(32, 168, 243, 0.045) 100%),
    #fff;
}

.footer-inner {
  max-width: calc(var(--max) - 80px);
  margin: 0 auto;
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.footer-top p {
  color: var(--muted);
  font-size: 18px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.socials a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 11px auto;
  border-radius: 50%;
  background: var(--ink);
}

.footer-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1916 / 821;
  margin: 42px 0;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 120ms linear;
}

.footer-bottom {
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom div,
.footer-bottom nav {
  display: grid;
  gap: 12px;
}

.footer-bottom a {
  position: relative;
  color: var(--ink);
  width: max-content;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.js .site-header {
  opacity: 0;
  transform: translateY(-18px);
}

.js.page-ready .site-header {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy h1,
.hero-copy .text-cta,
.brand-strip p,
.mini-logos span,
.stats-grid div,
.feature-cards article,
.testimonial-grid article,
.article-row a {
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-copy:not(.is-visible) h1,
.js .hero-copy:not(.is-visible) .text-cta,
.js .brand-strip:not(.is-visible) p,
.js .brand-strip:not(.is-visible) .mini-logos span,
.js .stats-grid:not(.is-visible) div,
.js .feature-band:not(.is-visible) .feature-cards article,
.js .testimonial-grid:not(.is-visible) article,
.js .journal:not(.is-visible) .article-row a {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px);
}

.hero-copy .text-cta,
.brand-strip p {
  transition-delay: 120ms;
}

.mini-logos span:nth-child(1),
.stats-grid div:nth-child(1),
.feature-cards article:nth-child(1),
.testimonial-grid article:nth-child(1),
.article-row a:nth-child(1) {
  transition-delay: 80ms;
}

.mini-logos span:nth-child(2),
.stats-grid div:nth-child(2),
.feature-cards article:nth-child(2),
.testimonial-grid article:nth-child(2),
.article-row a:nth-child(2) {
  transition-delay: 150ms;
}

.mini-logos span:nth-child(3),
.stats-grid div:nth-child(3),
.testimonial-grid article:nth-child(3),
.article-row a:nth-child(3) {
  transition-delay: 220ms;
}

.mini-logos span:nth-child(4),
.stats-grid div:nth-child(4),
.testimonial-grid article:nth-child(4) {
  transition-delay: 290ms;
}

.mini-logos span:nth-child(5) {
  transition-delay: 360ms;
}

.text-cta:hover .arrow-icon {
  animation: arrow-bounce 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.text-cta:hover .cta-lines {
  animation: cta-lines 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rail-button {
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.rail-button:hover {
  box-shadow: 0 16px 34px rgba(29, 32, 41, 0.16);
  transform: translateY(-2px);
}

.rail-button:active {
  transform: translateY(1px) scale(0.98);
}

.support-menu {
  clip-path: inset(0 0 12px 0 round var(--radius));
}

.nav-support:hover .support-menu,
.nav-support:focus-within .support-menu {
  clip-path: inset(0 0 0 0 round var(--radius));
}

.mobile-panel {
  opacity: 0;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .mobile-panel {
  opacity: 1;
}

.mobile-panel a,
.mobile-panel summary {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .mobile-panel a,
body.menu-open .mobile-panel summary {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open .mobile-panel > a:nth-child(1) {
  transition-delay: 70ms;
}

body.menu-open .mobile-panel > a:nth-child(2) {
  transition-delay: 110ms;
}

body.menu-open .mobile-panel details summary {
  transition-delay: 150ms;
}

body.menu-open .mobile-panel > a:nth-last-child(1) {
  transition-delay: 190ms;
}

.accordion details {
  overflow: hidden;
  transition: background 220ms ease;
}

.accordion details:hover {
  background: rgba(244, 245, 247, 0.66);
}

.accordion details p {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion details[open] p {
  opacity: 1;
  transform: translateY(0);
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translate(0, 0);
  }
  45% {
    transform: translate(6px, -6px);
  }
}

@keyframes cta-lines {
  0%,
  100% {
    width: 31px;
  }
  45% {
    width: 48px;
  }
}

@keyframes count-tick-pop {
  0% {
    color: var(--brand-blue-dark);
    text-shadow: 0 0 0 rgba(32, 168, 243, 0);
    transform: translateY(5px) scale(0.96);
  }

  58% {
    color: var(--brand-blue);
    text-shadow: 0 10px 26px rgba(32, 168, 243, 0.24);
    transform: translateY(-2px) scale(1.035);
  }

  100% {
    color: inherit;
    text-shadow: 0 0 0 rgba(32, 168, 243, 0);
    transform: translateY(0) scale(1);
  }
}

@keyframes quote-object-float {
  0%,
  100% {
    transform: translate3d(0, calc(var(--quote-float-low) + var(--parallax-y, 0px)), 0) rotate(var(--float-rotate, 0deg));
  }

  50% {
    transform: translate3d(0, calc(var(--quote-float-high) + var(--parallax-y, 0px)), 0) rotate(var(--float-rotate, 0deg));
  }
}

@keyframes article-float {
  0%,
  100% {
    transform: translate3d(0, 10px, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -8px, 0) scale(1.015);
  }
}

@keyframes contact-float {
  0%,
  100% {
    transform: translate3d(0, 8px, 0);
  }

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

@keyframes hero-star-sparkle {
  0%,
  100% {
    opacity: 0.46;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.88);
    filter: drop-shadow(0 8px 16px rgba(32, 168, 243, 0.16));
  }

  38% {
    opacity: 0.9;
    transform: translate3d(-6px, 7px, 0) rotate(24deg) scale(1.18);
    filter: drop-shadow(0 12px 28px rgba(32, 168, 243, 0.36));
  }

  68% {
    opacity: 0.62;
    transform: translate3d(4px, -4px, 0) rotate(46deg) scale(1);
    filter: drop-shadow(0 10px 20px rgba(32, 168, 243, 0.24));
  }
}

@keyframes hero-title-star-sparkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.82);
    filter: drop-shadow(0 5px 10px rgba(32, 168, 243, 0.16));
  }

  42% {
    opacity: 0.95;
    transform: translate3d(3px, -4px, 0) rotate(30deg) scale(1.18);
    filter: drop-shadow(0 8px 18px rgba(32, 168, 243, 0.34));
  }

  72% {
    opacity: 0.72;
    transform: translate3d(-2px, 2px, 0) rotate(55deg) scale(0.96);
    filter: drop-shadow(0 6px 14px rgba(32, 168, 243, 0.24));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .js .site-header,
  .js .hero-copy:not(.is-visible) h1,
  .js .hero-copy:not(.is-visible) .text-cta,
  .js .brand-strip:not(.is-visible) p,
  .js .brand-strip:not(.is-visible) .mini-logos span,
  .js .stats-grid:not(.is-visible) div,
  .js .feature-band:not(.is-visible) .feature-cards article,
  .js .testimonial-grid:not(.is-visible) article,
  .js .journal:not(.is-visible) .article-row a,
  .js .story-intro-grid:not(.is-visible) article,
  .js .story-principles:not(.is-visible) .principle-grid article,
  .js .story-timeline:not(.is-visible) .timeline-list article {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 1199px) {
  :root {
    --pad: 33px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-copy {
    grid-template-columns: minmax(0, 620px) 190px;
  }

  .split-heading h1,
  .split-heading h2,
  .work-header h2,
  .services-head h2,
  .testimonial-head h2,
  .pricing-intro h2,
  .faq-head h2,
  .journal-head h2,
  .cta-banner h2 {
    font-size: 46px;
  }

  .story-feature h3,
  .story-section-head h3,
  .story-trust h3 {
    font-size: 38px;
  }

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

  blockquote {
    font-size: 48px;
  }

  .case-grid {
    grid-auto-rows: 230px;
  }

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

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

  .pricing-intro {
    position: static;
  }

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

  .article-hero h1 {
    font-size: 54px;
  }

  .support-hero,
  .policy-hero,
  .contact-hero {
    padding: 44px;
  }

  .support-hero h1,
  .policy-hero h1,
  .contact-hero h1 {
    font-size: 54px;
  }

  .article-body {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 42px;
  }

  .article-points {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .support-band,
  .support-faq,
  .policy-link-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

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

  .policy-sidebar {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 809px) {
  :root {
    --pad: 21px;
  }

  .site-header {
    height: 72px;
    padding: 0 var(--pad);
    background: #fff;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    display: block;
  }

  body.menu-open .mobile-panel {
    transform: translateY(0);
  }

  .hero {
    padding-top: 132px;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: 50px;
    line-height: 1.02;
  }

  .text-cta {
    justify-self: start;
    font-size: 16px;
  }

  .hero-rail-wrap {
    margin-top: 36px;
  }

  .hero-card {
    flex-basis: 250px;
    height: 322px;
  }

  .rail-button {
    display: none;
  }

  .mini-logos {
    gap: 18px;
  }

  .section-pad {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .split-heading,
  .quote-card,
  .service-row,
  .pricing-grid,
  .feature-cards,
  .article-body,
  .article-next,
  .story-feature,
  .story-section-head,
  .story-trust {
    grid-template-columns: 1fr;
  }

  .story-jump {
    position: relative;
    top: auto;
    width: 100%;
  }

  .story-intro-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .story-feature > div,
  .story-trust {
    padding: 34px;
  }

  .story-feature img {
    min-height: 360px;
  }

  .story-principles,
  .story-timeline,
  .story-trust {
    margin-top: 56px;
  }

  .timeline-list article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading h1,
  .split-heading h2,
  .work-header h2,
  .services-head h2,
  .testimonial-head h2,
  .pricing-intro h2,
  .faq-head h2,
  .journal-head h2,
  .cta-banner h2 {
    font-size: 40px;
  }

  .story-feature h3,
  .story-section-head h3,
  .story-trust h3 {
    font-size: 34px;
  }

  .about-image img {
    height: 360px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-grid div {
    min-height: auto;
    padding: 22px 0;
  }

  .quote-card {
    margin: 0 var(--pad);
    min-height: auto;
  }

  .quote-content {
    padding: 34px;
  }

  .micro-logo {
    margin-bottom: 34px;
  }

  .micro-logo-img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  blockquote {
    font-size: 36px;
  }

  .quote-object {
    --quote-float-low: 30px;
    --quote-float-high: 8px;
    max-height: 340px;
  }

  .article-page {
    padding-top: 108px;
  }

  .article-hero {
    min-height: auto;
    padding: 34px;
    gap: 32px;
  }

  .article-hero h1 {
    font-size: 42px;
  }

  .article-hero p {
    font-size: 17px;
  }

  .article-visual {
    min-height: 330px;
  }

  .article-body {
    gap: 34px;
    margin-top: 54px;
  }

  .article-note {
    position: relative;
    top: auto;
  }

  .article-content h2 {
    font-size: 31px;
  }

  .article-content p {
    font-size: 16px;
  }

  .article-next {
    margin-top: 58px;
  }

  .support-page,
  .policy-page,
  .contact-page {
    padding-top: 108px;
  }

  .support-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .support-hero,
  .policy-hero,
  .contact-hero {
    padding: 34px;
  }

  .support-hero h1,
  .policy-hero h1,
  .contact-hero h1 {
    font-size: 42px;
  }

  .support-hero p,
  .policy-hero p,
  .contact-hero p {
    font-size: 17px;
  }

  .contact-orbit {
    min-height: 300px;
  }

  .contact-orbit img {
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }

  .contact-main,
  .contact-form,
  .contact-cards,
  .contact-faq {
    grid-template-columns: 1fr;
  }

  .contact-form div,
  .contact-form div:nth-child(3),
  .contact-form div:nth-child(4),
  .contact-form .button-dark {
    grid-column: auto;
  }

  .contact-panel {
    min-height: 430px;
  }

  .support-hero-card {
    min-height: 300px;
  }

  .support-grid,
  .policy-link-grid,
  .policy-sidebar {
    grid-template-columns: 1fr;
  }

  .support-band,
  .support-faq,
  .policy-link-grid,
  .contact-faq {
    margin-top: 58px;
  }

  .support-band h2,
  .support-faq h2,
  .contact-faq h2 {
    font-size: 34px;
  }

  .policy-layout {
    gap: 34px;
    margin-top: 54px;
  }

  .policy-content section {
    padding: 28px;
  }

  .policy-content h2 {
    font-size: 29px;
  }

  .work-header,
  .services-head,
  .testimonial-head,
  .journal-head,
  .cta-banner,
  .footer-top,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .case-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .case-tile.tall,
  .case-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-band {
    margin-left: var(--pad);
    margin-right: var(--pad);
    padding: 34px;
  }

  .feature-band h2 {
    font-size: 36px;
  }

  .feature-cards article {
    min-height: 300px;
    padding: 28px 28px 112px;
  }

  .feature-cards img {
    top: auto;
    right: 28px;
    bottom: 24px;
    width: 74px;
    height: 74px;
    opacity: 0.58;
    transform: none;
  }

  .feature-cards p {
    margin-top: 36px;
  }

  .service-row img {
    height: 340px;
    padding: 18px;
  }

  .service-list {
    padding-bottom: 54px;
  }

  .testimonials.section-pad {
    padding-top: 58px;
  }

  .service-row {
    top: calc(76px + (var(--stack-index, 0) * 10px));
  }

  .service-copy {
    padding: 32px;
  }

  .service-copy h3 {
    font-size: 34px;
  }

  .testimonial-grid,
  .article-row {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
    padding: 30px;
  }

  .plan-featured img {
    position: static;
    width: 100%;
    max-height: 220px;
    margin-top: 26px;
    object-fit: cover;
  }

  .accordion summary {
    font-size: 18px;
    line-height: 1.25;
  }

  .accordion p {
    padding-right: 0;
  }

  .cta-banner {
    margin-left: var(--pad);
    margin-right: var(--pad);
    padding: 34px;
  }

  .footer {
    padding-top: 72px;
  }

  .footer-image {
    height: auto;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 44px;
  }

  .mobile-panel a,
  .mobile-panel summary {
    font-size: 35px;
  }

  .split-heading h1,
  .split-heading h2,
  .work-header h2,
  .services-head h2,
  .testimonial-head h2,
  .pricing-intro h2,
  .faq-head h2,
  .journal-head h2,
  .cta-banner h2 {
    font-size: 34px;
  }

  .story-feature h3,
  .story-section-head h3,
  .story-trust h3 {
    font-size: 30px;
  }

  .stats-grid strong,
  .stats-grid span,
  .price {
    font-size: 48px;
  }

  blockquote {
    font-size: 31px;
  }

  .article-row b {
    font-size: 22px;
  }

  .article-hero {
    padding: 28px;
  }

  .article-hero h1 {
    font-size: 36px;
  }

  .article-visual {
    min-height: 290px;
  }

  .article-next b {
    font-size: 22px;
  }

  .contact-hero {
    padding: 28px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-form,
  .contact-panel {
    padding: 26px;
  }

  .contact-panel a {
    font-size: 18px;
  }
}
