
    @import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

    :root {
      --ink: #0d2029;
      --ink-2: #122f39;
      --paper: #0d2029;
      --paper-2: #102a34;
      --mist: #153943;
      --mint: #b8e6d6;
      --orange: #f27c50;
      --orange-soft: #ffab82;
      --white: #fbfaf7;
      --line: rgba(16, 36, 46, .16);
      --max: 1240px;
      --radius: 28px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--ink);
      color: var(--white);
      font-family: Manrope, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; font: inherit; }
    img { display: block; max-width: 100%; }
    .wrap { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
    .mono {
      font-family: "DM Mono", monospace;
      font-size: 11px;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .eyebrow {
      align-items: center;
      color: var(--orange);
      display: flex;
      gap: 10px;
    }
    .eyebrow::before {
      background: currentColor;
      content: "";
      display: inline-block;
      height: 1px;
      width: 30px;
    }
    h1, h2, h3 { font-weight: 600; letter-spacing: -.055em; line-height: .98; }
    h1 { font-size: clamp(46px, 5.7vw, 78px); max-width: 640px; }
    h2 { font-size: clamp(36px, 4vw, 58px); }
    h3 { font-size: clamp(20px, 2vw, 28px); }
    p { max-width: 640px; }

    /* Header + hero */
    .hero {
      background: var(--ink);
      color: var(--white);
      min-height: 620px;
      overflow: hidden;
      position: relative;
    }
    .hero::after {
      background: linear-gradient(90deg, rgba(16,36,46,.2), transparent 42%);
      content: "";
      inset: 0;
      pointer-events: none;
      position: absolute;
    }
    .site-header {
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,.16);
      display: flex;
      height: 76px;
      justify-content: space-between;
      position: relative;
      z-index: 4;
    }
    .site-header .wrap { align-items: center; display: flex; justify-content: space-between; width: 100%; }
    .logo { animation: logoFloat 4.8s ease-in-out infinite; height: 22px; max-width: 139px; object-fit: contain; transform-origin: left center; transition: filter .25s ease, transform .25s ease; width: auto; }
    .logo:hover { filter: drop-shadow(0 0 9px rgba(184,230,214,.55)); transform: scale(1.04) rotate(-1deg); }
    .nav { align-items: center; display: flex; gap: 38px; }
    .nav a { color: rgba(251,250,247,.68); font-size: 13px; transition: color .2s ease; }
    .nav a:hover, .nav a.active { color: var(--white); }
    .header-contact {
      align-items: center;
      border: 1px solid rgba(255,255,255,.38);
      border-radius: 100px;
      display: inline-flex;
      font-size: 12px;
      gap: 10px;
      padding: 11px 16px;
      transition: background .2s ease, color .2s ease;
    }
    .header-contact:hover { background: var(--mint); color: var(--ink); }
    .header-contact span { color: var(--orange-soft); font-size: 15px; }
    .menu-btn { background: none; border: 0; cursor: pointer; display: none; }
    .hero-main { min-height: 544px; padding-top: 68px; position: relative; z-index: 2; }
    .hero-copy { position: relative; z-index: 2; }
    .hero-copy .eyebrow { color: var(--mint); margin-bottom: 24px; }
    .hero-copy h1 { color: var(--white); }
    .hero-copy h1 em { color: var(--orange-soft); font-style: normal; }
    .hero-intro { color: rgba(251,250,247,.68); font-size: 16px; margin-top: 24px; max-width: 430px; }
    .hero-actions { align-items: center; display: flex; gap: 18px; margin-top: 28px; }
    .button {
      align-items: center;
      border-radius: 100px;
      display: inline-flex;
      font-size: 13px;
      font-weight: 700;
      gap: 18px;
      justify-content: center;
      padding: 15px 21px 15px 24px;
      transition: transform .2s ease, background .2s ease;
    }
    .button:hover { transform: translateY(-3px); }
    .button-primary { background: var(--orange); color: var(--ink); }
    .button-primary:hover { background: var(--orange-soft); }
    .button-ghost { color: var(--white); padding-left: 0; }
    .button-ghost span { align-items: center; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; display: inline-flex; height: 34px; justify-content: center; width: 34px; }
    .hero-visual {
      inset: 0;
      position: absolute;
      z-index: 1;
    }
    .hero-visual img {
      border-radius: 0;
      filter: saturate(.72);
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: absolute;
      width: 100%;
    }
    .hero-slide {
      inset: 0;
      opacity: 0;
      transition: opacity .9s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-visual::after {
      background: linear-gradient(90deg, rgba(13,32,41,.93) 0%, rgba(13,32,41,.68) 34%, rgba(13,32,41,.12) 75%), linear-gradient(0deg, rgba(13,32,41,.58), transparent 42%);
      content: "";
      inset: 0;
      position: absolute;
    }
    .hero-note {
      bottom: 54px;
      color: var(--white);
      display: flex;
      gap: 14px;
      position: absolute;
      right: max(32px, calc((100vw - var(--max)) / 2));
      z-index: 2;
    }
    .hero-note i { background: var(--orange); border-radius: 50%; height: 9px; margin-top: 7px; width: 9px; }
    .hero-note p { font-size: 12px; line-height: 1.4; max-width: 180px; }
    .hero-note strong { display: block; font-size: 14px; margin-bottom: 3px; }
    .hero-dots {
      bottom: 36px;
      display: flex;
      gap: 8px;
      left: auto;
      position: absolute;
      right: max(32px, calc((100vw - var(--max)) / 2));
      z-index: 3;
    }
    .hero-dots button {
      background: rgba(251,250,247,.42);
      border: 0;
      border-radius: 100px;
      cursor: pointer;
      height: 4px;
      padding: 0;
      transition: background .25s ease, width .25s ease;
      width: 20px;
    }
    .hero-dots button.active { background: var(--orange-soft); width: 42px; }
    .scroll-cue { bottom: 34px; color: rgba(251,250,247,.5); left: max(32px, calc((100vw - var(--max)) / 2)); position: absolute; transform: rotate(-90deg) translateX(-100%); transform-origin: left top; z-index: 3; }

    /* Intro strip */
    .intro-strip { background: var(--ink-2); color: var(--white); }
    .intro-strip .wrap { align-items: center; display: flex; gap: 36px; justify-content: space-between; min-height: 94px; }
    .intro-strip p { font-size: clamp(20px, 2.2vw, 28px); font-weight: 500; letter-spacing: -.035em; line-height: 1.15; max-width: 820px; }
    .intro-strip .mono { flex: 0 0 auto; }

    /* About */
    .about { color: var(--white); padding: 100px 0 112px; }
    .about-grid { align-items: center; display: grid; gap: 8%; grid-template-columns: .88fr 1.12fr; }
    .about-media { position: relative; }
    .about-media img { border-radius: var(--radius); height: 480px; object-fit: cover; width: 100%; }
    .about-media::before {
      border: 1px solid var(--orange);
      border-radius: var(--radius);
      content: "";
      height: 100%;
      left: -17px;
      position: absolute;
      top: 18px;
      transform: rotate(-4deg);
      width: 100%;
      z-index: -1;
    }
    .media-tag { background: var(--ink); bottom: 22px; color: var(--white); left: 22px; padding: 15px 18px; position: absolute; }
    .media-tag strong { color: var(--mint); display: block; font-size: 21px; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
    .about-copy .eyebrow { margin-bottom: 31px; }
    .about-copy h2 { max-width: 650px; }
    .about-copy > p { color: rgba(251,250,247,.68); font-size: 16px; margin-top: 22px; }
    .stats { border-top: 1px solid rgba(255,255,255,.2); display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin-top: 38px; padding-top: 18px; }
    .stat strong { display: block; font-size: 30px; letter-spacing: -.05em; line-height: 1; }
    .stat span { color: rgba(251,250,247,.52); display: block; font-size: 12px; margin-top: 7px; }

    /* Services */
    .services { background: var(--ink); color: var(--white); padding: 94px 0 105px; }
    .services-head { align-items: end; display: flex; justify-content: space-between; margin-bottom: 42px; }
    .services-head .eyebrow { color: var(--mint); margin-bottom: 22px; }
    .services-head h2 { max-width: 620px; }
    .services-head > p { color: rgba(251,250,247,.6); max-width: 290px; }
    .service-grid { border-top: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: repeat(4, 1fr); }
    .service-card { border-right: 1px solid rgba(255,255,255,.2); min-height: 250px; padding: 25px 22px 24px 0; transition: background .3s ease, padding .3s ease; }
    .service-card:not(:first-child) { padding-left: 25px; }
    .service-card:last-child { border-right: 0; }
    .service-card:hover { background: var(--ink-2); padding-top: 38px; }
    .service-number { color: var(--orange-soft); display: block; font-size: 11px; margin-bottom: 48px; }
    .service-card h3 { color: var(--mint); font-size: 22px; max-width: 190px; }
    .service-card p { color: rgba(251,250,247,.58); font-size: 13px; margin-top: 17px; }
    .service-arrow { color: var(--orange-soft); font-size: 25px; margin-top: 28px; }

    /* Market split */
    .market { background: var(--mist); color: var(--white); padding: 100px 0; }
    .market-grid { align-items: center; display: grid; gap: 7%; grid-template-columns: 1.1fr .9fr; }
    .market-image { height: 475px; position: relative; }
    .market-image img { border-radius: 190px 190px 0 0; filter: saturate(.78); height: 100%; object-fit: cover; width: 100%; }
    .market-image .coordinate { align-items: center; background: var(--orange); border-radius: 50%; bottom: 38px; color: var(--ink); display: flex; flex-direction: column; height: 136px; justify-content: center; position: absolute; right: -35px; width: 136px; }
    .coordinate strong { font-size: 16px; }
    .coordinate span { font-size: 10px; margin-top: 2px; }
    .market-copy .eyebrow { margin-bottom: 30px; }
    .market-copy h2 { max-width: 500px; }
    .market-copy > p { color: rgba(251,250,247,.68); font-size: 16px; margin-top: 22px; }
    .quote { border-left: 2px solid var(--orange); font-size: 19px; font-weight: 600; line-height: 1.3; margin-top: 38px; padding-left: 18px; }
    .quote small { color: rgba(251,250,247,.54); display: block; font-size: 11px; font-weight: 400; margin-top: 10px; text-transform: uppercase; }

    /* CTA + footer */
    .cta { background: var(--ink-2); color: var(--white); overflow: hidden; padding: 78px 0; position: relative; }
    .cta::after { border: 1px solid rgba(184,230,214,.22); border-radius: 50%; content: ""; height: 490px; position: absolute; right: -105px; top: -170px; width: 490px; }
    .cta .wrap { align-items: end; display: flex; justify-content: space-between; position: relative; z-index: 1; }
    .cta h2 { max-width: 720px; }
    .cta .button { background: var(--orange); color: var(--ink); margin-bottom: 5px; }
    .cta .button:hover { background: var(--orange-soft); }
    footer { background: var(--ink); color: var(--white); padding: 50px 0 24px; }
    .footer-grid { display: grid; gap: 50px; grid-template-columns: 1.6fr 1fr 1fr; padding-bottom: 62px; }
    .footer-brand .logo { margin-bottom: 26px; }
    .footer-brand p { color: rgba(251,250,247,.56); font-size: 13px; max-width: 320px; }
    .footer-col h4 { color: var(--mint); font-size: 13px; font-weight: 600; margin-bottom: 18px; }
    .footer-col a, .footer-col p { color: rgba(251,250,247,.62); display: block; font-size: 13px; margin-bottom: 8px; }
    .footer-col a:hover { color: var(--orange-soft); }
    .footer-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.15); color: rgba(251,250,247,.42); display: flex; font-size: 11px; justify-content: space-between; padding-top: 23px; }
    .to-top {
      align-items: center;
      background: var(--orange);
      border: 0;
      border-radius: 50%;
      bottom: 24px;
      box-shadow: 0 10px 28px rgba(0,0,0,.28);
      color: var(--ink);
      cursor: pointer;
      display: flex;
      font-size: 21px;
      height: 44px;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      position: fixed;
      right: 24px;
      transform: translateY(12px);
      transition: opacity .25s ease, transform .25s ease, background .2s ease;
      width: 44px;
      z-index: 10;
    }
    .to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .to-top:hover { background: var(--orange-soft); }

    @media (max-width: 900px) {
      .wrap { width: min(var(--max), calc(100% - 40px)); }
      .nav { gap: 18px; }
      .header-contact { display: none; }
      .hero { min-height: 620px; }
      .hero-copy { max-width: 650px; }
      .about-grid, .market-grid { gap: 54px; grid-template-columns: 1fr; }
      .about-media { max-width: 520px; }
      .about-media img, .market-image { height: 420px; }
      .market-image { max-width: 620px; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .service-card:nth-child(2) { border-right: 0; }
      .service-card:nth-child(3), .service-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
       .proof-route { grid-template-columns: repeat(2, 1fr); }
       .proof-step:nth-child(2) { border-right: 0; }
       .proof-step:nth-child(3), .proof-step:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
       .proof-editorial-grid { gap: 48px; grid-template-columns: 1fr 1fr; }
       .proof-wheel { height: 190px; margin-left: 0; width: 190px; }
       .proof-wheel-center { height: 112px; left: 39px; top: 39px; width: 112px; }
    }
    @media (max-width: 620px) {
      .wrap { width: calc(100% - 36px); }
      .site-header { height: 68px; }
      .logo { height: 18px; max-width: 104px; width: auto; }
      .nav { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.2); display: none; flex-direction: column; gap: 16px; left: -18px; padding: 20px 18px; position: absolute; right: -18px; top: 68px; }
      .nav.open { display: flex; }
      .menu-btn { color: var(--white); display: block; font-size: 24px; line-height: 1; }
      .hero { min-height: 650px; }
      .hero-main { min-height: 582px; padding-top: 55px; }
      .hero-copy .eyebrow { margin-bottom: 25px; }
      .hero-intro { font-size: 15px; max-width: 330px; }
      .hero-visual { opacity: .76; }
      .hero-visual::after { background: linear-gradient(90deg, rgba(13,32,41,.94), rgba(13,32,41,.48)), linear-gradient(0deg, rgba(13,32,41,.68), transparent 54%); }
      .hero-note { bottom: 28px; right: 18px; }
      .hero-dots { bottom: 28px; right: 18px; }
      .scroll-cue { display: none; }
      .intro-strip .wrap { align-items: start; flex-direction: column; gap: 8px; justify-content: center; min-height: 112px; }
      .intro-strip p { font-size: 18px; }
      .about, .market { padding: 72px 0; }
      .about-media img, .market-image { height: 340px; }
      .about-copy > p, .market-copy > p { font-size: 16px; }
      .stats { gap: 13px; }
      .stat strong { font-size: 23px; }
      .stat span { font-size: 10px; }
       .services, .proof { padding: 70px 0; }
       .services-head, .cta .wrap { align-items: start; flex-direction: column; gap: 25px; }
       .services-head > p { max-width: 340px; }
      .service-grid { grid-template-columns: 1fr; }
      .service-card, .service-card:not(:first-child) { border-bottom: 1px solid rgba(255,255,255,.2); border-right: 0; min-height: auto; padding: 24px 0; }
      .service-card:last-child { border-bottom: 0; }
      .service-number { margin-bottom: 28px; }
      .service-arrow { margin-top: 14px; }
       .proof-minimal { padding: 74px 0 78px; }
       .proof-heading-row { align-items: start; gap: 24px; grid-template-columns: 1fr; }
       .proof-heading-row h2 { font-size: 49px; }
       .proof-heading-row p { max-width: 320px; }
       .proof-route { grid-template-columns: 1fr; margin-top: 52px; }
       .proof-step, .proof-step:first-child, .proof-step:last-child { border-bottom: 1px solid rgba(255,255,255,.16); border-right: 0; min-height: 168px; padding: 20px 0; }
       .proof-step:last-child { border-bottom: 0; }
       .proof-step:nth-child(3), .proof-step:nth-child(4) { border-top: 0; }
       .proof-step-copy { margin-top: 24px; }
       .proof-editorial { padding: 76px 0 82px; }
       .proof-editorial-grid { gap: 58px; grid-template-columns: 1fr; }
       .proof-editorial-copy { margin-top: 24px; }
       .proof-editorial-copy h2 { font-size: 49px; }
       .proof-wheel { height: 184px; margin: 42px auto 0; width: 184px; }
       .proof-wheel-center { height: 108px; left: 38px; top: 38px; width: 108px; }
       .proof-wheel-center strong { font-size: 37px; }
       .proof-item { gap: 14px; min-height: 92px; }
       .proof-item-copy strong { font-size: 19px; }
       .proof-item-copy small { font-size: 11px; }
      .cta { padding: 68px 0; }
      .cta h2 { font-size: 42px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { align-items: start; flex-direction: column; gap: 8px; }
      .to-top { bottom: 16px; right: 16px; }
    }
  

/* Shared multi-page layout */
.site-header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(13,32,41,.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.site-header .wrap > a:first-child { display: flex; align-items: center; flex: 0 0 auto; margin-left: 9px; }
.site-header.scrolled { background: rgba(13,32,41,.96); box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.page-hero { background: var(--ink-2); color: var(--white); min-height: 220px; padding: 108px 0 45px; position: relative; overflow: hidden; }
.page-hero::after { border: 1px solid rgba(184,230,214,.18); border-radius: 50%; content: ""; height: 390px; position: absolute; right: -120px; top: -190px; width: 390px; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--mint); margin-bottom: 22px; }
.page-hero h1 { font-size: clamp(30px, 3.2vw, 46px); max-width: 640px; }
.page-content { padding: 94px 0 110px; }
.page-content + .cta { margin-top: 0; }
.content-grid { display: grid; gap: 9%; grid-template-columns: 1fr 1fr; }
.content-copy h2 { margin-bottom: 23px; }
.content-copy > p { color: rgba(251,250,247,.68); font-size: 16px; margin-bottom: 22px; }
.content-image { border-radius: var(--radius); height: 440px; object-fit: cover; width: 100%; }
.info-list { border-top: 1px solid rgba(255,255,255,.2); margin-top: 34px; }
.info-row { border-bottom: 1px solid rgba(255,255,255,.2); display: flex; gap: 20px; justify-content: space-between; padding: 18px 0; }
.info-row span:first-child { color: var(--mint); font-size: 13px; }
.info-row span:last-child { color: rgba(251,250,247,.65); font-size: 13px; text-align: right; }
.service-page-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.service-page-card { background: var(--paper-2); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); min-height: 286px; padding: 28px; transition: border-color .2s ease, transform .2s ease; }
.service-page-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.service-page-card .service-number { margin-bottom: 60px; }
.service-page-card h2 { color: var(--mint); font-size: 30px; margin-bottom: 17px; }
.service-page-card p { color: rgba(251,250,247,.68); font-size: 14px; max-width: 510px; }
.contact-grid { display: grid; gap: 8%; grid-template-columns: .8fr 1.2fr; }
.contact-card { background: var(--paper-2); border-radius: var(--radius); padding: 32px; }
.contact-card h2 { font-size: 34px; margin-bottom: 28px; }
.contact-card .eyebrow { margin-bottom: 20px; }
.contact-item { border-top: 1px solid rgba(255,255,255,.18); padding: 18px 0; }
.contact-item strong { color: var(--mint); display: block; font-size: 12px; margin-bottom: 4px; text-transform: uppercase; }
.contact-item a, .contact-item span { color: rgba(251,250,247,.74); display: block; font-size: 15px; }
.contact-message { align-self: center; }
.contact-message h2 { max-width: 520px; }
.contact-message p { color: rgba(251,250,247,.68); font-size: 16px; margin: 24px 0 30px; }
.page-footer-cta { margin-top: 0; }
@media (max-width: 900px) { .content-grid, .contact-grid { gap: 40px; grid-template-columns: 1fr; } .service-page-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .page-hero { min-height: 188px; padding: 98px 0 34px; } .page-hero h1 { font-size: 30px; } .page-content { padding: 68px 0 78px; } .content-image { height: 320px; } .service-page-grid { grid-template-columns: 1fr; } .service-page-card { min-height: auto; padding: 24px; } .service-page-card .service-number { margin-bottom: 30px; } .contact-card { padding: 24px; } .info-row { align-items: start; flex-direction: column; gap: 4px; } .info-row span:last-child { text-align: left; } }

/* Premium hero controls, proof section and motion */
.hero-copy { animation: heroRise .9s cubic-bezier(.22,1,.36,1) both; }
.hero-visual .hero-slide { transform: scale(1.06); transition: opacity 1.1s ease, transform 6.5s cubic-bezier(.2,.65,.2,1); }
.hero-visual .hero-slide.active { transform: scale(1); }
.hero-visual:hover .hero-slide.active { transition-duration: 10s; }
.hero-slider-ui {
  align-items: center;
  bottom: 30px;
  display: flex;
  gap: 11px;
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2));
  z-index: 3;
}
.hero-slider-arrow {
  align-items: center;
  background: rgba(13,32,41,.48);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  height: 34px;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  width: 34px;
}
.hero-slider-arrow:hover { background: var(--orange); color: var(--ink); transform: translateY(-2px); }
.hero-slider-ui .hero-dots { bottom: auto; gap: 6px; left: auto; position: static; right: auto; transform: none; }
.hero-slider-ui .hero-dots button { background: rgba(251,250,247,.4); height: 3px; width: 18px; }
.hero-slider-ui .hero-dots button.active { background: var(--orange-soft); width: 38px; }
.hero-slider-ui .slide-counter { color: rgba(251,250,247,.72); font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .08em; margin-left: 5px; }
.slider-progress { background: rgba(255,255,255,.3); bottom: 0; height: 3px; left: 0; position: absolute; right: 0; z-index: 3; }
.slider-progress i { animation: sliderProgress 4.8s linear infinite; background: var(--orange); display: block; height: 100%; transform-origin: left; width: 25%; }
.hero-visual.is-paused .slider-progress i { animation-play-state: paused; }

