:root {
  --ink: #10224f;
  --ink-soft: rgba(16, 34, 79, 0.74);
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-border: rgba(255, 255, 255, 0.55);
  --surface-shadow: 0 32px 90px rgba(16, 34, 79, 0.14);
  --mint: #5dfdcb;
  --sky: #90d7ff;
  --ice: #c9f9ff;
  --cloud: #bfd0e0;
  --slate: #b8b3be;
  --navy: #0d1a42;
  --success: #0a9a73;
  --error: #bc365d;
  --header-offset: 7.25rem;
  --page-gutter: max(1rem, calc((100vw - 76rem) / 2));
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --radius-sm: 1rem;
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Avenir Next", "SF Pro Text", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(93, 253, 203, 0.34), transparent 34%),
    radial-gradient(circle at top right, rgba(144, 215, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #f8feff 0%, #eef6fb 58%, #f8fcff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 15% 15%, rgba(93, 253, 203, 0.22), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(144, 215, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(201, 249, 255, 0.18), transparent 25%);
}

body::after {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 25% 20%, rgba(16, 34, 79, 0.06) 0 1px, transparent 1px);
  background-size: auto, 16px 16px;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 999px;
  z-index: 100;
  box-shadow: var(--surface-shadow);
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100% - 2rem, 76rem);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72));
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(26px);
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: rgba(16, 34, 79, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.trust-intro h2,
.expectations-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.trust-intro p,
.expectations-copy p,
.contact-copy p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  min-width: 3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--mint), #7effea);
  box-shadow: 0 18px 38px rgba(93, 253, 203, 0.32);
}

.button.ghost {
  color: var(--navy);
  border-color: rgba(16, 34, 79, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0;
  background: linear-gradient(180deg, rgba(248, 254, 255, 0.95), rgba(236, 249, 252, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 38px rgba(16, 34, 79, 0.08);
  backdrop-filter: blur(24px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3rem;
}

.brand-logo {
  width: 3rem;
  height: 3rem;
  flex: none;
}

.brand-text {
  display: grid;
  line-height: 0.96;
}

.brand-text strong,
.brand-text span {
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

.brand-text span {
  font-size: 0.74rem;
  letter-spacing: 0.44em;
  color: rgba(16, 34, 79, 0.74);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link,
.mobile-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.9rem;
  color: rgba(16, 34, 79, 0.72);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current,
.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--navy);
  background: rgba(93, 253, 203, 0.14);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 34, 79, 0.06);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.18rem auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(0.35rem) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  inset: calc(100% + 0.75rem) 1rem auto;
  z-index: 41;
}

.mobile-panel-inner {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 26px 68px rgba(16, 34, 79, 0.18);
  backdrop-filter: blur(24px);
}

.mobile-link {
  justify-content: flex-start;
  min-height: 3rem;
  padding-inline: 1rem;
  font-weight: 600;
}

.mobile-cta {
  width: 100%;
}

.hero-section {
  padding-top: 0;
}

.hero-card {
  width: 100vw;
  min-height: clamp(44rem, 74vw, 58rem);
  margin-inline: calc(50% - 50vw);
  padding: clamp(5.75rem, 8vw, 7.75rem) var(--page-gutter) clamp(2.75rem, 4vw, 4rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 33rem;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.2rem 0 0;
  max-width: 56rem;
}

.hero-metrics div {
  padding: 1rem 1rem 1.15rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.hero-metrics dt {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-metrics dd {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-visual {
  --hero-x: 50%;
  --hero-y: 52%;
  --hero-radius: 7.5rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  border-radius: 0;
  background: transparent;
  outline: none;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-visual::before {
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(255, 255, 255, 0.16), transparent 12rem),
    linear-gradient(90deg, rgba(248, 254, 255, 0.98) 0%, rgba(248, 254, 255, 0.86) 28%, rgba(248, 254, 255, 0.24) 56%, rgba(248, 254, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 28%, rgba(16, 34, 79, 0.18) 100%);
}

.hero-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 22%, rgba(16, 34, 79, 0.16) 100%);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-base {
  transform: scale(1.05);
}

.hero-reveal {
  transform: scale(1.05);
  -webkit-mask-image: radial-gradient(
    circle var(--hero-radius) at var(--hero-x) var(--hero-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 54%,
    rgba(0, 0, 0, 0.58) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--hero-radius) at var(--hero-x) var(--hero-y),
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 54%,
    rgba(0, 0, 0, 0.58) 74%,
    transparent 100%
  );
}

.hero-spotlight {
  position: absolute;
  left: var(--hero-x);
  top: var(--hero-y);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  width: clamp(9rem, 30vw, 18rem);
  height: clamp(9rem, 30vw, 18rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08) 44%, transparent 74%);
  filter: blur(28px);
}

.experience-card {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: clamp(1.75rem, 4vw, 2.4rem) var(--page-gutter) clamp(3rem, 5vw, 4rem);
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.78) 30%, rgba(255, 255, 255, 0.28) 100%);
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.experience-card .section-heading {
  position: relative;
  z-index: 2;
}

.experience-stage {
  --hand-top: clamp(6.5rem, 11vw, 9rem);
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  padding-bottom: clamp(10rem, 22vw, 15rem);
}

.experience-track {
  position: relative;
  z-index: 2;
  min-height: 32rem;
  perspective: 1400px;
  outline: none;
  touch-action: pan-y;
}

.experience-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(25rem, 72vw);
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-50%) scale(0.72);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease, filter 360ms ease;
}

.experience-surface {
  display: grid;
  overflow: hidden;
  border-radius: 1.8rem;
  box-shadow: 0 24px 64px rgba(16, 34, 79, 0.26);
}

.experience-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.experience-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 34, 79, 0.04), transparent 36%),
    linear-gradient(0deg, rgba(5, 18, 43, 0.64), transparent 48%);
}

