@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --ink: #07101f;
  --paper: #f4f7fb;
  --white: #ffffff;
  --blue: #1668f5;
  --cyan: #29c7ed;
  --muted: #5d6b80;
  --muted-soft: #637085;
  --copy-hero: #b8c7dc;
  --copy-product: #b2bfd1;
  --copy-product-strong: #dbe4f0;
  --success: #19765a;
  --blue-wash: #e7effd;
  --feature-dot: #29c7ed;
  --line: rgba(7, 16, 31, .12);
  --line-on-blue: rgba(255, 255, 255, .28);
  --signal-halo: rgba(255, 255, 255, .13);
  --shadow-signal: 0 20px 42px rgba(7, 16, 31, .2);
  --shadow-card: 0 18px 44px rgba(19, 46, 86, .1);
  --shadow-message: 0 18px 40px rgba(7, 80, 200, .4);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --duration-fast: .2s;
  --space-section: clamp(84px, 8vw, 120px);
  --measure-copy: 68ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope Variable", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-wrap: break-word;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { color: var(--white); background: var(--blue); }
.shell { width: min(100% - 32px, 1160px); margin-inline: auto; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  inset-inline-start: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 740;
  transform: translateY(-160%);
  transition: transform var(--duration-fast) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }
#wp-skip-link:focus {
  position: fixed !important;
  z-index: 100000;
  top: 12px !important;
  right: auto !important;
  bottom: auto !important;
  left: 12px !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 16px;
  clip: auto !important;
  clip-path: none;
  color: var(--white) !important;
  background: var(--ink) !important;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 740;
  text-decoration: none;
  transform: translateY(0);
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: .12em;
  white-space: nowrap;
}
.wordmark strong { color: var(--blue); font-weight: 780; }

.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
}

.hero { color: var(--white); background: var(--ink); overflow: hidden; }
.hero__inner { display: grid; gap: 52px; padding-block: 72px 80px; }
.hero__copy,
.namesake__copy,
.product__copy { min-width: 0; }
.hero h1 {
  margin: 0 0 24px;
  max-width: 850px;
  font-size: clamp(48px, 14vw, 76px);
  line-height: .99;
  letter-spacing: -.038em;
  font-weight: 760;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero__intro {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--copy-hero);
  font-size: 16px;
  line-height: 1.72;
}
.signal-stage {
  position: relative;
  min-height: 358px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: var(--blue);
}
.signal-channels {
  position: absolute;
  z-index: 2;
  top: 20px;
  inset-inline: 20px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.signal-channels span { display: inline-flex; align-items: center; gap: 7px; }
.signal-channels i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px var(--signal-halo);
}
.signal-rings {
  position: absolute;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}