.proof {
  background: radial-gradient(circle at 75% 20%, rgba(184,230,214,.09), transparent 25%), var(--paper-2);
  position: relative;
}
.proof::before {
  color: rgba(184,230,214,.17);
  content: "XTC / 04";
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .12em;
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2));
  top: 38px;
}
.proof-editorial { overflow: hidden; padding: 108px 0 116px; }
.proof-editorial::after { border: 1px solid rgba(184,230,214,.12); border-radius: 50%; content: ""; height: 470px; position: absolute; right: -230px; top: 160px; width: 470px; }
.proof-editorial-grid { align-items: center; display: grid; gap: 9%; grid-template-columns: .94fr 1.06fr; position: relative; z-index: 1; }
.proof-visual .eyebrow { color: var(--mint); }
.proof-editorial-copy { margin-top: 32px; }
.proof-editorial-copy h2 { font-size: clamp(43px, 5.4vw, 76px); letter-spacing: -.055em; line-height: .94; max-width: 600px; }
.proof-editorial-copy h2 em { color: var(--orange-soft); font-style: normal; }
.proof-editorial-copy p { color: rgba(251,250,247,.58); font-size: 14px; line-height: 1.65; margin-top: 25px; max-width: 300px; }
.proof-wheel { height: 226px; margin: 65px 0 0 25px; position: relative; width: 226px; }
.proof-wheel-ring { animation: proofSpin 18s linear infinite; border: 1px solid rgba(184,230,214,.35); border-radius: 50%; height: 100%; position: absolute; width: 100%; }
.proof-wheel-ring::before { background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 7px rgba(245,166,67,.13); content: ""; height: 7px; left: 31px; position: absolute; top: 14px; width: 7px; }
.proof-wheel-ring span { color: rgba(184,230,214,.6); font-family: "DM Mono", monospace; font-size: 9px; left: 50%; letter-spacing: .16em; position: absolute; top: -7px; transform: translateX(-50%); white-space: nowrap; }
.proof-wheel-center { align-items: center; background: var(--orange); border-radius: 50%; color: var(--ink); display: flex; flex-direction: column; height: 132px; justify-content: center; left: 47px; position: absolute; top: 47px; width: 132px; }
.proof-wheel-center strong { font-size: 43px; letter-spacing: -.08em; line-height: .85; }
.proof-wheel-center span { font-family: "DM Mono", monospace; font-size: 9px; letter-spacing: .06em; margin-top: 10px; text-transform: uppercase; }
.proof-list { border-top: 1px solid rgba(255,255,255,.2); }
.proof-item { align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); color: var(--white); display: grid; gap: 22px; grid-template-columns: 34px 1fr 28px; min-height: 108px; padding: 16px 0; position: relative; transition: background .35s ease, padding .35s ease; }
.proof-item::before { background: var(--orange); content: ""; height: 100%; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .35s ease; width: 3px; }
.proof-item:hover { background: rgba(184,230,214,.06); padding-left: 20px; }
.proof-item:hover::before { transform: scaleX(1); }
.proof-item-index { color: var(--orange-soft); font-size: 11px; }
.proof-item-copy { display: flex; flex-direction: column; gap: 6px; }
.proof-item-copy strong { color: var(--mint); font-size: 22px; font-weight: 600; letter-spacing: -.03em; }
.proof-item-copy small { color: rgba(251,250,247,.52); font-size: 12px; line-height: 1.45; }
.proof-item-arrow { color: var(--orange-soft); font-size: 23px; transition: transform .35s ease; }
.proof-item:hover .proof-item-arrow { transform: translate(5px, -5px); }
@keyframes proofSpin { to { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0ms); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sliderProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1px); } }
@media (prefers-reduced-motion: reduce) {
  .proof-wheel-ring, .hero-copy, .logo { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.enquiry-form { display: grid; gap: 14px; margin-top: 28px; max-width: 680px; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.enquiry-form label { color: rgba(251,250,247,.62); display: grid; font-size: 11px; gap: 7px; letter-spacing: .04em; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; color: var(--white); font: inherit; font-size: 13px; outline: none; padding: 12px 13px; transition: border-color .2s ease, background .2s ease; width: 100%; }
.enquiry-form select option { background: var(--ink); color: var(--white); }
.enquiry-form textarea { min-height: 120px; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { background: rgba(184,230,214,.08); border-color: var(--mint); }
.enquiry-form .button { border: 0; cursor: pointer; justify-self: start; }
.form-status { color: var(--mint); font-size: 12px; min-height: 20px; }
.form-status.error { color: var(--orange-soft); }
.honeypot { display: none !important; }

@media (max-width: 900px) {
  .hero-slider-ui { right: 20px; }
  .proof-images { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(2) { grid-column: span 2; grid-row: 1; }
  .proof-card:nth-child(2) img { height: 360px; }
}
@media (max-width: 620px) {
  .hero-slider-ui { bottom: 22px; right: 18px; }
  .hero-slider-arrow { height: 30px; width: 30px; }
  .hero-slider-ui .hero-dots button { width: 12px; }
  .hero-slider-ui .hero-dots button.active { width: 26px; }
  .hero-slider-ui .slide-counter { display: none; }
  .proof::before { right: 18px; top: 24px; }
  .proof-head { padding-bottom: 18px; }
  .proof-head p { font-size: 10px; max-width: 250px; }
  .proof-images { grid-template-columns: 1fr; }
  .proof-card:nth-child(2) { grid-column: auto; grid-row: auto; }
  .proof-card img, .proof-card:nth-child(2) img { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
}