.experience-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-body {
  display: grid;
  gap: 0.5rem;
  padding: 1.35rem 1.4rem 1.5rem;
  background: #bfd0e0;
  color: var(--navy);
}

.experience-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(16, 34, 79, 0.66);
}

.experience-body strong {
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.experience-body span:last-child {
  color: rgba(16, 34, 79, 0.8);
  line-height: 1.55;
}

.experience-item.is-active {
  opacity: 1;
  z-index: 5;
  filter: none;
  transform: translateX(-50%) translateY(0) scale(1);
}

.experience-item.is-active .experience-body {
  background: #10224f;
  color: #fff;
}

.experience-item.is-active .experience-type {
  color: rgba(201, 249, 255, 0.84);
}

.experience-item.is-active .experience-body span:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.experience-item.is-prev,
.experience-item.is-next {
  opacity: 0.78;
  z-index: 4;
}

.experience-item.is-prev {
  transform: translateX(calc(-50% - 74%)) translateY(1.9rem) rotateY(28deg) scale(0.84);
}

.experience-item.is-next {
  transform: translateX(calc(-50% + 74%)) translateY(1.9rem) rotateY(-28deg) scale(0.84);
}

.experience-item.is-far-prev,
.experience-item.is-far-next {
  opacity: 0.42;
  z-index: 3;
  filter: blur(0.4px);
}

.experience-item.is-far-prev {
  transform: translateX(calc(-50% - 112%)) translateY(2.7rem) scale(0.72);
}

.experience-item.is-far-next {
  transform: translateX(calc(-50% + 112%)) translateY(2.7rem) scale(0.72);
}

.experience-item[aria-selected="true"] .experience-surface {
  box-shadow: 0 34px 78px rgba(16, 34, 79, 0.34);
}

.carousel-button {
  position: absolute;
  top: 9.4rem;
  z-index: 6;
  width: 3.4rem;
  height: 3.4rem;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(16, 34, 79, 0.12);
  cursor: pointer;
}

.carousel-button.prev {
  left: max(0.25rem, 2%);
}

.carousel-button.next {
  right: max(0.25rem, 2%);
}

.carousel-button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hand-support {
  position: absolute;
  left: 50%;
  top: var(--hand-top);
  z-index: 1;
  max-width: none;
  width: 100vw;
  height: clamp(20rem, 40vw, 30rem);
  object-fit: cover;
  object-position: center 76%;
  pointer-events: none;
  filter: saturate(1.02);
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 8%,
    rgba(0, 0, 0, 0.72) 16%,
    #000 24%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.22) 8%,
    rgba(0, 0, 0, 0.72) 16%,
    #000 24%,
    #000 100%
  );
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.experience-nav {
  margin-top: 1rem;
}

.experience-nav .carousel-dots {
  margin-top: 0;
}

.carousel-dot {
  width: 0.78rem;
  height: 0.78rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 34, 79, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.carousel-dot.is-active {
  background: var(--sky);
  transform: scale(1.2);
}

.trust-card {
  width: 100vw;
  min-height: 43rem;
  margin-inline: calc(50% - 50vw);
  padding: clamp(1.5rem, 4vw, 2.6rem) var(--page-gutter);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.trust-media,
.trust-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trust-media {
  background: #0d1a42;
}

.trust-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 15, 38, 0.24), rgba(6, 15, 38, 0.1) 26%, rgba(6, 15, 38, 0.68) 100%),
    radial-gradient(circle at center 20%, rgba(255, 255, 255, 0.22), transparent 42%);
}