.signal-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-on-blue);
  border-radius: 50%;
  animation: signal-wave 4.8s var(--ease-out) 2 both;
}
.signal-rings i:nth-child(2) { inset: 56px; animation-delay: -.9s; }
.signal-icon {
  position: absolute;
  left: 50%;
  top: 41%;
  width: 82px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-signal);
}
.signal-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -8px;
  border-width: 9px 9px 0 0;
  border-style: solid;
  border-color: var(--white) transparent transparent transparent;
}
.signal-icon i {
  position: absolute;
  left: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
.signal-icon i:first-child { top: 23px; width: 42px; }
.signal-icon i:last-child { top: 35px; width: 28px; opacity: .58; }
.notice-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.notice-card__top,
.notice-card__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; }
.notice-card__top {
  color: var(--muted-soft);
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.notice-card__top strong { color: var(--success); font-size: 10px; }
.notice-card p { margin: 13px 0 17px; font-size: 14px; line-height: 1.55; font-weight: 650; }
.notice-card__meta { color: var(--muted-soft); font-size: 10px; }

@keyframes signal-wave {
  0%, 100% { opacity: .45; transform: scale(.9); }
  55% { opacity: .16; transform: scale(1.04); }
}

.purpose { padding-block: var(--space-section); border-top: 1px solid var(--line); }
.purpose__heading { display: grid; gap: 26px; }
.purpose h2,
.product h2 {
  margin: 0;
  font-size: clamp(39px, 11vw, 64px);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 560;
}
.purpose__heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.principles { margin-top: 50px; border-top: 1px solid var(--line); }
.principles article { padding: 24px 0; border-bottom: 1px solid var(--line); }
.principles article::before { content: ""; display: block; width: 30px; height: 2px; margin-bottom: 18px; background: var(--blue); }
.principles h3 { margin: 0 0 7px; font-size: 20px; letter-spacing: -.02em; font-weight: 720; }
.principles p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

.namesake {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-section);
  color: var(--white);
  background: var(--blue);
}
.namesake__inner { display: grid; gap: 38px; align-items: center; }
.namesake__mark {
  position: relative;
  min-height: 200px;
}
.namesake h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(39px, 11vw, 64px);
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 560;
}
.namesake__copy { max-width: 660px; }
.namesake__copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.72;
}
.message-in-motion {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 380px);
  aspect-ratio: 1.55;
  color: var(--white);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-3deg);
}
.message-in-motion__wing {
  position: absolute;
  left: 2%;
  top: 19%;
  width: 50%;
  height: 60%;
  opacity: .52;
}
.message-in-motion__wing i {
  position: absolute;
  right: 0;
  bottom: 12%;
  height: 34%;
  border-top: 4px solid currentColor;
  border-radius: 60% 0 0 0;
  transform-origin: right bottom;
}
.message-in-motion__wing i:nth-child(1) { width: 100%; transform: rotate(-38deg); }
.message-in-motion__wing i:nth-child(2) { width: 84%; transform: rotate(-19deg); }
.message-in-motion__wing i:nth-child(3) { width: 68%; transform: rotate(0deg); }
.message-in-motion__wing i:nth-child(4) { width: 49%; transform: rotate(19deg); }
.message-in-motion__card {
  position: absolute;
  z-index: 1;
  right: 7%;
  top: 28%;
  width: 56%;
  height: 43%;
  border: 4px solid currentColor;
  border-radius: 24px;
  background: var(--blue);
  box-shadow: var(--shadow-message);
}
.message-in-motion__card::after {
  content: "";
  position: absolute;
  left: 23%;
  bottom: -11px;
  width: 18px;
  height: 18px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  background: var(--blue);
  transform: skewY(-36deg);
}
.message-in-motion__card i {
  position: absolute;
  z-index: 1;
  left: 19%;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}
.message-in-motion__card i:first-child { top: 36%; width: 62%; }
.message-in-motion__card i:last-child { top: 58%; width: 42%; opacity: .7; }
.message-in-motion__signal {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 0;
  width: 27%;
  aspect-ratio: 1;
  opacity: .9;
}
.message-in-motion__signal::after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 8%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}
.message-in-motion__signal i {
  position: absolute;
  left: 0;
  bottom: 0;
  border: 3px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.message-in-motion__signal i:first-child { width: 48%; height: 48%; }
.message-in-motion__signal i:last-child { width: 78%; height: 78%; opacity: .62; }

.product { padding-block: var(--space-section); color: var(--white); background: var(--ink); }
.product__inner { display: grid; gap: 54px; }
.product h2 { max-width: 600px; }
.product h2 em { color: var(--blue); font-style: normal; }
.product__copy > p:not(.product__features) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--copy-product);
  font-size: 16px;
  line-height: 1.72;
}
.product__features {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
  padding: 0;
  color: var(--copy-product-strong);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}
.product__features li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}
.product__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--feature-dot);
}
.reach-flow {
  min-width: 0;
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: var(--white);
}
.reach-flow__logo {
  width: min(100%, 250px);
  height: 76px;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--white);
}
.reach-flow__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 52%;
}
.reach-flow__caption {
  margin: 0 0 18px;
  color: var(--muted-soft);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.reach-flow__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.reach-flow__steps li {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(104px, .36fr) minmax(0, 1fr);
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}
.reach-flow__steps strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .03em;
}
.reach-flow__steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.site-footer {
  min-height: 126px;
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-soft);
  font-size: 12px;
}
.wordmark--footer { min-height: 44px; color: var(--ink); }
.footer-meta { display: flex; align-items: center; gap: 18px; }
.footer-meta a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; }
.footer-meta p { margin: 0; }

