:root {
      color-scheme: light;
      --epos-navy: #05346f;
      --epos-deep: #031b3d;
      --epos-blue: #0b5ca8;
      --epos-sky: #13a9b7;
      --epos-orange: #f57400;
      --epos-gold: #f6b21a;
      --epos-cream: #fff8ef;
      --epos-paper: #fffdf9;
      --epos-ink: #14233f;
      --epos-muted: #58657d;
      --epos-line: rgba(20, 35, 63, .14);
      --epos-white: #ffffff;
      --epos-shadow: 0 24px 70px rgba(3, 27, 61, .18);
      --epos-radius-xl: 34px;
      --epos-radius-lg: 24px;
      --epos-radius-md: 16px;
      --epos-max: 1180px;
      --focus: 0 0 0 4px rgba(246, 178, 26, .44), 0 0 0 7px rgba(5, 52, 111, .32);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

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

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

    body {
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 18% 0%, rgba(19, 169, 183, .12), transparent 34rem),
        radial-gradient(circle at 88% 9%, rgba(245, 116, 0, .12), transparent 30rem),
        linear-gradient(180deg, #fffaf2 0%, #fffdf9 42%, #f6f9fc 100%);
      color: var(--epos-ink);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    img,
    svg {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration-thickness: .12em;
      text-underline-offset: .18em;
    }

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

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: none;
      box-shadow: var(--focus);
    }

    .skip-link {
      position: fixed;
      z-index: 999;
      top: 12px;
      left: 12px;
      transform: translateY(-140%);
      padding: .75rem 1rem;
      border-radius: 999px;
      color: var(--epos-white);
      background: var(--epos-deep);
      font-weight: 800;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .page-shell {
      overflow: clip;
    }

    .container {
      width: min(var(--epos-max), calc(100% - 32px));
      margin-inline: auto;
    }

    .section {
      padding: clamp(56px, 7vw, 96px) 0;
    }

    .section--tight {
      padding: clamp(42px, 5vw, 72px) 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      width: fit-content;
      padding: .42rem .78rem;
      border: 1px solid rgba(255, 255, 255, .42);
      border-radius: 999px;
      color: var(--epos-white);
      background: rgba(255, 255, 255, .12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
      font-size: .88rem;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .eyebrow::before {
      content: "";
      width: .62rem;
      height: .62rem;
      border-radius: 999px;
      background: var(--epos-gold);
      box-shadow: 0 0 0 5px rgba(246, 178, 26, .18);
    }

    .section-heading {
      display: grid;
      gap: .85rem;
      max-width: 820px;
      margin-bottom: clamp(26px, 4vw, 44px);
    }

    .section-heading.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      gap: .45rem;
      padding: .36rem .72rem;
      border-radius: 999px;
      color: white;
      background: rgba(19, 169, 183, .10);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .section-kicker.center {
      margin-inline: auto;
    }

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

    h1 {
      margin-bottom: 0;
      font-size: clamp(2.8rem, 7vw, 6.85rem);
      line-height: .92;
      letter-spacing: -.065em;
      color: var(--epos-white);
      text-wrap: balance;
    }

    h2 {
      margin-bottom: 0;
      font-size: clamp(2rem, 4.2vw, 4.4rem);
      line-height: .98;
      letter-spacing: -.055em;
      color: var(--epos-deep);
      text-wrap: balance;
    }

    h3 {
      margin-bottom: 0;
      font-size: clamp(1.25rem, 2.4vw, 2rem);
      line-height: 1.08;
      letter-spacing: -.032em;
      color: var(--epos-deep);
      text-wrap: balance;
    }

    .lead {
      margin-bottom: 0;
      color: rgba(255, 255, 255, .88);
      font-size: clamp(1.06rem, 1.7vw, 1.32rem);
      max-width: 66ch;
    }

    .muted {
      color: var(--epos-muted);
    }

    .text-accent {
      color: var(--epos-orange);
    }

    .text-sky {
      color: var(--epos-sky);
    }

    .topbar {
      position: sticky;
      z-index: 50;
      top: 0;
      backdrop-filter: blur(18px);
      background: rgba(255, 253, 249, .82);
      border-bottom: 1px solid rgba(20, 35, 63, .08);
    }

    .topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 1rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      min-width: 0;
      text-decoration: none;
    }

    .brand__logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
    }

    .brand__text {
      display: grid;
      gap: .05rem;
      line-height: 1.1;
    }

    .brand__name {
      color: var(--epos-deep);
      font-size: 1rem;
      font-weight: 950;
      letter-spacing: -.02em;
    }

    .brand__sub {
      color: var(--epos-muted);
      font-size: .78rem;
      font-weight: 750;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: .25rem;
    }

    .nav-links a {
      border-radius: 999px;
      padding: .72rem .9rem;
      color: var(--epos-ink);
      font-size: .92rem;
      font-weight: 800;
      text-decoration: none;
    }


    .topbar__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: .72rem 1rem;
      border-radius: 999px;
      color: var(--epos-white);
      background: linear-gradient(135deg, var(--epos-orange), #ff9c1a);
      box-shadow: 0 12px 26px rgba(245, 116, 0, .22);
      font-size: .92rem;
      font-weight: 950;
      text-decoration: none;
      white-space: nowrap;
    }

    .hero {
      position: relative;
      isolation: isolate;
      min-height: 720px;
      padding: clamp(46px, 6vw, 84px) 0 clamp(46px, 7vw, 92px);
      background:
        radial-gradient(circle at 16% 24%, rgba(19, 169, 183, .28), transparent 24rem),
        radial-gradient(circle at 78% 12%, rgba(246, 178, 26, .26), transparent 23rem),
        radial-gradient(circle at 90% 84%, rgba(245, 116, 0, .26), transparent 28rem),
        linear-gradient(135deg, #03214b 0%, #06366f 52%, #02132e 100%);
      color: var(--epos-white);
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      position: absolute;
      z-index: -1;
      content: "";
      border-radius: 999px;
      filter: blur(2px);
      opacity: .9;
    }

    .hero::before {
      width: 46rem;
      height: 46rem;
      right: -18rem;
      top: -18rem;
      background: radial-gradient(circle, rgba(246, 178, 26, .16), transparent 62%);
    }

    .hero::after {
      width: 36rem;
      height: 36rem;
      left: -16rem;
      bottom: -18rem;
      background: radial-gradient(circle, rgba(19, 169, 183, .16), transparent 62%);
    }

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      align-items: center;
      gap: clamp(32px, 5vw, 72px);
    }

    .hero__copy {
      display: grid;
      gap: clamp(18px, 2vw, 28px);
    }

    .hero__title span {
      display: block;
      color: var(--epos-gold);
    }

    .hero__title strong {
      display: inline-block;
      color: var(--epos-orange);
      font-weight: 950;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: .9rem;
      margin-top: .35rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .55rem;
      min-height: 52px;
      padding: .92rem 1.2rem;
      border: 0;
      border-radius: 999px;
      font-weight: 950;
      text-decoration: none;
      line-height: 1.1;
    }

    .btn--primary {
      color: var(--epos-white);
      background: linear-gradient(135deg, var(--epos-orange), #ff9e1f);
      box-shadow: 0 18px 34px rgba(245, 116, 0, .28);
    }

    .btn--secondary {
      color: var(--epos-white);
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .34);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
    }

    .btn--ghost {
      color: var(--epos-deep);
      background: var(--epos-white);
      border: 1px solid rgba(20, 35, 63, .12);
      box-shadow: 0 14px 26px rgba(3, 27, 61, .10);
    }

    .hero__trust {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: .9rem;
      margin-top: .2rem;
    }

    .trust-card {
      min-height: 108px;
      padding: 1rem;
      border: 1px solid rgba(255, 255, 255, .17);
      border-radius: 22px;
      background: rgba(255, 255, 255, .10);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    }

    .trust-card strong {
      display: block;
      color: var(--epos-white);
      font-size: clamp(1.28rem, 2vw, 1.75rem);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .trust-card span {
      display: block;
      margin-top: .45rem;
      color: rgba(255, 255, 255, .78);
      font-size: .9rem;
      font-weight: 750;
      line-height: 1.25;
    }

    .poster-showcase {
      position: relative;
      min-height: 620px;
    }

    .poster-peek {
      position: absolute;
      width: min(68%, 380px);
      border-radius: 26px;
      overflow: hidden;
      background: var(--epos-white);
      box-shadow: 0 34px 80px rgba(0, 0, 0, .32);
      transform-origin: bottom center;
      border: 1px solid rgba(255, 255, 255, .36);
    }

    .poster-peek img {
      width: 100%;
      aspect-ratio: 724 / 1024;
      object-fit: cover;
    }

    .poster-peek--one {
      z-index: 2;
      left: 4%;
      top: 2%;
      transform: rotate(-4deg);
    }

    .poster-peek--two {
      z-index: 1;
      right: 0;
      top: 16%;
      transform: rotate(5deg);
    }

    .poster-note {
      position: absolute;
      z-index: 3;
      right: 6%;
      bottom: 5%;
      width: min(78%, 360px);
      padding: 1.1rem;
      border-radius: 24px;
      background: rgba(255, 255, 255, .94);
      color: var(--epos-deep);
      box-shadow: var(--epos-shadow);
    }

    .poster-note strong {
      display: block;
      font-size: 1.05rem;
      line-height: 1.15;
    }

    .poster-note span {
      display: block;
      margin-top: .35rem;
      color: var(--epos-muted);
      font-weight: 700;
      font-size: .92rem;
    }

    .wave-divider {
      position: relative;
      height: 46px;
      margin-top: -1px;
      background: var(--epos-paper);
      clip-path: ellipse(72% 100% at 50% 100%);
    }

    .shared-grid {
      display: block;
    }

    .shared-card {
      position: sticky;
      top: 104px;
      padding: clamp(24px, 3vw, 34px);
      border-radius: var(--epos-radius-xl);
      color: var(--epos-white);
      background:
        radial-gradient(circle at 20% 16%, rgba(246, 178, 26, .20), transparent 16rem),
        linear-gradient(145deg, var(--epos-deep), var(--epos-navy));
      box-shadow: var(--epos-shadow);
    }

    .shared-card h2 {
      color: var(--epos-white);
      font-size: clamp(1.8rem, 3.4vw, 3.25rem);
    }

    .shared-card p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, .82);
      font-size: 1.05rem;
    }

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

    .common-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      padding: clamp(18px, 2vw, 24px);
      border: 1px solid var(--epos-line);
      border-radius: 24px;
      background: rgba(255, 255, 255, .78);
      box-shadow: 0 14px 34px rgba(3, 27, 61, .07);
    }

    .common-icon,
    .mini-icon {
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      width: 52px;
      height: 52px;
      border-radius: 18px;
      color: var(--epos-white);
      background: linear-gradient(135deg, var(--epos-blue), var(--epos-sky));
      font-size: 1.35rem;
      font-weight: 950;
    }

    .common-item:nth-child(even) .common-icon,
    .mini-icon--orange {
      background: linear-gradient(135deg, var(--epos-orange), var(--epos-gold));
    }

    .common-item h3 {
      margin-bottom: .32rem;
      font-size: 1.18rem;
    }

    .common-item p {
      margin-bottom: 0;
      color: var(--epos-muted);
    }

    .project-intro {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.4rem;
      align-items: end;
      margin-bottom: 26px;
    }

    .project-intro p {
      margin-bottom: 0;
      color: var(--epos-muted);
      font-size: 1.05rem;
      max-width: 74ch;
    }

    .desktop-swipe {
      display: block;
    }

    .mobile-projects {
      display: none;
    }

    .project-shell {
      padding: clamp(18px, 2.4vw, 28px);
      border-radius: var(--epos-radius-xl);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .76)),
        radial-gradient(circle at 10% 0%, rgba(19, 169, 183, .16), transparent 28rem),
        radial-gradient(circle at 90% 8%, rgba(245, 116, 0, .16), transparent 28rem);
      border: 1px solid rgba(20, 35, 63, .10);
      box-shadow: var(--epos-shadow);
    }

    .project-tabs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .75rem;
      margin-bottom: 1rem;
    }

    .project-tab {
      min-height: 70px;
      border: 1px solid rgba(20, 35, 63, .12);
      border-radius: 22px;
      color: var(--epos-deep);
      background: var(--epos-white);
      box-shadow: 0 12px 28px rgba(3, 27, 61, .08);
      font-weight: 950;
      text-align: left;
      padding: .9rem 1rem;
      transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
    }

    .project-tab:hover {
      transform: translateY(-1px);
    }

    .project-tab[aria-selected="true"] {
      color: var(--epos-white);
      background:
        radial-gradient(circle at 15% 0%, rgba(246, 178, 26, .34), transparent 12rem),
        linear-gradient(135deg, var(--epos-deep), var(--epos-blue));
      border-color: rgba(255, 255, 255, .20);
    }

    .project-tab small {
      display: block;
      margin-top: .22rem;
      color: currentColor;
      opacity: .78;
      font-size: .82rem;
      font-weight: 800;
    }

    .deck-frame {
      position: relative;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: .75rem;
    }

    .deck-btn {
      display: inline-grid;
      place-items: center;
      width: 56px;
      height: 56px;
      border: 0;
      border-radius: 999px;
      color: var(--epos-white);
      background: var(--epos-deep);
      box-shadow: 0 16px 30px rgba(3, 27, 61, .18);
      font-size: 1.45rem;
      font-weight: 950;
      line-height: 1;
    }

    .deck-btn[disabled] {
      opacity: .42;
      cursor: not-allowed;
    }

    .deck-viewport {
      overflow: hidden;
      border-radius: 30px;
      background: var(--epos-white);
      border: 1px solid rgba(20, 35, 63, .10);
      touch-action: pan-y;
      user-select: none;
    }

    .deck-track {
      display: flex;
      transform: translateX(0%);
      transition: transform .55s cubic-bezier(.2, .8, .2, 1);
      will-change: transform;
    }

    .deck-viewport.is-dragging .deck-track {
      transition: none;
    }

    .project-card {
      display: grid;
      grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
      gap: clamp(22px, 3vw, 40px);
      flex: 0 0 100%;
      min-width: 100%;
      padding: clamp(20px, 3vw, 34px);
      background:
        radial-gradient(circle at 96% 0%, rgba(246, 178, 26, .16), transparent 18rem),
        linear-gradient(180deg, #fff 0%, #fffaf2 100%);
    }

    .project-card--sonoro {
      background:
        radial-gradient(circle at 0% 0%, rgba(19, 169, 183, .18), transparent 18rem),
        linear-gradient(180deg, #fff 0%, #f7feff 100%);
    }

    .project-poster {
      display: grid;
      gap: .9rem;
      align-content: start;
    }

    .poster-button {
      position: relative;
      display: block;
      width: 100%;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: 24px;
      background: #e8eef5;
      box-shadow: 0 24px 48px rgba(3, 27, 61, .20);
    }

    .poster-button img {
      width: 100%;
      aspect-ratio: 724 / 1024;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .poster-button:hover img {
      transform: scale(1.018);
    }

    .poster-button__label {
      position: absolute;
      right: 12px;
      bottom: 12px;
      padding: .55rem .72rem;
      border-radius: 999px;
      color: var(--epos-white);
      background: rgba(3, 27, 61, .86);
      font-size: .82rem;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .poster-caption {
      margin: 0;
      color: var(--epos-muted);
      font-size: .9rem;
      font-weight: 750;
      text-align: center;
    }

    .project-copy {
      display: grid;
      gap: 1.1rem;
      align-content: center;
      padding-right: clamp(0px, 1vw, 10px);
    }

    .project-badge {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: .45rem;
      padding: .42rem .7rem;
      border-radius: 999px;
      color: var(--epos-white);
      background: var(--epos-orange);
      font-size: .82rem;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .project-badge--sonoro {
      background: var(--epos-sky);
    }

    .project-title {
      display: grid;
      gap: .45rem;
    }

    .project-title h3 {
      font-size: clamp(2rem, 3.7vw, 4.2rem);
      color: var(--epos-deep);
    }

    .project-title p {
      margin-bottom: 0;
      color: var(--epos-muted);
      font-size: 1.08rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .8rem;
      margin: .35rem 0 .2rem;
    }

    .feature {
      padding: 1rem;
      border-radius: 20px;
      border: 1px solid rgba(20, 35, 63, .10);
      background: rgba(255, 255, 255, .74);
    }

    .feature strong {
      display: block;
      color: var(--epos-deep);
      line-height: 1.15;
    }

    .feature span {
      display: block;
      margin-top: .35rem;
      color: var(--epos-muted);
      font-size: .92rem;
      line-height: 1.35;
    }

    .clean-list {
      display: grid;
      gap: .56rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .clean-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .62rem;
      color: var(--epos-ink);
      font-weight: 760;
    }

    .clean-list li::before {
      content: "";
      width: .62rem;
      height: .62rem;
      margin-top: .48rem;
      border-radius: 999px;
      background: var(--epos-orange);
      box-shadow: 0 0 0 4px rgba(245, 116, 0, .12);
    }

    .project-card--sonoro .clean-list li::before {
      background: var(--epos-sky);
      box-shadow: 0 0 0 4px rgba(19, 169, 183, .13);
    }

    .swipe-help {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      margin: 1rem 0 0;
      color: var(--epos-muted);
      font-size: .94rem;
      font-weight: 800;
      text-align: center;
    }

    .swipe-help kbd {
      padding: .12rem .45rem;
      border: 1px solid rgba(20, 35, 63, .18);
      border-radius: 8px;
      background: var(--epos-white);
      box-shadow: 0 2px 0 rgba(20, 35, 63, .12);
      font: inherit;
      font-weight: 950;
    }

    .dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      margin-top: .9rem;
    }

    .dot {
      width: 42px;
      height: 10px;
      border: 0;
      border-radius: 999px;
      background: rgba(20, 35, 63, .17);
    }

    .dot[aria-current="true"] {
      background: linear-gradient(90deg, var(--epos-orange), var(--epos-gold));
    }

    .flow {
      background:
        radial-gradient(circle at 0% 20%, rgba(19, 169, 183, .13), transparent 24rem),
        linear-gradient(180deg, #f7fbff 0%, #fffdf9 100%);
      border-block: 1px solid rgba(20, 35, 63, .08);
    }

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

    .flow-step {
      position: relative;
      min-height: 250px;
      padding: 1.15rem;
      border-radius: 26px;
      background: var(--epos-white);
      border: 1px solid rgba(20, 35, 63, .10);
      box-shadow: 0 16px 36px rgba(3, 27, 61, .08);
    }

    .flow-step::before {
      content: attr(data-step);
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 1rem;
      border-radius: 16px;
      color: var(--epos-white);
      background: var(--epos-blue);
      font-weight: 950;
      letter-spacing: -.04em;
    }

    .flow-step:nth-child(even)::before {
      background: var(--epos-orange);
    }

    .flow-step h3 {
      margin-bottom: .52rem;
      font-size: 1.13rem;
    }

    .flow-step p {
      margin-bottom: 0;
      color: var(--epos-muted);
      font-size: .95rem;
    }

    .org-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(18px, 3vw, 28px);
      align-items: start;
    }

    .info-panel {
      display: grid;
      gap: 1rem;
      padding: clamp(22px, 3vw, 32px);
      border-radius: var(--epos-radius-xl);
      background: var(--epos-white);
      border: 1px solid rgba(20, 35, 63, .10);
      box-shadow: 0 20px 48px rgba(3, 27, 61, .08);
    }

    .info-panel--dark {
      color: var(--epos-white);
      background:
        radial-gradient(circle at 90% 0%, rgba(246, 178, 26, .22), transparent 18rem),
        linear-gradient(145deg, var(--epos-deep), var(--epos-navy));
    }

    .info-panel--dark h3 {
      color: var(--epos-white);
    }

    .info-panel--dark p,
    .info-panel--dark .org-item dd {
      color: rgba(255, 255, 255, .78);
    }

    .info-panel > p {
      margin-bottom: 0;
      color: var(--epos-muted);
    }

    .org-list {
      display: grid;
      gap: .72rem;
      margin: 0;
    }

    .org-item {
      display: grid;
      grid-template-columns: 150px minmax(0, 1fr);
      gap: 1rem;
      padding: .85rem 0;
      border-top: 1px solid rgba(20, 35, 63, .10);
    }

    .info-panel--dark .org-item {
      border-top-color: rgba(255, 255, 255, .17);
    }

    .org-item dt {
      color: var(--epos-deep);
      font-weight: 950;
    }

    .info-panel--dark .org-item dt {
      color: var(--epos-gold);
    }

    .org-item dd {
      margin: 0;
      color: var(--epos-muted);
    }

    .highlight-list {
      display: grid;
      gap: .8rem;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .highlight-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .75rem;
      align-items: start;
      color: rgba(255, 255, 255, .88);
      font-weight: 760;
    }

    .highlight-list li::before {
      content: "✓";
      display: inline-grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      color: var(--epos-deep);
      background: var(--epos-gold);
      font-weight: 950;
    }

    .audience {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: clamp(22px, 4vw, 48px);
      align-items: center;
    }

    .audience-visual {
      position: relative;
      min-height: 420px;
      border-radius: var(--epos-radius-xl);
      background:
        radial-gradient(circle at 20% 22%, rgba(246, 178, 26, .35), transparent 10rem),
        radial-gradient(circle at 78% 70%, rgba(19, 169, 183, .26), transparent 13rem),
        linear-gradient(145deg, var(--epos-deep), #064a8e);
      box-shadow: var(--epos-shadow);
      overflow: hidden;
    }

    .audience-visual::before {
      content: "♫";
      position: absolute;
      top: 10%;
      left: 10%;
      color: rgba(255, 255, 255, .22);
      font-size: 7rem;
      font-weight: 950;
      transform: rotate(-9deg);
    }

    .audience-visual::after {
      content: "✦";
      position: absolute;
      right: 13%;
      bottom: 9%;
      color: rgba(246, 178, 26, .82);
      font-size: 7rem;
      font-weight: 950;
    }

    .audience-card {
      position: absolute;
      inset: auto 8% 10% 8%;
      padding: 1.15rem;
      border-radius: 24px;
      background: rgba(255, 255, 255, .92);
      box-shadow: 0 24px 52px rgba(0, 0, 0, .16);
    }

    .audience-card strong {
      display: block;
      color: var(--epos-deep);
      font-size: 1.25rem;
      line-height: 1.1;
    }

    .audience-card span {
      display: block;
      margin-top: .4rem;
      color: var(--epos-muted);
      font-weight: 720;
    }

    .audience-copy {
      display: grid;
      gap: 1rem;
    }

    .audience-copy p {
      margin-bottom: 0;
      color: var(--epos-muted);
      font-size: 1.06rem;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: .9rem;
      margin-top: .4rem;
    }

    .mini-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .8rem;
      align-items: center;
      padding: 1rem;
      border-radius: 22px;
      border: 1px solid var(--epos-line);
      background: rgba(255, 255, 255, .72);
      box-shadow: 0 12px 24px rgba(3, 27, 61, .06);
    }

    .mini-card strong {
      display: block;
      color: var(--epos-deep);
      line-height: 1.15;
    }

    .mini-card span {
      display: block;
      margin-top: .24rem;
      color: var(--epos-muted);
      font-size: .88rem;
      line-height: 1.25;
    }

    .cta {
      position: relative;
      isolation: isolate;
      padding: clamp(52px, 7vw, 86px) 0;
      color: var(--epos-white);
      background:
        radial-gradient(circle at 16% 18%, rgba(246, 178, 26, .23), transparent 22rem),
        radial-gradient(circle at 88% 20%, rgba(19, 169, 183, .20), transparent 22rem),
        linear-gradient(135deg, var(--epos-deep), var(--epos-navy) 56%, #02132e);
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 38px;
      pointer-events: none;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr .95fr;
      gap: clamp(24px, 4vw, 54px);
      align-items: center;
    }

    .cta h2 {
      color: var(--epos-white);
    }

    .cta p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, .80);
      font-size: 1.08rem;
      max-width: 62ch;
    }

    .contact-cards {
      display: grid;
      gap: .9rem;
    }

    .contact-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .95rem;
      align-items: center;
      padding: 1rem;
      border-radius: 24px;
      background: rgba(255, 255, 255, .10);
      border: 1px solid rgba(255, 255, 255, .16);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
    }

    .contact-card__icon {
      display: inline-grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--epos-orange), var(--epos-gold));
      font-size: 1.5rem;
    }

    .contact-card:nth-child(2) .contact-card__icon {
      background: linear-gradient(135deg, var(--epos-blue), var(--epos-sky));
    }

    .contact-card strong {
      display: block;
      color: var(--epos-white);
      font-size: 1.05rem;
      line-height: 1.1;
    }

    .contact-links {
      display: flex;
      flex-wrap: wrap;
      gap: .45rem .8rem;
      margin-top: .38rem;
    }

    .contact-links a {
      color: rgba(255, 255, 255, .86);
      font-weight: 800;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: 1.4rem;
    }

    .site-footer {
      padding: 28px 0;
      color: var(--epos-muted);
      background: #fffdf9;
      font-size: .92rem;
      text-align: center;
    }

    .mobile-card {
      overflow: hidden;
      border-radius: 28px;
      background: var(--epos-white);
      border: 1px solid rgba(20, 35, 63, .10);
      box-shadow: 0 18px 42px rgba(3, 27, 61, .08);
    }

    .mobile-card + .mobile-card {
      margin-top: 1rem;
    }

    .mobile-card__poster img {
      width: 100%;
      max-height: 540px;
      object-fit: cover;
      object-position: top center;
    }

    .mobile-card__body {
      display: grid;
      gap: 1rem;
      padding: 1.15rem;
    }

    .mobile-card__body p {
      margin-bottom: 0;
      color: var(--epos-muted);
    }

    .mobile-card__body .feature-grid {
      grid-template-columns: 1fr;
    }

    dialog.poster-dialog {
      width: min(920px, calc(100% - 24px));
      max-height: min(92vh, 1040px);
      border: 0;
      border-radius: 28px;
      padding: 0;
      background: transparent;
      color: var(--epos-white);
      overflow: visible;
    }

    dialog.poster-dialog::backdrop {
      background: rgba(3, 18, 38, .72);
      backdrop-filter: blur(10px);
    }

    .dialog-shell {
      position: relative;
      display: grid;
      gap: .7rem;
      border-radius: 28px;
    }

    .dialog-shell img {
      max-height: 86vh;
      width: auto;
      max-width: 100%;
      margin-inline: auto;
      border-radius: 24px;
      box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
      object-fit: contain;
    }

    .dialog-close {
      position: absolute;
      top: -16px;
      right: -12px;
      display: inline-grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 999px;
      color: var(--epos-deep);
      background: var(--epos-white);
      box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
      font-size: 1.3rem;
      font-weight: 950;
    }

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

    @media (max-width: 1040px) {
      .hero__grid,
      .shared-grid,
      .audience,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .poster-showcase {
        min-height: 500px;
        max-width: 720px;
        margin-inline: auto;
      }

      .poster-peek {
        width: min(58%, 340px);
      }

      .shared-card {
        position: relative;
        top: auto;
      }

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

      .flow-step:last-child {
        grid-column: 1 / -1;
        min-height: auto;
      }

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

    @media (max-width: 880px) {
      .nav-links {
        display: none;
      }

      .topbar__inner {
        min-height: 68px;
      }

      .brand__logo {
        width: 50px;
        height: 50px;
      }

      .topbar__cta {
        padding-inline: .82rem;
      }

      .hero {
        min-height: auto;
      }

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

      .poster-showcase {
        min-height: 440px;
      }

      .desktop-swipe {
        display: none;
      }

      .mobile-projects {
        display: block;
      }

      .project-intro {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 680px) {
      .container {
        width: min(100% - 22px, var(--epos-max));
      }

      .section {
        padding: 48px 0;
      }

      .section--tight {
        padding: 40px 0;
      }

      .hero {
        padding-top: 38px;
      }

      h1 {
        font-size: clamp(2.55rem, 15vw, 4.2rem);
      }

      .hero__actions,
      .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn,
      .topbar__cta {
        width: 100%;
      }

      .topbar__cta {
        display: none;
      }

      .poster-showcase {
        display: grid;
        gap: .9rem;
        min-height: auto;
      }

      .poster-peek {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        transform: none;
        border-radius: 22px;
      }

      .poster-peek--two {
        display: none;
      }

      .poster-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
      }

      .common-list {
        grid-template-columns: 1fr;
      }

      .common-item {
        grid-template-columns: 1fr;
      }

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

      .flow-step {
        min-height: auto;
      }

      .org-item {
        grid-template-columns: 1fr;
        gap: .25rem;
      }

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

      .contact-links {
        flex-direction: column;
      }

      .cta::before {
        inset: 10px;
        border-radius: 28px;
      }
    }

    .topbar a:hover,
    .topbar a:active {
      color: var(--epos-orange) !important;
    }

    .hero a:hover,
    .hero a:active,
    .cta a:hover,
    .cta a:active {
      color: var(--epos-white) !important;
    }

    .project-card a:hover,
    .project-card a:active,
    .mobile-card a:hover,
    .mobile-card a:active {
      color: var(--epos-deep) !important;
    }
    
    @media (prefers-contrast: more) {
      :root {
        --epos-muted: #303b50;
        --epos-line: rgba(20, 35, 63, .35);
      }

      .btn,
      .project-tab,
      .common-item,
      .info-panel,
      .flow-step,
      .mobile-card {
        border: 2px solid currentColor;
      }
    }


.site-footer__legal{display:flex;justify-content:center;flex-wrap:wrap;gap:.55rem 1rem;margin-top:.7rem}.site-footer__legal a{color:var(--epos-muted);font-weight:800;text-decoration:none}.site-footer__legal a:hover,.site-footer__legal a:focus-visible{color:var(--epos-deep)}
