    :root {
      --white: #FFFFFF;
      --black: #0A0A0A;
      --gray-50: #F7F7F7;
      --gray-100: #EFEFEF;
      --gray-200: #DEDEDE;
      --gray-300: #CCCCCC;
      --gray-500: #888888;
      --accent-warm: #FFF0D4;
      --accent-warm-text: #8B6914;
      --radius: 24px;
      --radius-sm: 16px;
      --radius-pill: 100px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 16px;
    }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      font-size: 18px;
      line-height: 1.45;
      color: var(--black);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .wrap {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .bg-orbs {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 1;
    }

    .bg-orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 220, 160, 0.12) 0%, transparent 70%);
      top: -100px;
      right: -200px;
    }

    .bg-orb-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(200, 210, 240, 0.10) 0%, transparent 70%);
      top: 50%;
      left: -150px;
    }

    .bg-orb-3 {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(220, 240, 220, 0.10) 0%, transparent 70%);
      bottom: 10%;
      right: 10%;
    }

    .grain {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }

    .content-layer {
      position: relative;
      z-index: 2;
    }

    nav {
      padding: 24px 0;
    }

    nav .wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .nav-logo-img {
      height: 40px;
      width: auto;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a,
    .nav-dropdown-trigger {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      line-height: 1.4;
      text-decoration: none;
      color: var(--gray-500);
      font-size: 1.2rem;
      font-weight: 400;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--black); }

    .nav-dropdown {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-dropdown-trigger {
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .nav-dropdown-trigger:hover { color: var(--black); }

    .nav-dropdown-trigger svg {
      width: 12px;
      height: 12px;
      transition: transform 0.2s;
    }

    .nav-dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      margin-top: 4px;
      transform: translateY(4px);
      background: var(--white);
      border-radius: var(--radius-sm);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      padding: 6px 0;
      width: max-content;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      z-index: 100;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown:hover .nav-dropdown-trigger,
    .nav-dropdown.open .nav-dropdown-trigger {
      color: var(--black);
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg,
    .nav-dropdown.open .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
      display: flex;
      align-items: center;
      padding: 12px 24px;
      color: var(--gray-500);
      font-size: 1.2rem;
      font-weight: 400;
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
    }

    .nav-dropdown-menu a:hover {
      color: var(--black);
      background: var(--gray-50);
    }

    .burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 32px;
      height: 24px;
      position: relative;
      z-index: 200;
    }

    .burger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      position: absolute;
      left: 0;
      transition: transform 0.3s, opacity 0.3s;
    }

    .burger span:nth-child(1) { top: 2px; }
    .burger span:nth-child(2) { top: 11px; }
    .burger span:nth-child(3) { top: 20px; }

    .burger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; }
    .burger.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 150;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    .nav-overlay.open {
      display: flex;
    }

    .nav-overlay a {
      text-decoration: none;
      color: var(--black);
      font-size: 1.75rem;
      font-weight: 700;
      padding: 16px 0;
      transition: opacity 0.2s;
    }

    .nav-overlay a:hover { opacity: 0.5; }

    .nav-overlay-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .nav-overlay-group-trigger {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font: inherit;
      background: none;
      border: none;
      cursor: pointer;
      padding: 16px 0;
      color: var(--black);
      font-size: 1.75rem;
      font-weight: 700;
    }

    .nav-overlay-group-trigger svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .nav-overlay-group.open .nav-overlay-group-trigger svg {
      transform: rotate(180deg);
    }

    .nav-overlay-sublinks {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    .nav-overlay-group.open .nav-overlay-sublinks {
      display: flex;
    }

    .nav-overlay-sublinks a {
      font-size: 1.35rem;
      font-weight: 500;
      padding: 12px 0;
      opacity: 0.85;
    }

    .hero {
      position: relative;
      max-width: 1360px;
      margin: 8px auto 0;
    }

    .founder-intro-wrap {
      margin-bottom: 0;
    }

    .hero.founder {
      margin-top: 32px;
      margin-bottom: 112px;
      padding: 0;
      height: calc(100vh - 160px);
      border-radius: var(--radius);
    }

    .hero-founder-clip {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border-radius: inherit;
      z-index: 0;
    }

    .hero-founder-clip .hero-bg {
      z-index: 0;
    }

    .hero-founder-clip .hero-overlay {
      z-index: 1;
    }

    .who-we-are-hero {
      position: relative;
      min-height: 75vh;
      display: flex;
      align-items: flex-end;
      padding: 0;
      width: calc(100% - 96px);
      max-width: 1920px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: var(--radius);
    }

    .who-we-are-hero-visual {
      position: absolute;
      inset: 0;
      z-index: 0;
      border-radius: inherit;
      will-change: transform;
      pointer-events: none;
    }

    .who-we-are-hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      border-radius: inherit;
    }

    .who-we-are-hero-parallax {
      position: absolute;
      inset: 0;
      overflow: hidden;
      border-radius: inherit;
      will-change: transform;
    }

    .who-we-are-hero-slides {
      position: absolute;
      inset: 0;
      will-change: transform;
      animation: whoWeAreHeroDrift 26s ease-in-out infinite alternate;
    }

    .who-we-are-hero-slide {
      position: absolute;
      width: 120%;
      height: 120%;
      left: -10%;
      top: -10%;
      object-fit: cover;
      object-position: 50% 35%;
      opacity: 0;
      transition: opacity 1.4s ease-in-out;
      pointer-events: none;
    }

    .who-we-are-hero-slide.is-active {
      opacity: 1;
      z-index: 1;
    }

    .who-we-are-hero-slide:nth-child(1) { object-position: 45% 40%; }
    .who-we-are-hero-slide:nth-child(2) { object-position: 50% 42%; }
    .who-we-are-hero-slide:nth-child(3) { object-position: 48% 38%; }
    .who-we-are-hero-slide:nth-child(4) { object-position: 52% 36%; }

    @keyframes whoWeAreHeroDrift {
      0% { transform: scale(1) translate(0%, 0%) rotate(0deg); }
      100% { transform: scale(1.14) translate(-3.2%, 2.1%) rotate(0.35deg); }
    }

    @media (prefers-reduced-motion: reduce) {
      .who-we-are-hero-slides {
        animation: none;
      }
      .who-we-are-hero-slide {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transition: none;
      }
      .who-we-are-hero-slide:not(.is-active) {
        opacity: 0;
        visibility: hidden;
      }
    }

    .who-we-are-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          to top,
          rgba(0,0,0,0.76) 0%,
          rgba(0,0,0,0.42) 34%,
          rgba(0,0,0,0.14) 62%,
          rgba(0,0,0,0.04) 100%
        ),
        linear-gradient(
          to right,
          rgba(0,0,0,0.52) 0%,
          rgba(0,0,0,0.28) 34%,
          rgba(0,0,0,0.08) 58%,
          rgba(0,0,0,0) 80%
        );
      border-radius: inherit;
      will-change: transform;
      pointer-events: none;
    }

    .who-we-are-hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
      padding: 0 48px 64px;
      max-width: 1360px;
      margin: 0 auto;
      will-change: transform;
      align-self: flex-end;
    }

    .who-we-are-hero-statement {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 12px;
      max-width: 20ch;
      text-shadow: 0 2px 28px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.35);
    }

    .who-we-are-hero-sub {
      font-size: 1em;
      font-weight: 400;
      color: var(--white);
      line-height: 1.5;
      text-shadow: 0 1px 16px rgba(0,0,0,0.4);
      max-width: 52ch;
      margin: 0;
    }

    .who-we-are-hero-sub + .who-we-are-hero-sub {
      margin-top: 1rem;
    }

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

    .who-we-are-content {
      padding: 48px 0 56px;
      margin-top: -1px;
      background: var(--white);
    }

    .philosophy-asymmetric {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: start;
    }

    .philosophy-lead {
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.03em;
      color: var(--black);
    }

    .philosophy-body p {
      font-size: 1.3rem;
      line-height: 1.5;
      color: var(--gray-500);
      margin-bottom: 1.25em;
    }

    .philosophy-body p:last-child {
      margin-bottom: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: var(--white);
    }

    .hero-bg img {
      width: 100%;
      height: 120%;
      object-fit: contain;
      object-position: center bottom;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.15) 0%,
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.6) 100%
      );
      z-index: 1;
    }

    .hero-frost {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 30%;
      z-index: 1;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
      -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
      mask-size: 100% 100%;
      -webkit-mask-size: 100% 100%;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      mask-position: center;
      -webkit-mask-position: center;
      border-radius: inherit;
      transform: translateZ(0);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding-bottom: 56px;
    }

    .hero-content .wrap {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 48px;
      width: 100%;
    }

    .hero-text { max-width: 680px; }

    .hero-text h1,
    .hero-text h2.hero-heading {
      font-size: 3.25rem;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.035em;
      color: var(--white);
      margin-bottom: 16px;
    }

    .hero-text p {
      font-size: 1.4rem;
      font-weight: 400;
      color: rgba(255,255,255,0.75);
      line-height: 1.45;
    }

    .hero.founder .hero-text p {
      color: var(--white);
    }

    .hero-meta {
      text-align: right;
      flex-shrink: 0;
    }

    .hero-meta strong {
      display: block;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
    }

    .hero-meta span {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.5);
    }

    .stats {
      padding: 56px 0 0 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
      gap: 24px;
    }

    .stat-item {
      padding: 32px 16px;
      border-radius: var(--radius-sm);
      background: var(--gray-50);
    }

    .stat-number {
      font-size: 4.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--black);
      font-variant-numeric: tabular-nums;
    }

    .stat-label {
      font-size: 1.05rem;
      color: var(--gray-500);
      margin-top: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 500;
    }

    .section {
      padding: 56px 0 0;
    }

    .section:last-of-type {
      padding-bottom: 56px;
    }

    #fintech {
      padding: 56px 0 56px;
    }

    .section-header {
      margin-bottom: 28px;
    }

    .section-tag {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      background: var(--accent-warm);
      color: var(--accent-warm-text);
      padding: 5px 14px;
      border-radius: var(--radius-pill);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Inter', -apple-system, sans-serif;
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: -0.035em;
      color: var(--black);
      line-height: 1.15;
      text-transform: none;
    }

    .section-title .word,
    .section-title .word-inner {
      font-family: inherit;
      font-weight: inherit;
    }

    .section-title .word {
      display: inline-block;
      overflow: hidden;
      vertical-align: top;
      padding-bottom: 0.15em;
      margin-bottom: -0.15em;
    }

    .section-title .word-inner {
      display: inline-block;
      transform: translateY(110%);
      transition: none;
    }

    .section-title.visible .word-inner {
      transform: translateY(0);
      transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: none;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.18s; }
    .reveal-delay-3 { transition-delay: 0.26s; }

    .section-intro {
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gray-500);
      line-height: 1.5;
      max-width: 56ch;
      margin-bottom: 0;
    }

    .who-we-are-intro-block {
      width: 100%;
      max-width: none;
      margin-bottom: 40px;
    }

    .who-we-are-intro-block p {
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gray-500);
      line-height: 1.5;
      margin: 0;
      max-width: none;
    }

    .who-we-are-intro-block p + p {
      margin-top: 1.15em;
    }

    .showcase {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 32px;
      align-items: stretch;
    }

    .showcase-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .showcase-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      border-radius: 12px;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .showcase-item:hover {
      background: var(--gray-50);
    }

    .showcase-item.active {
      background: var(--gray-50);
      transform: translateX(4px);
    }

    .showcase-item-logo {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .showcase-item-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .showcase-item-info { min-width: 0; }

    .showcase-item-name {
      font-weight: 600;
      font-size: 1.3rem;
      color: var(--black);
    }

    .showcase-item-loc {
      font-size: 1.12rem;
      font-weight: 400;
      color: var(--gray-500);
      margin-top: 1px;
    }

    .showcase-item-arrow {
      margin-left: auto;
      color: var(--gray-300);
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .showcase-item:hover .showcase-item-arrow,
    .showcase-item.active .showcase-item-arrow {
      color: var(--black);
      transform: translateX(3px);
    }

    .showcase-preview {
      position: relative;
      overflow: visible;
      display: grid;
    }

    .showcase-preview-slide {
      display: flex;
      flex-direction: column;
      grid-area: 1 / 1;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--gray-50);
      opacity: 0;
      transform: perspective(800px) rotateY(6deg) scale(0.94) translateX(20px);
      filter: blur(3px);
      transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                  filter 1s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
      z-index: 0;
    }

    .showcase-preview-slide.active {
      opacity: 1;
      transform: perspective(800px) rotateY(0deg) scale(1) translateX(0);
      filter: blur(0px);
      pointer-events: auto;
      z-index: 1;
    }

    .showcase-preview-image {
      width: 100%;
      flex: 1;
      min-height: 0;
      overflow: hidden;
      position: relative;
    }

    .showcase-preview-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 2.5s ease, transform 14s ease;
    }

    .showcase-preview-image img.active {
      opacity: 1;
      transform: scale(1);
    }

    .showcase-preview-body {
      padding: 28px 32px;
    }

    .showcase-preview-name {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--black);
      letter-spacing: -0.02em;
    }

    .showcase-preview-desc {
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--gray-500);
      line-height: 1.45;
      max-width: 52ch;
    }

    .showcase-preview-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
    }

    .showcase-preview-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 46px;
      padding: 0 28px;
      border-radius: var(--radius-pill);
      background: var(--black);
      color: var(--white);
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .showcase-preview-link:hover { opacity: 0.8; }

    .showcase-preview-social {
      display: flex;
      gap: 6px;
    }

    .showcase-preview-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--black);
      text-decoration: none;
      transition: background 0.2s;
    }

    .showcase-preview-social a:hover {
      background: var(--gray-200);
    }

    .showcase-preview-social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .catch-cards-mobile {
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .cards-equal {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .card {
      border-radius: var(--radius-sm);
      overflow: hidden;
      text-decoration: none;
      color: var(--black);
      display: block;
      position: relative;
      background: var(--gray-50);
      transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card.reveal {
      transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card.reveal.visible {
      transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
                  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card:hover {
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }

    .card-image {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      position: relative;
    }

    .card-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.04);
      transition: opacity 2s ease, transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .card-image img.active {
      opacity: 1;
      transform: scale(1.03);
    }

    .card:hover .card-image img.active {
      transform: scale(1.08);
      transition: opacity 2s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .card-body {
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .card-logo-small {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-logo-small img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .card-info { min-width: 0; }

    .card-name {
      font-weight: 600;
      font-size: 1.3rem;
      color: var(--black);
    }

    .card-location {
      font-size: 1.12rem;
      font-weight: 400;
      color: var(--gray-500);
      margin-top: 1px;
    }

    .fintech-marquee-wrap {
      width: 100%;
      max-width: 1920px;
      margin: 32px auto 0;
      padding: 28px 0;
      overflow: hidden;
      box-sizing: border-box;
    }

    .fintech-logo-list {
      overflow: hidden;
    }
    .fintech-logo-list-track {
      --marquee-slide-w: 140px;
      --marquee-count: 8;
      display: flex;
      align-items: center;
      width: calc(var(--marquee-slide-w) * (var(--marquee-count) * 4));
      animation: fintech-marquee-scroll 40s linear infinite;
      will-change: transform;
    }
    @media (prefers-reduced-motion: reduce) {
      .fintech-logo-list-track { animation-play-state: paused; }
    }
    .fintech-logo-list-slide {
      width: var(--marquee-slide-w);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .fintech-logo-list-link {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: inherit;
    }
    .fintech-logo-list-item {
      height: 50px;
      width: auto;
      max-width: 100px;
      object-fit: contain;
      opacity: 0.9;
    }
    .fintech-logo-list-item.fintech-logo-vialet { height: 28px; }
    .fintech-logo-list-item.fintech-logo-ecocredit { height: 50px; width: auto; max-width: 130px; object-fit: contain; }

    #restaurants {
      padding: 56px 0 56px;
    }

    #restaurants .section-header {
      margin-bottom: 28px;
    }

    .restaurant-marquee-wrap {
      width: 100%;
      max-width: 1920px;
      margin: 32px auto 0;
      padding: 28px 0;
      overflow: hidden;
      box-sizing: border-box;
    }

    .restaurant-logo-list {
      overflow: hidden;
    }

    .restaurant-logo-list-track {
      --marquee-slide-w: 110px;
      --marquee-count: 8;
      display: flex;
      align-items: center;
      width: calc(var(--marquee-slide-w) * (var(--marquee-count) * 4));
      animation: restaurant-marquee-scroll 50s linear infinite;
      will-change: transform;
    }
    @media (prefers-reduced-motion: reduce) {
      .restaurant-logo-list-track { animation-play-state: paused; }
    }

    .restaurant-logo-list-slide {
      width: var(--marquee-slide-w);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .restaurant-logo-list-link {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: inherit;
    }
    .restaurant-logo-list-item {
      height: 70px;
      width: auto;
      max-width: 113px;
      max-height: 70px;
      object-fit: contain;
      opacity: 0.9;
    }

    .restaurant-logo-list-item-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: contain;
      background: #996515;
      padding: 10px;
      opacity: 1;
    }

    .restaurant-carousel {
      position: relative;
      margin-top: 32px;
    }

    .restaurant-carousel-stage {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .restaurant-carousel-arrow {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: var(--white);
      color: var(--black);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(10, 10, 10, 0.12);
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .restaurant-carousel-arrow:hover {
      background: var(--black);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(10, 10, 10, 0.2);
    }

    .restaurant-carousel-arrow svg {
      width: 22px;
      height: 22px;
    }

    .restaurant-carousel-dots-wrap {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .restaurant-carousel-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .restaurant-carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: none;
      background: var(--gray-300);
      cursor: pointer;
      padding: 0;
      transition: width 0.3s, background 0.2s;
    }

    .restaurant-carousel-dot:hover {
      background: var(--gray-500);
    }

    .restaurant-carousel-dot.active {
      width: 20px;
      border-radius: var(--radius-pill);
      background: var(--black);
    }

    .restaurant-carousel-viewport {
      overflow: hidden;
      flex: 1;
      min-width: 0;
    }

    .restaurant-carousel-container {
      --slide-loop-gap: 24px;
      display: flex;
      gap: 0;
      touch-action: pan-y pinch-zoom;
    }

    .restaurant-preview-card {
      flex: 0 0 100%;
      min-width: 0;
      margin-left: calc(var(--slide-loop-gap) / 2);
      margin-right: calc(var(--slide-loop-gap) / 2);
      display: flex;
      flex-direction: row;
      align-items: stretch;
      gap: 20px;
      padding: 0;
      border-radius: var(--radius);
      background: var(--gray-50);
      overflow: hidden;
      position: relative;
      min-height: 380px;
    }


    .restaurant-preview-content {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 20px;
      padding: 36px 48px 48px;
    }

    .fintech-preview-header,
    .restaurant-preview-header {
      display: flex;
      align-items: center;
      gap: 18px;
      width: 100%;
      flex-shrink: 0;
      align-self: flex-start;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .fintech-preview-logo,
    .restaurant-preview-logo {
      width: auto;
      height: 50px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .fintech-preview-logo.fintech-preview-logo-vialet {
      max-width: 72px;
    }

    .fintech-preview-logo.fintech-preview-logo-ecocredit {
      max-width: 180px;
      height: 50px;
      width: auto;
    }

    .fintech-preview-logo.fintech-preview-logo-ecocredit img {
      width: auto;
      height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .fintech-preview-logo img,
    .restaurant-preview-logo img {
      width: auto;
      height: 100%;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .restaurant-preview-logo.restaurant-preview-logo-madame-mei {
      width: 70px;
      height: 70px;
    }

    .restaurant-preview-logo.restaurant-preview-logo-madame-mei img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: contain;
      background: #996515;
      padding: 10px;
    }

    .fintech-preview-logo.fintech-preview-logo-vialet img {
      width: 100%;
      height: auto;
    }

    .fintech-preview-title-wrap,
    .restaurant-preview-title-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .fintech-preview-title,
    .restaurant-preview-title {
      font-size: 1.95rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--black);
      line-height: 1.15;
      text-transform: capitalize;
      margin: 0;
    }

    .country-thin {
      font-weight: 400;
      font-size: 1.05rem;
      color: var(--gray-500);
      margin-left: 4px;
    }

    .fintech-preview-info {
      width: 75%;
    }

    .restaurant-preview-info {
      width: 100%;
      max-width: 52ch;
    }

    .fintech-preview-info,
    .restaurant-preview-info {
      z-index: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin: 0;
    }

    .fintech-preview-desc,
    .restaurant-preview-desc {
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gray-500);
      line-height: 1.5;
      max-width: 52ch;
      margin: 0;
    }

    .fintech-preview-actions,
    .restaurant-preview-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
      align-self: stretch;
      margin-top: auto;
      position: relative;
      z-index: 1;
    }

    .fintech-preview-btn,
    .restaurant-preview-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 46px;
      padding: 0 28px;
      border-radius: var(--radius-pill);
      background: var(--black);
      color: var(--white);
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .fintech-preview-btn:hover,
    .restaurant-preview-btn:hover { opacity: 0.8; }

    .restaurant-preview-btn {
      text-transform: lowercase;
    }

    .fintech-preview-btn {
      text-transform: lowercase;
    }

    .fintech-preview-social,
    .restaurant-preview-social {
      display: flex;
      gap: 6px;
    }

    .fintech-preview-social a,
    .restaurant-preview-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--gray-100);
      color: var(--black);
      text-decoration: none;
      transition: background 0.2s;
    }

    .fintech-preview-social a:hover,
    .restaurant-preview-social a:hover {
      background: var(--gray-200);
    }

    .fintech-preview-social svg,
    .restaurant-preview-social svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .restaurant-preview-image {
      width: 42%;
      min-width: 320px;
      flex-shrink: 0;
      position: relative;
      overflow: hidden;
    }

    .restaurant-preview-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.12) 0%, transparent 35%);
      pointer-events: none;
    }

    .restaurant-preview-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1);
      transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .restaurant-preview-card.is-selected .restaurant-preview-image img.active {
      opacity: 1;
      transform: scale(1.06);
    }

    #angel {
      padding-bottom: 56px;
    }

    #angel .cards-equal {
      grid-template-columns: repeat(2, 1fr);
    }

    .fintech-carousel {
      position: relative;
      margin-top: 32px;
    }

    .fintech-carousel-stage {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .fintech-carousel-arrow {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: var(--white);
      color: var(--black);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(10, 10, 10, 0.12);
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    }
    .fintech-carousel-arrow:hover {
      background: var(--black);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(10, 10, 10, 0.2);
    }
    .fintech-carousel-arrow svg {
      width: 22px;
      height: 22px;
    }

    .fintech-carousel-dots-wrap {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    .fintech-carousel-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .fintech-carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: none;
      background: var(--gray-300);
      cursor: pointer;
      padding: 0;
      transition: width 0.3s, background 0.2s;
    }
    .fintech-carousel-dot:hover {
      background: var(--gray-500);
    }
    .fintech-carousel-dot.active {
      width: 20px;
      border-radius: var(--radius-pill);
      background: var(--black);
    }

    .fintech-carousel-viewport {
      overflow: hidden;
      flex: 1;
      min-width: 0;
    }

    .fintech-carousel-container {
      --slide-loop-gap: 24px;
      display: flex;
      gap: 0;
      touch-action: pan-y pinch-zoom;
    }

    .fintech-preview-card {
      flex: 0 0 100%;
      min-width: 0;
      margin-left: calc(var(--slide-loop-gap) / 2);
      margin-right: calc(var(--slide-loop-gap) / 2);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 20px;
      padding: 36px 48px 48px 48px;
      border-radius: var(--radius);
      background: var(--gray-50);
      overflow: hidden;
      position: relative;
      min-height: 380px;
    }

    .fintech-preview-card .fintech-preview-fade-img img {
      opacity: 0;
      transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fintech-preview-card.is-selected .fintech-preview-fade-img img {
      opacity: 1;
    }

    .fintech-preview-fade-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse at 95% 95%, rgba(200,200,210,0.55) 0%, rgba(230,230,235,0.3) 20%, var(--gray-50) 45%);
      z-index: 1;
    }

    .fintech-preview-fade-img {
      position: absolute;
      right: 20px;
      bottom: 20px;
      width: 300px;
      height: 300px;
      pointer-events: none;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      z-index: 2;
      mask-image: linear-gradient(135deg, transparent 0%, black 12%);
      -webkit-mask-image: linear-gradient(135deg, transparent 0%, black 12%);
    }

    .fintech-preview-fade-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: right bottom;
    }

    footer {
      background: var(--black);
      color: var(--white);
      border-top: 1px solid rgba(255,255,255,0.15);
      padding: 56px 0 48px;
      margin-top: 0;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 48px;
      margin-bottom: 56px;
    }

    .footer-nav .footer-links {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      gap: 10px;
    }

    .footer-logo {
      display: inline-block;
      margin-bottom: 18px;
    }

    .footer-logo-img {
      height: 40px;
      width: auto;
    }

    .footer-desc {
      font-size: 1.3rem;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      line-height: 1.45;
      max-width: 30ch;
      margin-bottom: 18px;
    }

    .footer-contact a {
      text-decoration: none;
      color: var(--white);
      font-weight: 600;
      font-size: 1.1rem;
      transition: opacity 0.2s;
    }

    .footer-contact a:hover { opacity: 0.6; }

    .footer-address {
      margin: 12px 0 0;
      font-size: 1rem;
      font-style: normal;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
    }

    .footer-heading {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      font-size: 1.3rem;
      font-weight: 400;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.15);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px 24px;
    }

    .footer-copy {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.5);
    }

    .footer-site-credit {
      font-size: 0.85rem;
      font-weight: 400;
      color: rgba(255,255,255,0.32);
    }

    .skeleton-placeholder {
      background: var(--gray-100);
      color: var(--gray-300);
      min-height: 24px;
    }

    .mock-image {
      background: var(--gray-200);
      width: 100%;
      height: 100%;
      min-height: 80px;
    }

    .mock-image-sm {
      background: var(--gray-200);
      width: 44px;
      height: 44px;
      flex-shrink: 0;
    }

    .mock-image-logo {
      background: var(--gray-200);
      height: 40px;
      width: 80px;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .wrap { padding: 0 24px; }
      .hero { height: calc(100vh - 180px); }
      .hero-text h1,
      .hero-text h2.hero-heading { font-size: 2.5rem; }
      .hero-content .wrap { flex-direction: column; align-items: flex-start; }
      .hero-meta { text-align: left; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .stat-number { font-size: 3.5rem; }
      .cards-equal { grid-template-columns: repeat(2, 1fr); }
      #angel .cards-equal { grid-template-columns: 1fr; }
      .footer-grid { gap: 32px; }
      .section-title { font-size: 2.75rem; }
    }

      @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-dropdown-menu { display: none; }
      .burger { display: block; }

      .hero {
        height: auto;
        aspect-ratio: 4 / 5;
        min-height: calc((100vw - 16px) * 5 / 4 + 50px);
        width: calc(100% - 16px);
        border-radius: 16px;
      }
      .hero.founder {
        border-radius: var(--radius-sm);
        margin-top: 0;
        margin-bottom: 128px;
      }
      .founder-intro-wrap {
        margin-top: 0;
        padding-top: 0;
      }
      .founder-intro-wrap .section-header {
        margin-top: 0;
      }

      .who-we-are-hero { min-height: 75vh; width: calc(100% - 48px); max-width: 1920px; margin: 0 auto; }
      .who-we-are-hero-content { padding: 0 20px 40px; }
      .who-we-are-hero-statement {
        max-width: 14ch;
        font-size: 2rem;
        line-height: 1.18;
        margin-bottom: 10px;
      }
      .who-we-are-hero-sub {
        font-size: 1rem;
        line-height: 1.45;
        max-width: 34ch;
      }
      .who-we-are-content { padding: 32px 0 40px; }
      .who-we-are-intro-block p { font-size: 1rem; line-height: 1.5; }
      .philosophy-asymmetric { grid-template-columns: 1fr; gap: 32px; }
      .philosophy-lead { font-size: 1.75rem; }
      .philosophy-body p { font-size: 1rem; line-height: 1.5; }

      .hero-bg { padding-top: 60px; }
      .hero.founder .hero-bg { padding-top: 0; }
      .hero-bg img { object-fit: cover; object-position: center 20%; }
      .hero-overlay {
        background: linear-gradient(
          to bottom,
          rgba(0,0,0,0) 0%,
          rgba(0,0,0,0) 65%,
          rgba(0,0,0,0.7) 100%
        );
      }
      .hero.founder .hero-content { position: absolute; inset: 0; padding-bottom: 40px; padding-top: 0; display: flex; align-items: flex-end; }
      .hero.founder .hero-content .wrap { gap: 16px; flex-direction: column; justify-content: flex-end; align-items: flex-start; width: 100%; height: 100%; }
      .hero.founder .hero-text { max-width: none; display: flex; flex-direction: column; gap: 12px; }
      .hero-text p { font-size: 0.85rem; display: block; color: rgba(255,255,255,0.8); }
      .hero.founder .hero-text p { color: var(--white); }
      .hero-text .hero-heading { display: none; }
      .hero-meta { display: flex; gap: 8px; align-items: baseline; }
      .hero-meta strong { font-size: 1rem; color: var(--white); display: inline; }
      .hero-meta span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

      .showcase { display: none; }
      .catch-cards-mobile { display: grid; grid-template-columns: 1fr; }
      .catch-cards-mobile .card-image img.active { opacity: 1; transform: scale(1); }

      .stats { padding: 36px 0; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .stat-item { padding: 20px 12px; }
      .stat-number { font-size: 2.5rem; }
      .stat-label { font-size: 0.7rem; }

      .section { padding: 32px 0 0; }
      .section:last-of-type { padding-bottom: 16px; }
      .section-header { margin-bottom: 16px; }
      .section-title { font-size: 2rem; }

      .cards-equal { grid-template-columns: 1fr; gap: 12px; }
      .card-body { padding: 14px; gap: 10px; }
      .card-logo-small { width: 34px; height: 34px; }
      .card-name { font-size: 0.85rem; }
      .card-location { font-size: 0.72rem; }

      #fintech { padding: 32px 0; }
      .section-intro { font-size: 1rem; }
      .fintech-marquee-wrap { margin: 36px auto 0; padding: 20px 0; width: 100%; max-width: 1920px; }
      #restaurants { padding: 32px 0; }
      .restaurant-marquee-wrap { margin: 24px auto 0; padding: 20px 0; max-width: 100%; }
      .restaurant-logo-list-item { height: 55px; max-height: 55px; }
      .restaurant-carousel { margin: 24px -24px 0; width: calc(100% + 48px); }
      .restaurant-carousel-arrow { display: none; }
      .restaurant-carousel-stage { gap: 0; }
      .restaurant-carousel-viewport { margin: 0; padding: 0 24px; box-sizing: border-box; }
      .restaurant-carousel-dots-wrap { margin-top: 16px; padding: 0 24px; }
      .restaurant-carousel-dot { width: 6px; height: 6px; }
      .restaurant-carousel-dot.active { width: 16px; }
      .restaurant-preview-card { flex-direction: column; min-height: 320px; }
      .restaurant-preview-image { width: 100%; min-width: 0; aspect-ratio: 16/10; }
      .restaurant-preview-content {
        padding: 20px 20px 24px;
        justify-content: flex-start;
        gap: 20px;
        align-items: stretch;
      }
      .fintech-preview-header,
      .restaurant-preview-header {
        gap: 10px;
      }
      .fintech-preview-logo,
      .restaurant-preview-logo { width: auto; height: 44px; }
      .fintech-preview-logo.fintech-preview-logo-vialet { max-width: 56px; }
      .fintech-preview-logo.fintech-preview-logo-ecocredit { max-width: 150px; height: 44px; }
      .fintech-preview-title,
      .restaurant-preview-title { font-size: 1.2rem; font-weight: 700; }
      .country-thin {
        font-size: 0.8rem;
        display: inline;
        margin-left: 4px;
        margin-top: 0;
      }
      .fintech-preview-info,
      .restaurant-preview-info {
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      .fintech-preview-desc,
      .restaurant-preview-desc { font-size: 1rem; line-height: 1.5; }
      .fintech-logo-list-item { height: 45px; }
      .fintech-logo-list-item.fintech-logo-vialet { height: 23px; }
      .fintech-logo-list-item.fintech-logo-ecocredit { height: 45px; max-width: 110px; }
      .fintech-carousel { margin: 36px -24px 0; width: calc(100% + 48px); }
      .fintech-carousel-arrow { display: none; }
      .fintech-carousel-stage { gap: 0; }
      .fintech-carousel-viewport { margin: 0; padding: 0 24px; box-sizing: border-box; }
      .fintech-carousel-dots-wrap { margin-top: 16px; padding: 0 24px; }
      .fintech-carousel-dot { width: 6px; height: 6px; }
      .fintech-carousel-dot.active { width: 16px; }
      .fintech-preview-card {
        padding: 20px 20px 24px;
        min-height: 325px;
        border-radius: var(--radius-sm);
        justify-content: flex-start;
        gap: 20px;
        background: var(--gray-50);
      }
      .fintech-preview-fade-img { display: none; }
      .fintech-preview-fade-overlay { display: none; }
      .fintech-preview-actions,
      .restaurant-preview-actions {
        flex-wrap: wrap;
        margin-top: auto;
        flex-direction: column-reverse;
        align-items: stretch;
        align-self: stretch;
        gap: 10px;
        padding-top: 0;
      }
      .fintech-preview-social,
      .restaurant-preview-social { order: 1; }
      .fintech-preview-btn,
      .restaurant-preview-btn {
        order: 0;
        height: 44px;
        padding: 0 20px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
      }
      .fintech-preview-social a,
      .restaurant-preview-social a { width: 40px; height: 40px; }
      .fintech-preview-social svg,
      .restaurant-preview-social svg { width: 14px; height: 14px; }

      footer { padding: 40px 0 32px; margin-top: 48px; }
      .footer-grid { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }
      .footer-logo { margin-bottom: 16px; }
      .footer-logo-img { height: 40px; }
      .footer-desc { font-size: 1rem; margin-bottom: 16px; max-width: none; }
      .footer-contact a { font-size: 0.95rem; }
      .footer-address { font-size: 0.95rem; }
      .footer-heading { font-size: 0.8rem; margin-bottom: 12px; }
      .footer-links a { font-size: 1rem; }
      .footer-links { gap: 12px; }
      .footer-bottom { padding-top: 24px; flex-direction: column; align-items: flex-start; }
      .footer-copy { font-size: 0.85rem; }
      .footer-site-credit { font-size: 0.75rem; }

      .bg-orb-1 { width: 250px; height: 250px; }
      .bg-orb-2 { width: 200px; height: 200px; }
      .bg-orb-3 { display: none; }
    }
  