.legal { padding-block: clamp(64px, 8vw, 108px); }
.legal__header { max-width: var(--measure-copy); margin-bottom: 56px; }
.legal__header h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 10vw, 82px);
  line-height: 1;
  letter-spacing: -.038em;
  font-weight: 680;
}
.legal__header p { margin: 0; color: var(--muted); font-size: 14px; }
.legal__body { max-width: var(--measure-copy); }
.legal__body section { padding-block: 28px; border-top: 1px solid var(--line); }
.legal__body h2 { margin: 0 0 12px; font-size: 20px; line-height: 1.3; letter-spacing: -.02em; }
.legal__body p,
.legal__body li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal__body p { margin: 0; }
.legal__body p + p { margin-top: 14px; }
.legal__body ul { margin: 12px 0 0; padding-inline-start: 22px; }
.legal__body li + li { margin-top: 6px; }
.legal__body a {
  color: var(--blue);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.legal__body strong { color: var(--ink); }
.legal__body .legal__callout {
  margin-block: 10px;
  padding: 28px;
  border-top: 0;
  background: var(--blue-wash);
}

:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.hero a:focus-visible, .product a:focus-visible { outline-color: var(--cyan); }

@media (min-width: 700px) {
  .shell { width: min(100% - 48px, 1160px); }
  .site-header { min-height: 88px; }
  .wordmark { gap: 12px; font-size: 13px; }
  .hero__inner { padding-block: 92px 104px; }
  .hero h1 { font-size: clamp(64px, 9.2vw, 96px); }
  .hero__intro { font-size: 18px; }
  .signal-stage { min-height: 430px; padding: 30px; }
  .signal-rings { width: 350px; height: 350px; }
  .signal-rings i:nth-child(2) { inset: 68px; }
  .notice-card { padding: 22px; }
  .notice-card p { font-size: 15px; }
  .notice-card__top, .notice-card__meta { font-size: 11px; }
  .purpose__heading { grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; }
  .purpose__heading p { font-size: 18px; }
  .namesake__inner { grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: clamp(64px, 8vw, 120px); }
  .namesake__mark { min-height: 300px; }
  .message-in-motion { width: clamp(350px, 36vw, 480px); }
  .namesake__copy p { font-size: 18px; }
  .principles { display: grid; grid-template-columns: repeat(3, 1fr); }
  .principles article { padding: 28px 34px 0 0; border-bottom: 0; }
  .principles article + article { padding-inline-start: 34px; border-inline-start: 1px solid var(--line); }
  .product__features { display: flex; flex-wrap: wrap; gap: 10px 22px; }
  .reach-flow__logo { height: 88px; }
  .site-footer { min-height: 108px; }
}

@media (min-width: 980px) {
  .hero__inner { min-height: 720px; grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr); align-items: center; gap: clamp(56px, 6vw, 88px); }
  .signal-stage { min-height: 520px; }
  .product__inner { grid-template-columns: .92fr 1.08fr; align-items: center; gap: 96px; }
}

@media (min-width: 980px) and (max-height: 800px) {
  .hero__inner {
    min-height: calc(100vh - 88px);
    min-height: calc(100svh - 88px);
    padding-block: 44px 52px;
    gap: clamp(48px, 5vw, 72px);
  }
  .hero h1 { font-size: clamp(64px, 7vw, 82px); }
  .signal-stage { min-height: 430px; }
}

