:root {
  --ink: #0a0e13;
  --ink-soft: #313941;
  --mist: #edf0f2;
  --line: rgba(10, 14, 19, 0.13);
  --cyan: #16bceb;
  --mint: #38d7b8;
  --orange: #ff8454;
  --paper: #f8f8f6;
  --font: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.site-shell { overflow: hidden; }

.site-header { height: 92px; display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; padding: 0 48px; border-bottom: 1px solid var(--line); position: relative; z-index: 4; }
.brand, .footer-brand { display: inline-flex; align-items: center; }
.brand img { width: 141px; height: 62px; object-fit: contain; mix-blend-mode: multiply; }
.desktop-nav { display: flex; align-items: center; gap: 31px; margin-left: auto; margin-right: 42px; }
.desktop-nav a, .header-contact, .footer-links a { font-size: 12px; font-weight: 700; letter-spacing: -.01em; color: #4b555d; transition: color .25s ease; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--cyan); }
.header-contact { color: white; background: var(--ink); padding: 13px 18px; border-radius: 99px; }
.header-contact span, .button span, .text-link span { margin-left: 6px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span { display: block; width: 16px; height: 1px; margin: 4px auto; background: var(--ink); }

.hero { position: relative; min-height: min(770px, calc(100vh - 92px)); max-width: 1440px; margin: 0 auto; padding: clamp(72px, 8.2vw, 116px) 48px 44px; display: flex; flex-direction: column; isolation: isolate; }
.hero-copy { width: min(725px, 58%); position: relative; z-index: 2; }
.eyebrow { margin: 0; font-family: var(--mono); font-size: 10px; letter-spacing: .16em; font-weight: 500; color: #68727a; }
.hero h1, h2 { letter-spacing: -.07em; line-height: .96; margin: 0; font-weight: 800; }
.hero h1 { font-size: clamp(60px, 7.8vw, 122px); margin-top: 24px; }
.hero h1 span { color: var(--cyan); }
.hero-intro { margin: 35px 0 32px; max-width: 540px; color: var(--ink-soft); font-size: 18px; line-height: 1.55; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-block; border-radius: 99px; padding: 16px 23px; font-size: 13px; font-weight: 800; transition: transform .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-dark { color: white; background: var(--ink); }
.text-link { display: inline-block; font-size: 13px; font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.hero-art { position: absolute; right: -1%; top: 7%; width: min(47vw, 660px); height: min(46vw, 630px); z-index: 1; }
.aurora { border-radius: 50%; position: absolute; pointer-events: none; filter: blur(3px); z-index: -1; }
.aurora-one { width: 460px; height: 460px; right: -110px; top: -140px; background: radial-gradient(circle, rgba(56,215,184,.43) 0, rgba(56,215,184,.10) 46%, transparent 70%); }
.aurora-two { width: 500px; height: 500px; right: 11%; top: 21%; background: radial-gradient(circle, rgba(22,188,235,.16) 0, transparent 68%); }
.hero-card { position: absolute; width: 190px; aspect-ratio: .8; border-radius: 32px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; box-shadow: 0 30px 80px rgba(10,14,19,.14); }
.hero-card span { font-size: 119px; letter-spacing: -.1em; transform: translateX(-5px); }
.hero-card-front { z-index: 3; left: 6%; bottom: 8%; background: linear-gradient(148deg, var(--cyan), var(--mint)); transform: rotate(-9deg); animation: float-h 5.8s ease-in-out infinite; }
.hero-card-middle { z-index: 2; left: 35%; top: 16%; background: #151b23; transform: rotate(4deg); opacity: .98; animation: float-e 6.6s ease-in-out .35s infinite; }
.hero-card-back { z-index: 1; right: 5%; bottom: 12%; background: #dce2e3; color: #77838a; transform: rotate(9deg); animation: float-y 6s ease-in-out .7s infinite; }
.hero-art > p { position: absolute; right: 10%; bottom: -2%; font-family: var(--mono); font-size: 11px; line-height: 1.6; color: #707a82; }
.hero-orbit { position: absolute; border: 1px solid rgba(10,14,19,.11); border-radius: 50%; }
.orbit-one { width: 440px; height: 440px; top: 5%; right: 3%; }
.orbit-two { width: 610px; height: 610px; top: -9%; right: -9%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
@keyframes float-h { 0%, 100% { translate: 0 0; } 50% { translate: 0 -15px; } }
@keyframes float-e { 0%, 100% { translate: 0 0; } 50% { translate: 0 12px; } }
@keyframes float-y { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }
@media (prefers-reduced-motion: reduce) { .hero-card { animation: none; } }
.hero-foot { margin-top: auto; position: relative; z-index: 2; display: flex; justify-content: space-between; padding-top: 90px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: #68727a; }
.hero-foot a { color: var(--ink); font-weight: 500; }
.hero-foot span { margin-left: 6px; font-size: 14px; }

.statement { max-width: 1440px; margin: 0 auto; padding: 126px 48px 134px; border-top: 1px solid var(--line); }
.statement-grid { margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr); align-items: end; gap: 10vw; }
.statement h2 { font-size: clamp(43px, 5.5vw, 82px); max-width: 850px; }
.statement h2 em { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.09em; }
.statement-copy p { margin: 0 0 27px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); letter-spacing: -.022em; }

.companies { background: var(--ink); color: white; padding: 132px max(48px, calc((100vw - 1344px) / 2)) 142px; }
.section-heading { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 7vw; margin-bottom: 69px; }
.companies .eyebrow, .leadership .eyebrow { color: rgba(255,255,255,.53); }
.section-heading h2, .impact h2, .leadership h2, .contact h2 { font-size: clamp(46px, 5.4vw, 80px); margin-top: 27px; }
.section-heading > p { margin: 0; max-width: 355px; color: #a4afb7; font-size: 15px; line-height: 1.62; letter-spacing: -.02em; }
.company-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.company-card { min-height: 333px; border-radius: 22px; padding: 22px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.company-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.26); }
.company-card.featured { grid-column: span 2; }
.company-card:not(.featured) { grid-column: span 2; }
.company-card:nth-child(n + 4) { grid-column: span 3; }
.card-learn { background: linear-gradient(145deg, #20c2ed, #32d6b6); }
.card-search { background: linear-gradient(145deg, #d82b76, #f0793d); }
.card-finance { background: #17212d; }
.card-commerce { background: #ff8656; }
.card-publishers { background: #ee4f8f; }
.card-money { background: #d77dff; }
.card-life { background: #1e160b; }
.card-success { background: #fee7a5; color: var(--ink); }
.card-dental { background: #111a23; }
.card-trust { background: #184e43; }
.card-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.card-status { padding: 6px 9px; margin: -6px -6px 0 0; border: 1px solid currentColor; border-radius: 99px; font-size: 8px; letter-spacing: .04em; opacity: .7; }
.arrow { width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-family: var(--font); font-size: 14px; }
.card-body { margin-top: auto; position: relative; z-index: 1; }
.card-body p { font-family: var(--mono); margin: 0 0 9px; font-size: 10px; letter-spacing: .08em; opacity: .72; }
.card-body h3 { margin: 0; font-size: 29px; letter-spacing: -.06em; }
.card-body > span { display: block; margin-top: 5px; font-size: 12px; font-weight: 600; opacity: .75; }
.glyph { position: absolute; top: 28px; right: 12px; font-weight: 800; font-size: 218px; letter-spacing: -.12em; line-height: .8; opacity: .18; }
.card-success .glyph { color: #e49930; opacity: .4; }
.company-logo { display: block; width: min(210px, 82%); max-height: 57px; object-fit: contain; object-position: left center; margin: 3px 0 8px; }
.logo-learn { width: min(181px, 78%); }
.logo-money { width: min(170px, 68%); }
.life-mark { display: block; width: min(236px, 92%); height: 112px; object-fit: cover; object-position: 50% 53%; border-radius: 10px; margin: 2px 0 8px; background: white; }
.success-logo { display: block; width: min(236px, 92%); height: 112px; object-fit: contain; object-position: left center; margin: 2px 0 8px; }
.is-unlinked { cursor: default; }
.ai-dental-logo { width: min(215px, 84%); height: auto; display: block; margin: 2px 0 6px -3px; }
.dental-orb { position: absolute; width: 202px; height: 202px; right: -35px; top: -48px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #f1ffff 0 3%, var(--cyan) 28%, #2086a4 58%, #17212d 73%); opacity: .65; }
.life-mark { display: block; width: min(184px, 72%); height: 88px; object-fit: contain; object-position: left center; margin: 2px 0 8px; background: transparent; border-radius: 0; filter: invert(1); }
.rct-logo { display: block; width: min(188px, 76%); height: 112px; object-fit: contain; object-position: left center; margin: 2px 0 7px -3px; filter: invert(1); }
.trust-wordmark { display: flex; align-items: center; gap: 12px; margin: 2px 0 8px; color: #f2e5bb; }
.trust-wordmark b { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: Georgia, serif; font-size: 27px; font-weight: 400; }
.trust-wordmark span { font-family: var(--mono); font-size: 15px; line-height: 1.15; letter-spacing: .13em; }
.trust-wordmark strong { font-size: 9px; font-weight: 500; letter-spacing: .17em; }

/* Alternate colour logo direction: open index.html?version=color */
.color-logo-version .companies { background: #f5f7f7; color: var(--ink); }
.color-logo-version .companies .eyebrow { color: #667077; }
.color-logo-version .section-heading > p { color: #5d6870; }
.color-logo-version .company-grid { gap: 18px; }
.color-logo-version .company-card { min-height: 348px; border: 1px solid rgba(10,14,19,.09); box-shadow: 0 13px 30px rgba(16,30,39,.07); color: white; }
.color-logo-version .company-card:hover { box-shadow: 0 24px 45px rgba(16,30,39,.14); }
.color-logo-version .card-learn { background: linear-gradient(145deg, #d71e6f, #ed713c); }
.color-logo-version .card-search { background: linear-gradient(145deg, #d82b76, #f0793d); }
.color-logo-version .card-finance { background: linear-gradient(145deg, #12aeea, #2366ac); }
.color-logo-version .card-commerce { background: linear-gradient(145deg, #dd2877, #ef723f); }
.color-logo-version .card-publishers { background: linear-gradient(145deg, #df2b7b, #e97842); }
.color-logo-version .card-money { background: linear-gradient(145deg, #e29b10, #b86415); }
.color-logo-version .card-life { background: #171104; color: #fff4ce; }
.color-logo-version .card-success { background: #0f6d20; color: white; }
.color-logo-version .card-dental { background: #111a23; }
.color-logo-version .card-trust { background: #184e43; }
.color-logo-version .card-body p { font-size: 11px; opacity: .88; }
.color-logo-version .card-body > span { font-size: 14px; opacity: .92; }
.color-logo-version .company-logo { filter: none; }
.color-logo-version .dental-orb { opacity: .48; }

/* Local preview: approved source logos remain untouched, with an editorial image layer for each venture. */
.color-logo-version .company-card { background-size: cover; background-position: center; }
.color-logo-version .card-learn { background-image: linear-gradient(0deg, rgba(20, 8, 17, .78) 0%, transparent 58%), linear-gradient(145deg, rgba(215, 30, 111, .78), rgba(237, 113, 60, .45)), url("assets/company-learn.png"); }
.color-logo-version .card-search { background-image: linear-gradient(0deg, rgba(25, 8, 18, .78) 0%, transparent 58%), linear-gradient(145deg, rgba(216, 43, 118, .78), rgba(240, 121, 61, .43)), url("assets/company-search.png"); }
.color-logo-version .card-finance { background-image: linear-gradient(0deg, rgba(4, 16, 33, .80) 0%, transparent 58%), linear-gradient(145deg, rgba(18, 174, 234, .78), rgba(35, 102, 172, .48)), url("assets/company-finance.png"); }
.color-logo-version .card-commerce { background-image: linear-gradient(0deg, rgba(30, 9, 18, .78) 0%, transparent 58%), linear-gradient(145deg, rgba(221, 40, 119, .75), rgba(239, 114, 63, .43)), url("assets/company-commerce.png"); }
.color-logo-version .card-publishers { background-image: linear-gradient(0deg, rgba(34, 8, 18, .79) 0%, transparent 58%), linear-gradient(145deg, rgba(223, 43, 123, .76), rgba(233, 120, 66, .45)), url("assets/company-publishers.png"); }
.color-logo-version .card-money { background-image: linear-gradient(0deg, rgba(38, 23, 3, .80) 0%, transparent 58%), linear-gradient(145deg, rgba(226, 155, 16, .78), rgba(184, 100, 21, .45)), url("assets/company-money.png"); }
.color-logo-version .card-life { background-image: linear-gradient(0deg, rgba(8, 6, 2, .78) 0%, transparent 58%), linear-gradient(145deg, rgba(31, 19, 4, .72), rgba(10, 6, 1, .35)), url("assets/company-life.png"); }
.color-logo-version .card-success { background-image: linear-gradient(0deg, rgba(2, 30, 13, .80) 0%, transparent 58%), linear-gradient(145deg, rgba(15, 109, 32, .75), rgba(18, 83, 22, .42)), url("assets/company-success-arabia.png"); }
.color-logo-version .card-dental { background-image: linear-gradient(0deg, rgba(3, 13, 23, .80) 0%, transparent 58%), linear-gradient(145deg, rgba(17, 26, 35, .76), rgba(26, 118, 146, .38)), url("assets/company-ai-dental.png"); }
.color-logo-version .card-trust { background-image: linear-gradient(0deg, rgba(2, 24, 20, .82) 0%, transparent 58%), linear-gradient(145deg, rgba(24, 78, 67, .76), rgba(20, 116, 78, .38)), url("assets/company-trust.png"); }

.leadership { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 700px; color: white; background: #101923; }
.leadership-visual { overflow: hidden; position: relative; background: #ced8d6; color: var(--ink); padding: 50px; display: flex; align-items: flex-end; }
.leadership-portrait { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; }
.leadership-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,15,20,.74) 0%, rgba(4,15,20,.10) 56%, rgba(4,15,20,.04) 100%); }
.leadership-sun { width: 360px; height: 360px; position: absolute; top: 15%; left: 19%; background: radial-gradient(circle at 45% 45%, rgba(252,219,100,.26) 0, rgba(242,198,74,.13) 33%, transparent 65%); border-radius: 50%; z-index: 1; }
.visual-mark { display: none; }
.leadership-visual p { position: relative; z-index: 2; font-family: var(--mono); font-size: 12px; line-height: 1.6; color: white; }
.leadership-copy { display: flex; flex-direction: column; justify-content: center; padding: 75px clamp(50px, 10vw, 150px) 75px 8vw; }
.leadership-copy h2 { margin-top: 29px; max-width: 650px; }
.leadership-copy > p:not(.eyebrow) { font-size: 16px; line-height: 1.65; color: #aab4ba; max-width: 570px; letter-spacing: -.02em; margin: 30px 0 36px; }
.button-light { background: var(--cyan); color: var(--ink); align-self: flex-start; }

.impact { max-width: 1440px; margin: 0 auto; padding: 134px 48px; }
.impact-head { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 70px; }
.impact h2 { margin-top: 26px; grid-column: 1 / span 2; }
.impact-list { border-top: 1px solid var(--line); }
.impact-list article { display: grid; grid-template-columns: 80px 1fr 30px; gap: 20px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.impact-list article > span:first-child { font-family: var(--mono); font-size: 10px; color: #7b858b; }
.impact-list h3 { margin: 0 0 6px; letter-spacing: -.045em; font-size: 22px; }
.impact-list p { margin: 0; max-width: 490px; color: #657077; font-size: 14px; line-height: 1.5; }
.impact-list .plus { font-size: 23px; font-weight: 400; }

.contact { background: var(--ink); padding: 16px max(16px, calc((100vw - 1376px) / 2)) 16px; }
.contact-panel { min-height: 580px; background: linear-gradient(130deg, #14baee, #37d4b8); border-radius: 28px; padding: 76px clamp(30px, 7vw, 100px); position: relative; overflow: hidden; }
.contact-panel::after { content: "H"; position: absolute; right: -2%; top: -18%; color: rgba(255,255,255,.15); font-size: min(52vw, 780px); font-weight: 800; letter-spacing: -.14em; line-height: 1; }
.contact .eyebrow { color: rgba(10,14,19,.62); position: relative; z-index: 1; }
.contact h2 { margin: 27px 0 44px; max-width: 780px; position: relative; z-index: 1; }
.contact h2 span { color: white; }
.button-white { color: var(--ink); background: white; position: relative; z-index: 1; }

.site-footer { width: 100%; max-width: none; margin: 0; padding: 52px max(48px, calc((100vw - 1344px) / 2)) 58px; display: grid; grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) auto; align-items: start; gap: 40px; background: var(--ink); color: #89939a; }
.footer-brand img { width: 155px; height: 60px; object-fit: contain; }
.site-footer p { margin: 2px 0 8px; font-family: var(--mono); font-size: 10px; line-height: 1.5; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #c2c9cd; }

@media (max-width: 1100px) {
  .site-header { padding: 0 32px; }
  .desktop-nav, .header-contact { display: none; }
  .menu-toggle { display: block; }
  .desktop-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: absolute; top: calc(100% + 12px); left: 22px; right: 22px; margin: 0; padding: 9px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: 0 18px 35px rgba(10,14,19,.12); }
  .desktop-nav.is-open a { padding: 13px 11px; }
  .hero { min-height: auto; padding-top: 82px; }
  .hero-copy { width: 100%; }
  .hero-art { position: relative; width: min(690px, 105%); height: 500px; right: auto; top: auto; margin: 42px -5% -10px auto; }
  .hero-foot { padding-top: 32px; }
  .statement-grid, .section-heading, .impact-head { display: block; }
  .statement h2 { margin-bottom: 32px; }
  .section-heading > p { margin-top: 30px; }
  .company-grid { grid-template-columns: 1fr; gap: 16px; }
  .company-card, .company-card.featured, .company-card:not(.featured), .company-card:nth-child(n + 4) { grid-column: auto; min-height: 294px; }
  .leadership { grid-template-columns: 1fr; min-height: auto; }
  .leadership-visual { min-height: 440px; }
  .leadership-copy { padding: 74px clamp(32px, 8vw, 90px) 82px; }
  .impact h2 { margin-bottom: 45px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .site-header { height: 75px; padding: 0 22px; }
  .brand img { width: 121px; height: 54px; }
  .hero { min-height: auto; padding: 82px 22px 31px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(56px, 17.5vw, 89px); }
  .hero-intro { font-size: 16px; max-width: 390px; margin: 28px 0; }
  .hero-art { position: relative; width: 110%; height: 370px; right: auto; top: auto; margin: 30px -10% -18px 0; }
  .hero-card { width: 164px; border-radius: 28px; }
  .hero-card span { font-size: 103px; }
  .hero-card-front { left: 5%; bottom: 9%; }
  .hero-card-middle { left: 34%; top: 17%; }
  .hero-card-back { right: 0; bottom: 14%; }
  .orbit-one { width: 285px; height: 285px; right: 2%; }
  .orbit-two { width: 390px; height: 390px; }
  .hero-foot { padding-top: 30px; }
  .hero-foot p { display: none; }
  .hero-foot a { margin-left: auto; }
  .statement, .impact { padding: 83px 22px; }
  .companies { padding: 82px 22px; }
  .section-heading { margin-bottom: 42px; }
  .company-grid { gap: 12px; }
  .company-card, .company-card.featured, .company-card:not(.featured), .company-card:nth-child(n + 4) { min-height: 265px; }
  .glyph { font-size: 190px; }
  .leadership-visual { height: 380px; padding: 27px; }
  .leadership-sun { width: 250px; height: 250px; left: 23%; top: 13%; }
  .leadership-copy { padding: 72px 22px 82px; }
  .impact-list article { grid-template-columns: 40px 1fr 20px; gap: 10px; padding: 25px 0; }
  .impact-list h3 { font-size: 19px; }
  .contact { padding: 12px; }
  .contact-panel { min-height: 490px; padding: 56px 26px; border-radius: 21px; }
  .contact h2 { font-size: clamp(46px, 14vw, 65px); }
  .site-footer { padding: 43px 22px; display: block; }
  .site-footer > div { margin-top: 27px; }
  .footer-links { gap: 20px; }
}