.trust-media video {
  object-fit: cover;
}

.trust-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  min-height: 43rem;
  max-width: 76rem;
  margin-inline: auto;
}

.trust-intro {
  position: relative;
  isolation: isolate;
  width: min(100%, 44rem);
  margin-inline: auto;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.15rem, 2.6vw, 1.8rem);
  text-align: center;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.trust-intro::before {
  content: "";
  position: absolute;
  inset: -18% -12%;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(8, 18, 44, 0.86) 0%, rgba(8, 18, 44, 0.72) 36%, rgba(8, 18, 44, 0.42) 62%, transparent 100%);
  filter: blur(24px);
  pointer-events: none;
}

.trust-intro .section-kicker,
.trust-intro h2,
.trust-intro p {
  color: rgba(255, 255, 255, 0.96);
}

.trust-intro p {
  color: rgba(255, 255, 255, 0.86);
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  touch-action: pan-y;
}

.trust-pillar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 38px rgba(16, 34, 79, 0.1);
  transition: transform 280ms ease, border-color 280ms ease, background-color 280ms ease;
}

.trust-pillar.is-active,
.trust-pillar:focus-visible {
  border-color: rgba(93, 253, 203, 0.72);
  background: rgba(255, 255, 255, 0.82);
  outline: none;
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(144, 215, 255, 0.3), rgba(93, 253, 203, 0.26));
  color: #2162d0;
}

.pillar-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-pillar h3 {
  margin: 1rem 0 0;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.trust-pillar p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.trust-dots {
  display: none;
  justify-content: center;
  gap: 0.5rem;
}

.trust-nav {
  display: none !important;
}

.trust-nav .trust-nav-button {
  display: none !important;
}

.trust-dots span {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
}

.expectations-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: end;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: clamp(1.5rem, 4vw, 2.8rem) var(--page-gutter) 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(219, 248, 255, 0.92) 0%, rgba(161, 225, 255, 0.96) 48%, rgba(144, 215, 255, 0.98) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.expectations-copy {
  align-self: center;
  padding-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.check-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 20%, transparent 21%),
    linear-gradient(135deg, var(--mint), var(--sky));
  box-shadow: 0 0 0 0.18rem rgba(93, 253, 203, 0.15);
}

.head-stage {
  position: relative;
  min-height: clamp(34rem, 42vw, 39rem);
  overflow: hidden;
  background: transparent;
}

.head-character {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(30rem, 100%);
  height: 100%;
  transform: translateX(-50%);
}

.head-face,
.head-body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.head-face {
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(16, 34, 79, 0.12));
}

.head-body {
  z-index: 1;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 2.3rem);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: clamp(1.5rem, 4vw, 2.8rem) var(--page-gutter);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.contact-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  align-self: center;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-chips span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: rgba(16, 34, 79, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 52px rgba(16, 34, 79, 0.1);
}

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