@media (min-width: 1240px) {
  .shell { width: min(100% - 64px, 1200px); }
  .purpose__heading { grid-template-columns: 1.08fr .92fr; gap: 96px; }
  .principles { margin-top: 64px; }
  .product__inner { gap: 112px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .site-footer { min-height: 190px; flex-direction: column; justify-content: center; }
  .footer-meta { flex-direction: column; gap: 0; }
  .legal__body .legal__callout { margin-inline: -16px; padding-inline: 16px; }
  .namesake__mark { min-height: 176px; }
  .message-in-motion { width: min(100%, 320px); }
  .reach-flow__steps li { grid-template-columns: 1fr; gap: 5px; }
}

@media (max-width: 420px) {
  .site-header { flex-wrap: wrap; gap: 0; }
  .primary-navigation {
    width: 100%;
    border-top: 1px solid var(--line);
  }
  .primary-navigation .wp-block-navigation__container { width: 100%; }
  .primary-navigation .wp-block-navigation-item,
  .primary-navigation .wp-block-navigation-item__content { width: 100%; }
  .primary-navigation .wp-block-navigation-item__content { justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skip-link { transition: none; }
  .signal-rings i { animation: none; }
}

@media (forced-colors: active) {
  .signal-stage { border: 1px solid CanvasText; }
  .signal-channels i { background: CanvasText; box-shadow: none; }
  .product__features li::before { background: CanvasText; }
}

/* WordPress block-theme integration. The visual system above is the public source of truth. */
.wp-site-blocks,
.wp-site-blocks > *,
.wp-block-post-content,
.wp-block-post-content > * { margin-block-start: 0; }
.wp-site-blocks { min-height: 100vh; }
.site-main,
.page-content { min-width: 0; }
.site-header.wp-block-group,
.site-footer.wp-block-group { margin-inline: auto; }
.site-header .wp-block-html,
.site-footer .wp-block-html { margin: 0; }
.primary-navigation { margin: 0; }
.primary-navigation .wp-block-navigation__container { gap: 0; }
.primary-navigation .wp-block-navigation-item__content {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 720;
  transition: color var(--duration-fast) var(--ease-out);
}
.primary-navigation .wp-block-navigation-item__content::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--duration-fast) var(--ease-out);
}
.wp-block-buttons { margin: 0; }
.wp-block-button {
  min-width: min(212px, 100%);
  max-width: 100%;
}
.wp-block-button .wp-block-button__link {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 740;
  transition: background-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
}
.wp-block-button .wp-block-button__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--duration-fast) var(--ease-out);
}
.wp-block-button.button--hero .wp-block-button__link,
.wp-block-button.button--light .wp-block-button__link { color: var(--ink); background: var(--white); }
.wp-block-button .wp-block-button__link:active { transform: translateY(1px); }
.hero__copy > .wp-block-buttons { margin-top: 0; }
.product__copy > .wp-block-buttons { margin-top: 0; }
.reach-flow__logo.wp-block-image { margin: 0 0 24px; }
.footer-meta { margin: 0; }
.footer-meta > p,
.footer-meta .wp-block-shortcode,
.footer-copyright { margin: 0; }
.footer-meta > p > a { min-height: 44px; display: inline-flex; align-items: center; font-weight: 700; }
.page-header { padding-block: clamp(64px, 8vw, 108px) 32px; }
.page-header .wp-block-post-title { margin: 0; font-size: clamp(48px, 10vw, 82px); line-height: 1; letter-spacing: -.038em; }
.not-found { min-height: 62vh; padding-block: clamp(80px, 11vw, 150px); }
.not-found h1 { margin: 0 0 20px; font-size: clamp(48px, 10vw, 82px); line-height: 1; letter-spacing: -.038em; }
.not-found p { max-width: 620px; margin: 0 0 28px; color: var(--muted); font-size: 16px; line-height: 1.7; }

@media (hover: hover) {
  .primary-navigation .wp-block-navigation-item__content:hover { color: var(--blue); }
  .primary-navigation .wp-block-navigation-item__content:hover::after,
  .wp-block-button .wp-block-button__link:hover::after { transform: translateX(3px) rotate(45deg); }
  .wp-block-button .wp-block-button__link:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }
}

@media (min-width: 700px) {
  .primary-navigation .wp-block-navigation-item__content { font-size: 13px; }
}

@media (max-width: 480px) {
  .site-header { padding-block: 12px; }
  .footer-meta.wp-block-group { flex-direction: column; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .primary-navigation .wp-block-navigation-item__content,
  .primary-navigation .wp-block-navigation-item__content::after,
  .wp-block-button .wp-block-button__link,
  .wp-block-button .wp-block-button__link::after { transition: none; }
}

@media (forced-colors: active) {
  .wp-block-button .wp-block-button__link { border: 1px solid currentColor; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #465367;
    --muted-soft: #465367;
    --line: rgba(7, 16, 31, .28);
  }
}

[dir="rtl"] .primary-navigation .wp-block-navigation-item__content::after,
[dir="rtl"] .wp-block-button .wp-block-button__link::after { transform: rotate(225deg); }

@media print {
  body { color: #000000; background: #ffffff; }
  .site-header,
  .site-footer { display: none; }
  .legal { width: 100%; padding-block: 0; }
  .legal__header { margin-bottom: 28px; }
  .legal__header h1 { font-size: 36pt; }
  .legal__body { max-width: none; }
  .legal__body p,
  .legal__body li { color: #000000; font-size: 11pt; }
  .legal__body .legal__callout { background: transparent; border: 1px solid #000000; }
  .legal__body a { color: #000000; }
}
