:root {
      --bg: #070b12;
      --bg-soft: #0d1420;
      --card: rgba(255,255,255,0.06);
      --card-border: rgba(255,255,255,0.12);
      --text: #f4f1ea;
      --muted: #a9b0bd;
      --gold: #c9a45c;
      --gold-soft: rgba(201,164,92,0.14);
      --white-soft: rgba(255,255,255,0.78);
      --max: 1180px;
      --radius: 24px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
        isolation: isolate;
      }

      body::before,
      body::after {
        content: "";
        position: fixed;
          width: 54vw;
          height: 54vw;
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
          opacity: 0.62;
          filter: blur(8px);
        will-change: transform;
      }

      body::before {
          top: -16vw;
          right: -14vw;
          background: radial-gradient(circle, rgba(201,164,92,0.32) 0%, rgba(201,164,92,0.16) 32%, transparent 70%);
          animation: ambientFloatA 11s ease-in-out infinite alternate;
      }

      body::after {
          bottom: -20vw;
          left: -14vw;
          background: radial-gradient(circle, rgba(72,103,155,0.34) 0%, rgba(72,103,155,0.16) 34%, transparent 72%);
          animation: ambientFloatB 14s ease-in-out infinite alternate;
      }

      main {
        position: relative;
        z-index: 1;
      }

      main::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.42;
        background:
          radial-gradient(circle at 18% 22%, rgba(255,255,255,0.09), transparent 0 28%),
          radial-gradient(circle at 82% 24%, rgba(255,255,255,0.07), transparent 0 22%),
          radial-gradient(circle at 52% 82%, rgba(201,164,92,0.12), transparent 0 26%);
        animation: ambientPulse 9s ease-in-out infinite;
      }

      header,
      footer {
        position: relative;
        z-index: 1;
      }

      @keyframes ambientFloatA {
        0% {
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        }

        100% {
          transform: translate3d(-12vw, 8vw, 0) scale(1.24) rotate(-10deg);
        }
      }

      @keyframes ambientFloatB {
        0% {
          transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        }

        100% {
          transform: translate3d(12vw, -8vw, 0) scale(1.2) rotate(12deg);
        }
      }

      @keyframes ambientPulse {
        0%,
        100% {
          transform: scale(1) rotate(0deg) translate3d(0, 0, 0);
          opacity: 0.22;
        }

        50% {
          transform: scale(1.14) rotate(8deg) translate3d(0, -2vh, 0);
          opacity: 0.5;
        }
    }

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

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

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(7,11,18,0.78);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--gold), #f0d89b);
      color: #10131a;
      display: grid;
      place-items: center;
      font-weight: 800;
    }

    nav {
      display: flex;
      gap: 30px;
      color: var(--muted);
      font-size: 14px;
    }

    nav a:hover {
      color: var(--text);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .lang-switch {
      display: inline-flex;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .lang-btn {
      border: 0;
      background: transparent;
      color: var(--muted);
      padding: 7px 11px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    .lang-btn.active {
      background: var(--gold);
      color: #111;
    }

    .nav-cta {
      padding: 11px 18px;
      border: 1px solid rgba(201,164,92,0.5);
      border-radius: 999px;
      color: var(--gold);
      font-size: 14px;
      white-space: nowrap;
    }

    .hero {
      min-height: calc(100vh - 82px);
      display: grid;
      align-items: center;
      padding: 80px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 64px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold);
      background: var(--gold-soft);
      border: 1px solid rgba(201,164,92,0.22);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      margin-bottom: 26px;
    }

    h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(48px, 7vw, 86px);
      line-height: 0.96;
      letter-spacing: -0.055em;
      margin-bottom: 28px;
    }

    .hero p {
      max-width: 620px;
      font-size: 20px;
      color: var(--white-soft);
      margin-bottom: 38px;
    }

    .brand-origin {
      max-width: 640px;
      margin-bottom: 32px;
      padding: 18px 22px;
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text);
      font-size: 15px;
      line-height: 1.7;
    }

    .brand-origin strong {
      color: var(--gold);
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--gold);
      color: #111;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #e2bf72;
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,0.16);
      color: var(--text);
    }

    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.32);
      transform: translateY(-2px);
    }

    .executive-card {
      position: relative;
      padding: 34px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035));
      border: 1px solid var(--card-border);
      box-shadow: 0 40px 100px rgba(0,0,0,0.34);
      overflow: hidden;
    }

    .executive-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 75% 15%, rgba(201,164,92,0.22), transparent 28%);
      pointer-events: none;
    }

    .metric-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .metric {
      padding: 24px;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
    }

    .metric strong {
      display: block;
      font-size: 32px;
      color: var(--gold);
      margin-bottom: 6px;
    }

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

    .slideshow {
      position: relative;
      margin-top: 18px;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 16 / 10;
      background: #0a101a;
      border: 1px solid rgba(255,255,255,0.09);
    }

    .slideshow-track {
      display: flex;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slideshow-track img {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(7,11,18,0.62);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.14);
      color: var(--text);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 16px;
      cursor: pointer;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s;
    }

    .slide-btn:hover {
      background: rgba(201,164,92,0.28);
      border-color: var(--gold);
    }

    .slide-prev { left: 10px; }
    .slide-next { right: 10px; }

    .slide-counter {
      position: absolute;
      bottom: 10px;
      right: 14px;
      background: rgba(7,11,18,0.62);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--muted);
      font-size: 12px;
      padding: 3px 9px;
      border-radius: 999px;
      z-index: 2;
      letter-spacing: 0.04em;
    }

    .slide-counter .slide-current {
      color: var(--gold);
      font-weight: 700;
    }

    .dashboard-preview {
      margin-top: 18px;
      padding: 26px;
      border-radius: 20px;
      background: #0a101a;
      border: 1px solid rgba(255,255,255,0.09);
      position: relative;
      z-index: 1;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.09);
      margin: 18px 0;
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), #f1d89c);
    }

    section {
      padding: 110px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 54px;
    }

    .section-kicker {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(36px, 5vw, 58px);
      line-height: 1.05;
      letter-spacing: -0.035em;
      margin-bottom: 18px;
    }

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

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service {
      padding: 32px;
      border-radius: var(--radius);
      background: var(--card);
      border: 1px solid var(--card-border);
      min-height: 300px;
    }

    .service-number {
      color: var(--gold);
      font-size: 14px;
      margin-bottom: 34px;
    }

    .service h3 {
      font-size: 24px;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .service p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .service ul {
      list-style: none;
      color: var(--white-soft);
      font-size: 15px;
    }

    .service li {
      margin: 10px 0;
    }

    .service li::before {
      content: "— ";
      color: var(--gold);
    }

    .statement {
      background: linear-gradient(135deg, rgba(201,164,92,0.14), rgba(255,255,255,0.03));
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .proof {
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .proof-card {
      padding: 30px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.11);
      min-height: 240px;
    }

    .proof-card strong {
      display: block;
      margin-bottom: 18px;
      color: var(--gold);
      font-size: 15px;
      letter-spacing: 0.02em;
    }

    .proof-card h3 {
      font-size: 23px;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .proof-card p {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }

    .statement-inner {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 60px;
      align-items: center;
    }

    .statement blockquote {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.1;
      letter-spacing: -0.035em;
    }

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

    .process {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .step {
      padding: 28px;
      border-radius: 20px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.09);
    }

    .step span {
      color: var(--gold);
      font-size: 13px;
      font-weight: 700;
    }

    .step h3 {
      margin: 20px 0 12px;
      font-size: 20px;
    }

    .step p {
      color: var(--muted);
      font-size: 15px;
    }

    .cta {
      text-align: center;
      padding: 120px 0;
    }

    .cta-box {
      max-width: 980px;
      margin: 0 auto;
      border-radius: 34px;
      padding: 44px;
      background:
        radial-gradient(circle at top, rgba(201,164,92,0.18), transparent 35%),
        rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.12);
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(260px, 360px);
      gap: 34px;
      align-items: center;
      text-align: left;
    }

    .cta p {
      color: var(--muted);
      font-size: 18px;
      max-width: 620px;
      margin: 0 0 34px;
    }

    .contact-copy {
      max-width: 620px;
    }

    .contact-portrait {
      position: relative;
      min-width: 0;
    }

    .contact-portrait::before {
      content: "";
      position: absolute;
      inset: auto 8% -8% 8%;
      height: 28%;
      background: rgba(0,0,0,0.38);
      filter: blur(26px);
      border-radius: 999px;
      z-index: 0;
    }

    .contact-portrait img {
      position: relative;
      z-index: 1;
      display: block;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: center 28%;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: 0 28px 70px rgba(0,0,0,0.32);
    }

    .contact-portrait-tag {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(7,11,18,0.72);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text);
      font-size: 13px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 34px 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-brand {
      display: grid;
      gap: 8px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      color: var(--text);
      border-bottom: 1px solid rgba(255,255,255,0.24);
    }

    .footer-links span {
      color: var(--white-soft);
    }

    @media (max-width: 900px) {
      nav {
        display: none;
      }

      .hero-grid,
      .statement-inner,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .services,
      .process,
      .proof-grid {
        grid-template-columns: 1fr;
      }

      .cta-box {
        text-align: center;
      }

      .cta p,
      .contact-copy {
        margin-left: auto;
        margin-right: auto;
      }

      .contact-portrait {
        max-width: 420px;
        margin: 0 auto;
      }

      .hero {
        padding: 56px 0;
      }

      section {
        padding: 78px 0;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .metric-row {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 46px;
      }

      .hero p {
        font-size: 18px;
      }

      .footer-links {
        justify-content: flex-start;
        gap: 12px;
      }

      .nav-cta {
        display: none;
      }

      .nav {
        height: 74px;
      }

      .lang-btn {
        padding: 6px 9px;
      }
    }