.form-field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 34, 79, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 9.5rem;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field input[aria-invalid="true"]:focus-visible,
.form-field textarea[aria-invalid="true"]:focus-visible {
  outline: none;
  border-color: rgba(36, 103, 235, 0.42);
  box-shadow: 0 0 0 0.24rem rgba(144, 215, 255, 0.32);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: rgba(188, 54, 93, 0.42);
  background: rgba(255, 247, 251, 0.96);
}

.field-error {
  min-height: 1rem;
  margin: 0;
  color: var(--error);
  font-size: 0.86rem;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--error);
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 0;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 1.6rem var(--page-gutter) 1.8rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(12, 26, 66, 0.96), rgba(33, 75, 154, 0.94));
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(255, 255, 255, 0.92);
}

.footer-intro p,
.footer-intro strong {
  margin: 0;
}

.footer-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-intro strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.1rem;
}

.footer-email {
  display: inline-block;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: end;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
}

.footer-brand-meta {
  display: grid;
  gap: 0.15rem;
}

.footer-brand-wordmark span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand-wordmark strong {
  color: rgba(255, 255, 255, 0.96);
}

.footer-brand-meta em {
  margin-top: 0.25rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

:focus-visible {
  outline: 3px solid rgba(36, 103, 235, 0.34);
  outline-offset: 3px;
}

@media (max-width: 72rem) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .carousel-button.prev {
    left: 0;
  }

  .carousel-button.next {
    right: 0;
  }
}

@media (max-width: 62rem) {
  .primary-nav,
  .desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-card,
  .expectations-card,
  .contact-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .experience-item.is-prev {
    transform: translateX(calc(-50% - 60%)) translateY(2rem) rotateY(20deg) scale(0.8);
  }

  .experience-item.is-next {
    transform: translateX(calc(-50% + 60%)) translateY(2rem) rotateY(-20deg) scale(0.8);
  }

  .trust-pillars {
    grid-template-columns: 1fr;
  }

  .head-character {
    width: min(26rem, 94%);
  }

  .footer-brand {
    justify-self: start;
  }
}

@media (max-width: 48rem) {
  .site-header {
    padding-top: 0;
  }

  .shell {
    width: min(100% - 1rem, 76rem);
  }

  .header-shell {
    padding: 0.75rem 0;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .brand-text span {
    font-size: 0.66rem;
    letter-spacing: 0.38em;
  }

  .hero-card {
    min-height: 44rem;
    padding: 4.75rem 1rem 4.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-visual img {
    object-position: center bottom;
  }

  .experience-track {
    min-height: 27rem;
  }

  .experience-item {
    width: min(22rem, 84vw);
  }

  .experience-item.is-prev {
    opacity: 0.3;
    transform: translateX(calc(-50% - 44%)) translateY(2.2rem) scale(0.78);
  }

  .experience-item.is-next {
    opacity: 0.3;
    transform: translateX(calc(-50% + 44%)) translateY(2.2rem) scale(0.78);
  }

  .experience-item.is-far-prev,
  .experience-item.is-far-next {
    display: none;
  }

  .carousel-button {
    width: 3rem;
    height: 3rem;
  }

  .experience-nav .carousel-button,
  .trust-nav .carousel-button {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 3rem;
    height: 3rem;
  }

  .trust-card {
    min-height: 40rem;
  }

  .trust-content {
    min-height: 40rem;
  }

  .trust-pillars {
    position: relative;
    min-height: 13.5rem;
  }

  .trust-pillar {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease, transform 260ms ease;
  }

  .trust-pillar.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .trust-nav {
    display: flex !important;
    align-self: center;
  }

  .trust-nav .trust-nav-button {
    display: grid !important;
  }

  .trust-dots {
    display: flex;
  }

  .contact-form {
    padding: 1rem;
  }
}

@media (max-width: 36rem) {
  .experience-stage {
    --hand-top: clamp(8.5rem, 24vw, 10.5rem);
    padding-bottom: 10rem;
  }

  .hand-support {
    height: 16rem;
  }

  .footer-shell {
    padding: 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
