:root {
  --ink: #07111f;
  --ink-2: #0b1830;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #1b61ff;
  --cyan: #39c8ff;
  --violet: #654dff;
  --lime: #a7f35b;
  --muted: #657083;
  --line: rgba(9,24,49,.11);
  --dark-line: rgba(255,255,255,.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(12,30,60,.09);
  --max: 1240px;
  --font-display: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: rgba(27,97,255,.2); }

.noise { position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
.section-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--white); }
.section-soft { background: var(--paper); }
.eyebrow { margin: 0 0 20px; font-size: 12px; font-weight: 800; letter-spacing: .18em; color: #87a7ff; }
.eyebrow.dark { color: var(--blue); }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { letter-spacing: -.055em; }
h1 em,h2 em { font-family: var(--font-display); font-style: normal; font-weight: 500; letter-spacing: -.045em; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 18px 0; transition: .35s ease; color: #fff; }
.nav-shell { width: min(1320px, calc(100% - 36px)); margin: 0 auto; min-height: 64px; padding: 0 18px 0 22px; display: flex; align-items: center; gap: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(7,17,31,.48); backdrop-filter: blur(18px); box-shadow: 0 16px 50px rgba(0,0,0,.10); transition: .35s ease; }
.site-header.scrolled { padding-top: 10px; }
.site-header.scrolled .nav-shell { background: rgba(7,17,31,.88); border-color: rgba(255,255,255,.08); }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; transform: skewX(-12deg); }
.brand-mark span { display: block; border-radius: 2px; background: linear-gradient(180deg, #62d6ff, #1b61ff); }
.brand-mark span:nth-child(1) { height: 54%; align-self: end; opacity: .72; }
.brand-mark span:nth-child(2) { height: 78%; align-self: end; }
.brand-mark span:nth-child(3) { height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: .92; }
.brand-text strong { font-size: 16px; letter-spacing: .11em; }
.brand-text small { font-size: 8px; letter-spacing: .38em; margin-top: 5px; opacity: .66; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.desktop-nav a { font-size: 13px; color: rgba(255,255,255,.72); transition: .2s ease; }
.desktop-nav a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language { border: 0; background: transparent; color: rgba(255,255,255,.66); font-size: 11px; font-weight: 700; cursor: pointer; padding: 12px 8px; }
.language span { opacity: .35; margin: 0 4px; }
.nav-cta { min-height: 40px; padding: 0 15px; border-radius: 11px; background: #fff; color: var(--ink); display: inline-flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 800; }
.nav-cta span { color: var(--blue); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 12px; width: 17px; height: 1px; background: #fff; transition: .25s ease; }
.menu-toggle span:first-child { top: 17px; }.menu-toggle span:last-child { top: 23px; }

/* Hero */
.hero { min-height: 790px; height: 100svh; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 130px 0 46px; }
.hero-grid { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 60% 40%, black, transparent 70%); }
.hero-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(120px); opacity: .21; }
.hero-glow-a { background: #245bff; right: 5%; top: 10%; }.hero-glow-b { background: #4d1df0; left: -12%; bottom: -30%; opacity: .12; }
.hero-inner { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) .7fr; gap: 60px; align-items: center; }
.hero-kicker { grid-column: 1 / -1; display: flex; align-items: center; gap: 13px; font-size: 10px; font-weight: 800; letter-spacing: .15em; color: rgba(255,255,255,.52); margin-bottom: -14px; text-transform: uppercase; }
.hero-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px rgba(57,200,255,.8); }
.hero-kicker .rule { width: 54px; height: 1px; background: rgba(255,255,255,.22); }
.hero-copy h1 { font-size: clamp(58px, 7.4vw, 104px); line-height: .86; margin-bottom: 36px; max-width: 900px; font-weight: 730; }
.hero-copy h1 span { color: rgba(255,255,255,.97); }.hero-copy h1 em { color: #8ad7ff; }
.hero-message-wrap { display: grid; grid-template-columns: 100px minmax(0, 460px); gap: 28px; align-items: start; padding-top: 22px; border-top: 1px solid var(--dark-line); max-width: 650px; }
.hero-message-label { font-size: 9px; line-height: 1.4; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.hero-message { min-height: 54px; margin: 0; font-size: 20px; line-height: 1.35; color: rgba(255,255,255,.78); transition: .32s ease; }
.hero-message.out { opacity: 0; transform: translateY(8px); filter: blur(4px); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 50px; border-radius: 13px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border: 1px solid transparent; cursor: pointer; font-weight: 800; font-size: 12px; transition: .25s ease; }
.button-primary { background: linear-gradient(135deg, #1b61ff, #3046e9); color: #fff; box-shadow: 0 15px 35px rgba(27,97,255,.23); }.button-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 45px rgba(27,97,255,.32); }
.button-ghost { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.84); }.button-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.25); }
.anniversary-card { width: min(440px, 100%); aspect-ratio: 1 / 1.02; justify-self: end; position: relative; display: grid; place-items: center; transition: transform .2s ease-out; }
.anniversary-card::before { content: ''; position: absolute; inset: 11%; border-radius: 50%; background: radial-gradient(circle at 42% 38%, rgba(58,151,255,.22), rgba(11,24,48,.05) 42%, transparent 66%); box-shadow: inset 0 0 50px rgba(97,159,255,.09); }
.anniversary-orbit { position: absolute; border: 1px solid rgba(126,179,255,.22); border-radius: 50%; }
.orbit-one { inset: 4%; animation: rotate 18s linear infinite; }.orbit-one::before { content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #7ad8ff; top: 9%; left: 28%; box-shadow: 0 0 22px rgba(122,216,255,.8); }
.orbit-two { inset: 17%; border-style: dashed; opacity: .48; animation: rotate 23s linear infinite reverse; }
.anniversary-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; }
.anniversary-top { font-size: 9px; letter-spacing: .32em; color: rgba(255,255,255,.4); margin-bottom: -7px; }
.anniversary-inner strong { font-size: clamp(110px, 12vw, 176px); letter-spacing: -.09em; line-height: .87; background: linear-gradient(180deg, #fff, #85caff 66%, #4e65ff); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 710; }
.anniversary-years { font-size: 17px; font-weight: 800; letter-spacing: .5em; margin-left: .5em; color: #fff; }
.anniversary-bottom { margin-top: 18px; font-size: 8px; line-height: 1.5; letter-spacing: .22em; color: rgba(255,255,255,.38); }
.anniversary-caption { position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.3); font-size: 9px; letter-spacing: .2em; }.anniversary-caption span { width: 52px; height: 1px; background: rgba(255,255,255,.16); }
.hero-footer { width: min(var(--max), calc(100% - 48px)); margin: auto auto 0; display: flex; justify-content: space-between; align-items: flex-end; position: relative; }
.trust-line { display: flex; gap: 30px; color: rgba(255,255,255,.34); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }.trust-line span:not(:last-child)::after { content: '•'; margin-left: 30px; color: #2c68ff; }
.scroll-cue { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }.scroll-cue i { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; font-style: normal; }
@keyframes rotate { to { transform: rotate(360deg); } }

/* General headings */
.section-heading, .solutions-header { display: grid; grid-template-columns: 1.2fr .72fr; gap: 100px; align-items: end; }
.section-heading h2, .solutions-header h2, .story-copy h2, .clients-copy h2, .m365-copy h2, .contact-copy h2 { font-size: clamp(44px, 5.2vw, 72px); line-height: .96; margin-bottom: 0; }
.section-heading em, .solutions-header em, .story-copy em, .clients-copy em { color: var(--blue); }
.section-intro, .solutions-header > p, .section-heading > p { font-size: 16px; line-height: 1.75; color: var(--muted); margin: 0; max-width: 480px; }

/* Audiences */
.audiences { padding: 125px 0; }
.audience-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.audience-card { min-height: 390px; padding: 25px 28px 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: .3s ease; }
.audience-card::before { content: ''; position: absolute; width: 210px; height: 210px; border-radius: 50%; right: -100px; top: -105px; background: radial-gradient(circle, rgba(27,97,255,.12), transparent 68%); opacity: 0; transition: .35s ease; }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(27,97,255,.24); }.audience-card:hover::before { opacity: 1; }
.card-top { display: flex; justify-content: space-between; color: #99a2b1; font-size: 10px; font-weight: 800; letter-spacing: .14em; }.card-arrow { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: 14px; transition: .2s; }.audience-card:hover .card-arrow { background: var(--ink); color: #fff; transform: rotate(45deg); }
.audience-icon { margin: 54px 0 28px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, #edf4ff, #f6f3ff); color: var(--blue); font-size: 20px; font-weight: 800; border: 1px solid #e5ebf6; }
.audience-card h3 { font-size: 25px; letter-spacing: -.03em; margin-bottom: 14px; }.audience-card p { color: var(--muted); line-height: 1.65; font-size: 14px; margin-bottom: 24px; }.audience-card a { margin-top: auto; font-size: 12px; font-weight: 800; color: var(--blue); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 18px; }

/* Solutions */
.solutions { padding: 125px 0 135px; }
.solution-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.solution-card { min-height: 430px; padding: 25px 27px 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.8); position: relative; display: flex; flex-direction: column; overflow: hidden; transition: .3s ease; }
.solution-card::after { content: ''; position: absolute; inset: auto -35% -50% 20%; height: 250px; background: radial-gradient(circle, rgba(27,97,255,.12), transparent 70%); opacity: 0; transition: .35s; }
.solution-card:hover { transform: translateY(-5px); border-color: rgba(27,97,255,.26); background: #fff; box-shadow: var(--shadow); }.solution-card:hover::after { opacity: 1; }
.solution-card.featured { background: var(--ink-2); color: #fff; border-color: transparent; }.solution-card.featured p { color: rgba(255,255,255,.58); }.solution-card.featured .solution-tags span { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.11); }.solution-card.featured a { color: #8fdcff; border-color: rgba(255,255,255,.1); }
.solution-index { font-size: 10px; letter-spacing: .16em; color: #97a1af; }
.solution-icon { width: 58px; height: 58px; margin: 53px 0 28px; display: grid; place-items: center; border-radius: 18px; background: #eff4ff; color: var(--blue); border: 1px solid #e0e8f6; font-size: 24px; font-weight: 700; }.featured .solution-icon { background: rgba(73,127,255,.12); border-color: rgba(115,168,255,.18); color: #80d2ff; }
.solution-card h3 { font-size: 24px; letter-spacing: -.035em; margin-bottom: 13px; }.solution-card p { color: var(--muted); line-height: 1.6; font-size: 14px; margin-bottom: 22px; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }.solution-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 6px 9px; font-size: 8px; font-weight: 800; color: #7d8797; text-transform: uppercase; letter-spacing: .08em; }
.solution-card a { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 11px; font-weight: 800; color: var(--blue); z-index: 2; }

/* M365 */
.m365-section { padding: 145px 0; position: relative; overflow: hidden; }
.m365-glow { position: absolute; width: 900px; height: 900px; right: -270px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(31,108,255,.25), rgba(80,36,215,.07) 40%, transparent 68%); }
.m365-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; position: relative; }
.m365-copy h2, .contact-copy h2 { color: #fff; margin-bottom: 28px; }.m365-copy h2 em, .contact-copy h2 em { color: #92dbff; }.m365-copy > p:not(.eyebrow) { color: rgba(255,255,255,.57); line-height: 1.75; max-width: 500px; font-size: 16px; }
.m365-detail { margin: 42px 0 34px; padding: 22px 0; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); display: grid; grid-template-columns: 48px 1fr; gap: 16px; transition: .18s ease; }.m365-detail.switching { opacity: 0; transform: translateY(6px); }.detail-number { color: #79cfff; font-size: 10px; letter-spacing: .15em; }.m365-detail strong { display: block; font-size: 19px; margin-bottom: 7px; }.m365-detail p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: 26px; color: #8fdcff; font-size: 12px; font-weight: 800; }.dark-link { color: var(--blue); }
.orbit-system { width: min(620px, 100%); aspect-ratio: 1; position: relative; justify-self: center; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(142,184,255,.16); left: 50%; top: 50%; transform: translate(-50%, -50%); }.ring-a { width: 80%; height: 80%; }.ring-b { width: 58%; height: 58%; border-style: dashed; }.ring-c { width: 36%; height: 36%; border-color: rgba(142,184,255,.26); box-shadow: 0 0 80px rgba(31,106,255,.12); }
.orbit-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 160px; height: 160px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background: radial-gradient(circle at 35% 30%, #173a70, #0b1830 63%); border: 1px solid rgba(145,193,255,.25); box-shadow: inset 0 0 50px rgba(69,135,255,.14), 0 0 80px rgba(38,95,221,.12); }.orbit-center span { font-size: 8px; letter-spacing: .2em; color: rgba(255,255,255,.48); }.orbit-center strong { font-size: 56px; letter-spacing: -.06em; line-height: .9; color: #fff; }.orbit-center small { margin-top: 7px; font-size: 7px; letter-spacing: .12em; color: #7fd4ff; }
.orbit-node { position: absolute; min-width: 128px; padding: 11px 13px; border-radius: 12px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.045); backdrop-filter: blur(12px); color: #fff; text-align: left; cursor: pointer; transition: .25s ease; }.orbit-node span { display: block; font-size: 8px; color: #5d91ff; letter-spacing: .12em; margin-bottom: 3px; }.orbit-node strong { font-size: 11px; font-weight: 700; }.orbit-node:hover, .orbit-node.active { border-color: rgba(105,183,255,.5); background: rgba(52,117,255,.14); box-shadow: 0 10px 35px rgba(0,0,0,.15); transform: translateY(-2px); }
.node-1 { left: 39%; top: 1%; }.node-2 { right: 2%; top: 26%; }.node-3 { right: 4%; bottom: 22%; }.node-4 { left: 40%; bottom: 1%; }.node-5 { left: 0; bottom: 22%; }.node-6 { left: 1%; top: 25%; }

/* Story */
.story { padding: 135px 0; }
.story-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: center; }
.story-number { display: flex; flex-direction: column; border-left: 2px solid var(--blue); padding-left: 30px; }.story-number span { font-size: 9px; font-weight: 800; letter-spacing: .22em; color: #8792a2; }.story-number strong { font-size: clamp(72px, 9vw, 124px); letter-spacing: -.07em; line-height: .9; color: var(--ink); }
.story-copy h2 { margin-bottom: 25px; }.story-copy > p:last-child { max-width: 590px; color: var(--muted); line-height: 1.75; }
.timeline { margin-top: 90px; display: grid; grid-template-columns: repeat(4,1fr); position: relative; gap: 30px; }.timeline-line { position: absolute; top: 8px; left: 0; width: 100%; height: 1px; background: #e0e5ee; }.timeline-progress { width: 100%; height: 1px; background: linear-gradient(90deg, #9aa6b6, var(--blue)); display: block; }.timeline-item { position: relative; padding-top: 33px; }.timeline-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #c3cad4; position: absolute; top: 4px; left: 0; z-index: 2; }.timeline-item.active::before { background: var(--blue); box-shadow: 0 0 0 6px rgba(27,97,255,.09); }.timeline-item strong { display: block; font-size: 27px; letter-spacing: -.04em; }.timeline-item span { display: block; margin: 6px 0; color: var(--blue); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }.timeline-item p { color: var(--muted); font-size: 12px; }

/* Partners */
.partners { padding: 125px 0; overflow: hidden; }.section-heading.compact { align-items: center; }.logo-marquee { margin-top: 76px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 34px 0; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }.logo-track { width: max-content; display: flex; align-items: center; gap: 76px; animation: marquee 24s linear infinite; }.logo-track span { font-size: 19px; font-weight: 850; letter-spacing: -.02em; color: #7b8492; white-space: nowrap; filter: grayscale(1); opacity: .65; }.placeholder-note { color: #98a1af; font-size: 10px; margin: 18px 0 0; }@keyframes marquee { to { transform: translateX(-50%); } }

/* Clients */
.clients { padding: 125px 0; }.clients-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }.clients-copy h2 { margin-bottom: 27px; }.clients-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; margin-bottom: 32px; }.client-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.client-logo-grid div { min-height: 130px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; place-items: center; color: #a4abb6; font-size: 10px; font-weight: 800; letter-spacing: .12em; transition: .2s ease; }.client-logo-grid div:hover { color: var(--blue); background: #f8faff; }

/* Insights */
.insights { padding: 125px 0 135px; }.insight-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.insight-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 12px 12px 24px; overflow: hidden; transition: .3s ease; }.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }.insight-visual { height: 260px; border-radius: 14px; position: relative; overflow: hidden; padding: 18px; background: var(--ink); }.insight-visual span { position: relative; z-index: 2; font-size: 9px; font-weight: 800; letter-spacing: .16em; color: rgba(255,255,255,.55); }.visual-shape { position: absolute; width: 190px; height: 190px; border-radius: 45% 55% 60% 40%; right: -25px; bottom: -35px; background: radial-gradient(circle at 35% 30%, #7edcff, #2e62f0 50%, #3516a8); transform: rotate(18deg); filter: blur(.2px); }.visual-two { background: #101629; }.visual-two .visual-shape { width: 230px; height: 230px; border-radius: 50%; background: repeating-radial-gradient(circle, rgba(115,167,255,.8) 0 1px, transparent 2px 14px); right: -45px; bottom: -55px; }.visual-three { background: #081c21; }.visual-three .visual-shape { width: 220px; height: 220px; background: linear-gradient(140deg, #74f4c5, #1f79d8 55%, #143153); clip-path: polygon(50% 0%, 100% 40%, 79% 100%, 17% 91%, 0% 34%); border-radius: 0; opacity: .9; }.insight-meta { display: flex; justify-content: space-between; padding: 18px 6px 0; color: #98a1af; font-size: 8px; font-weight: 800; letter-spacing: .12em; }.insight-card h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.03em; padding: 0 6px; margin: 16px 0 24px; }.insight-card > a { padding: 0 6px; display: flex; justify-content: space-between; color: var(--blue); font-size: 11px; font-weight: 800; }

/* Contact */
.contact { padding: 140px 0; position: relative; overflow: hidden; }.contact-glow { position: absolute; width: 600px; height: 600px; left: -260px; bottom: -330px; border-radius: 50%; background: radial-gradient(circle, rgba(35,113,255,.26), transparent 67%); }.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; position: relative; align-items: start; }.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.56); line-height: 1.75; max-width: 500px; }.contact-direct { margin-top: 46px; display: flex; flex-direction: column; gap: 12px; }.contact-direct a { width: fit-content; font-size: 14px; color: #a1dcff; display: inline-flex; gap: 16px; }.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.035); backdrop-filter: blur(15px); }.field, .field-row { margin-bottom: 20px; }.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }.field-row .field { margin: 0; }.field label { display: block; color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 8px; }.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); background: transparent; color: #fff; padding: 11px 0 13px; outline: none; border-radius: 0; }.field input:focus, .field select:focus, .field textarea:focus { border-color: #67bfff; }.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.25); }.field select option { color: var(--ink); }.field textarea { resize: vertical; }.form-button { width: 100%; border: 0; margin-top: 4px; }.form-success { display: none; margin: 14px 0 0; font-size: 11px; color: #8fdcff; line-height: 1.5; }.form-success.show { display: block; }

/* Footer */
.site-footer { background: #050c16; color: #fff; padding: 60px 0 28px; }.footer-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }.footer-top p { margin: 0; color: rgba(255,255,255,.4); font-size: 12px; }.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding: 45px 0; }.footer-links div { display: flex; flex-direction: column; gap: 11px; }.footer-links strong { color: #fff; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }.footer-links a, .footer-links span { color: rgba(255,255,255,.42); font-size: 12px; transition: .2s; }.footer-links a:hover { color: #fff; }.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: rgba(255,255,255,.25); font-size: 9px; letter-spacing: .08em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); filter: blur(3px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1), filter .75s ease; }.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }.delay-1 { transition-delay: .10s; }.delay-2 { transition-delay: .20s; }.delay-3 { transition-delay: .30s; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: rgba(5,12,22,.97); backdrop-filter: blur(20px); opacity: 0; pointer-events: none; transition: .3s ease; display: grid; place-items: center; }.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }.mobile-menu a { color: #fff; font-size: 30px; letter-spacing: -.04em; }.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }.menu-open { overflow: hidden; }.menu-open .menu-toggle span:first-child { transform: rotate(45deg); top: 20px; }.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); top: 20px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }.menu-toggle { display: block; }.language { display: none; }
  .hero { height: auto; min-height: 900px; }.hero-inner { grid-template-columns: 1fr .62fr; gap: 28px; }.hero-copy h1 { font-size: clamp(56px, 8vw, 85px); }.anniversary-inner strong { font-size: 130px; }
  .solution-grid { grid-template-columns: repeat(2,1fr); }.m365-layout { grid-template-columns: 1fr; }.orbit-system { margin-top: 30px; }.clients-layout, .contact-layout { gap: 60px; }
}

@media (max-width: 760px) {
  .section-shell, .hero-inner, .hero-footer, .footer-shell { width: min(100% - 30px, var(--max)); }
  .site-header { padding-top: 10px; }.nav-shell { width: calc(100% - 20px); min-height: 58px; padding: 0 10px 0 14px; }.nav-cta { display: none; }.brand-text strong { font-size: 13px; }
  .hero { padding: 118px 0 34px; min-height: 860px; }.hero-inner { grid-template-columns: 1fr; }.hero-kicker { margin-bottom: 5px; }.hero-copy h1 { font-size: clamp(51px, 15vw, 75px); }.hero-message-wrap { grid-template-columns: 72px 1fr; gap: 14px; }.hero-message { font-size: 16px; min-height: 65px; }.button { width: 100%; justify-content: space-between; }.anniversary-card { width: 290px; margin: 8px auto 0; justify-self: center; }.anniversary-inner strong { font-size: 108px; }.anniversary-years { font-size: 13px; }.anniversary-bottom { margin-top: 10px; }.hero-footer { margin-top: 28px; }.trust-line { display: none; }
  .audiences, .solutions, .story, .partners, .clients, .insights { padding: 88px 0; }.m365-section, .contact { padding: 95px 0; }
  .section-heading, .solutions-header, .story-layout, .clients-layout, .contact-layout { grid-template-columns: 1fr; gap: 28px; }.section-heading h2, .solutions-header h2, .story-copy h2, .clients-copy h2, .m365-copy h2, .contact-copy h2 { font-size: 44px; }.section-intro, .solutions-header > p, .section-heading > p { font-size: 14px; }.audience-grid, .solution-grid, .insight-grid { grid-template-columns: 1fr; }.audience-grid, .solution-grid, .insight-grid { margin-top: 45px; }.audience-card, .solution-card { min-height: 350px; }.audience-icon, .solution-icon { margin-top: 35px; }
  .orbit-system { width: 350px; max-width: 100%; }.orbit-center { width: 108px; height: 108px; }.orbit-center strong { font-size: 39px; }.orbit-node { min-width: 96px; padding: 8px 9px; }.orbit-node strong { font-size: 9px; }.node-1 { left: 36%; }.node-4 { left: 36%; }
  .story-number strong { font-size: 82px; }.timeline { grid-template-columns: 1fr 1fr; gap: 28px; }.timeline-line { display: none; }.timeline-item { padding: 18px 0 0; border-top: 1px solid var(--line); }.timeline-item::before { top: -4px; }
  .clients-layout { gap: 48px; }.client-logo-grid { grid-template-columns: repeat(2,1fr); }.field-row { grid-template-columns: 1fr; gap: 20px; }.contact-form { padding: 24px 18px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }.footer-links { grid-template-columns: 1fr 1fr; }.footer-top p { max-width: 220px; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ============================================================
   V2 — MOTION SYSTEM + INTELIGENCIA ARTIFICIAL
   ============================================================ */

/* Animated desktop navigation */
.desktop-nav { position: relative; }
.desktop-nav a {
  position: relative;
  isolation: isolate;
  padding: 10px 3px;
  transition: color .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.desktop-nav a::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #79c9ff 25%, #fff 50%, #79c9ff 75%, transparent);
  transform: translateX(-50%);
  transition: width .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 14px rgba(79,180,255,.75);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: 0 -12px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 100%, rgba(72,174,255,.12), transparent 65%);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .3s ease, transform .3s ease;
  z-index: -1;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: #fff; transform: translateY(-1px); }
.desktop-nav a:hover::before,
.desktop-nav a.active::before { width: 100%; }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { opacity: 1; transform: scale(1); }

/* More expressive CTA */
.nav-cta { overflow: hidden; position: relative; }
.nav-cta::before {
  content: ""; position: absolute; inset: -120% 65% -120% -35%;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.42), transparent 80%);
  transform: translateX(-180%) rotate(8deg); transition: transform .7s ease;
}
.nav-cta:hover::before { transform: translateX(360%) rotate(8deg); }
.nav-cta:hover span { transform: translate(2px,-2px); }
.nav-cta span { display:inline-block; transition: transform .25s ease; }

/* Interactive card motion */
.audience-card,
.solution-card,
.insight-card,
.client-logo-grid > div {
  --mx: 50%; --my: 50%;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.audience-card::after,
.solution-card::after,
.insight-card::after {
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  opacity:0;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(75,174,255,.12), transparent 48%);
  transition: opacity .35s ease;
}
.audience-card:hover::after,
.solution-card:hover::after,
.insight-card:hover::after { opacity:1; }
.audience-card:hover .card-arrow,
.solution-card:hover > a span,
.insight-card:hover > a span { transform: translate(4px,-4px); }
.card-arrow,
.solution-card > a span,
.insight-card > a span { display:inline-block; transition: transform .25s ease; }
.audience-icon,
.solution-icon { transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s ease; }
.audience-card:hover .audience-icon,
.solution-card:hover .solution-icon { transform: translateZ(20px) rotate(-4deg) scale(1.06); }
.solution-tags span { transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.solution-card:hover .solution-tags span { transform: translateY(-2px); }

/* AI premium product card */
.ai-solution {
  grid-column: 1 / -1;
  min-height: 420px;
  display: grid;
  grid-template-columns: .48fr 1.4fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 34px 42px;
  padding: 48px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(120,199,255,.26);
  background:
    radial-gradient(circle at 15% 20%, rgba(57,153,255,.18), transparent 25%),
    radial-gradient(circle at 85% 80%, rgba(118,73,255,.17), transparent 28%),
    linear-gradient(135deg, #07111e 0%, #091827 52%, #06101b 100%);
}
.ai-solution::before {
  content:""; position:absolute; inset:-1px;
  background: linear-gradient(115deg, transparent 15%, rgba(104,199,255,.22) 36%, transparent 54%, rgba(135,93,255,.18) 75%, transparent 90%);
  transform: translateX(-55%);
  animation: aiSweep 8s ease-in-out infinite;
  pointer-events:none;
}
@keyframes aiSweep { 0%,18% { transform:translateX(-60%); } 50%,100% { transform:translateX(65%); } }
.ai-grid-lines {
  position:absolute; inset:0; opacity:.23; pointer-events:none;
  background-image: linear-gradient(rgba(112,189,255,.12) 1px,transparent 1px), linear-gradient(90deg,rgba(112,189,255,.12) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 20% 45%, #000, transparent 62%);
}
.ai-solution .solution-index { color: rgba(255,255,255,.28); z-index:1; }
.ai-solution .solution-icon {
  z-index:1; align-self:center; justify-self:center;
  width: 132px; height: 132px; border-radius: 50%;
  display:grid; place-items:center;
  border:1px solid rgba(123,204,255,.35);
  background: radial-gradient(circle, rgba(104,193,255,.18), rgba(10,26,44,.92) 62%);
  box-shadow: 0 0 0 18px rgba(75,170,255,.025), 0 0 70px rgba(76,168,255,.16);
  position:relative;
}
.ai-icon::before, .ai-icon::after {
  content:""; position:absolute; inset:-15px; border:1px solid rgba(104,195,255,.18); border-radius:50%; animation: aiOrbit 12s linear infinite;
}
.ai-icon::after { inset:-31px; border-style:dashed; animation-duration:20s; animation-direction:reverse; }
@keyframes aiOrbit { to { transform:rotate(360deg); } }
.ai-core { font-size:27px; letter-spacing:-.05em; font-weight:800; }
.ai-icon i { position:absolute; width:5px; height:5px; background:#a9ddff; border-radius:50%; box-shadow:0 0 13px #75c7ff; }
.ai-icon i:nth-of-type(1){ top:-18px; left:57%; }
.ai-icon i:nth-of-type(2){ right:-12px; bottom:24%; }
.ai-icon i:nth-of-type(3){ left:-20px; bottom:39%; }
.ai-solution-copy { z-index:1; align-self:center; }
.ai-badge { display:flex; align-items:center; gap:9px; margin:0 0 16px!important; font-size:10px!important; letter-spacing:.16em; font-weight:700; color:#9fd8ff!important; }
.ai-badge span { width:7px; height:7px; border-radius:50%; background:#70c8ff; box-shadow:0 0 0 5px rgba(112,200,255,.09),0 0 16px rgba(112,200,255,.75); animation:aiPulse 2.2s ease-in-out infinite; }
@keyframes aiPulse { 50% { transform:scale(.72); opacity:.6; } }
.ai-solution h3 { font-size:clamp(33px,4vw,54px); letter-spacing:-.045em; max-width:720px; margin:0 0 14px; }
.ai-solution-copy > p:not(.ai-badge) { color:rgba(255,255,255,.58); max-width:690px; font-size:14px; line-height:1.75; }
.ai-solution .solution-tags span { border-color:rgba(159,216,255,.17); background:rgba(255,255,255,.035); color:rgba(255,255,255,.66); }
.ai-capabilities { z-index:1; align-self:center; display:grid; gap:0; border-top:1px solid rgba(255,255,255,.1); }
.ai-capabilities span { padding:13px 0; border-bottom:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.56); font-size:11px; transition:color .25s ease, padding-left .25s ease; }
.ai-capabilities span:hover { color:#fff; padding-left:7px; }
.ai-link { z-index:1; grid-column:2 / 4; color:#fff!important; text-transform:uppercase; letter-spacing:.14em; font-size:10px!important; display:flex!important; justify-content:space-between; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); }
.ai-link span { transition:transform .25s ease; }
.ai-link:hover span { transform:translate(4px,-4px); }

/* Timeline comes alive as it enters viewport */
.timeline-progress { transform-origin:left center; transform:scaleX(0); transition:transform 1.3s cubic-bezier(.2,.8,.2,1) .15s; }
.timeline.timeline-animate .timeline-progress { transform:scaleX(1); }
.timeline-item { transition:transform .35s ease, color .35s ease; }
.timeline-item:hover { transform:translateY(-5px); }
.timeline-item::before { transition:transform .3s ease, box-shadow .3s ease; }
.timeline-item:hover::before { transform:scale(1.6); box-shadow:0 0 18px rgba(45,160,240,.55); }

/* Partners + client microinteractions */
.logo-track span { transition:color .28s ease, text-shadow .28s ease, transform .28s ease; }
.logo-track span:hover { color:#1e7fbf; text-shadow:0 0 22px rgba(72,170,232,.25); transform:translateY(-2px); }
.client-logo-grid > div { overflow:hidden; transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease; }
.client-logo-grid > div::before { content:""; position:absolute; inset:0; background:linear-gradient(115deg,transparent 35%,rgba(76,164,226,.09),transparent 65%); transform:translateX(-120%); transition:transform .6s ease; }
.client-logo-grid > div:hover { transform:translateY(-5px); border-color:rgba(42,146,211,.28); box-shadow:0 14px 35px rgba(8,46,72,.07); }
.client-logo-grid > div:hover::before { transform:translateX(120%); }

/* Insight visual motion */
.insight-visual { overflow:hidden; }
.insight-visual .visual-shape { transition:transform .65s cubic-bezier(.2,.8,.2,1), filter .65s ease; }
.insight-card:hover .visual-shape { transform:scale(1.08) rotate(6deg); filter:brightness(1.08); }

/* Mobile menu motion */
.mobile-menu-inner a { opacity:0; transform:translateY(18px); transition:opacity .35s ease,transform .35s ease,color .25s ease; }
.menu-open .mobile-menu-inner a { opacity:1; transform:translateY(0); }
.menu-open .mobile-menu-inner a:nth-child(2){transition-delay:.04s}.menu-open .mobile-menu-inner a:nth-child(3){transition-delay:.08s}.menu-open .mobile-menu-inner a:nth-child(4){transition-delay:.12s}.menu-open .mobile-menu-inner a:nth-child(5){transition-delay:.16s}.menu-open .mobile-menu-inner a:nth-child(6){transition-delay:.20s}.menu-open .mobile-menu-inner a:nth-child(7){transition-delay:.24s}
.mobile-menu-inner a:hover { color:#79c9ff; }

@media (max-width: 1080px) {
  .ai-solution { grid-template-columns:.5fr 1.5fr; }
  .ai-capabilities { grid-column:1 / -1; grid-template-columns:repeat(2,1fr); gap:0 30px; }
  .ai-link { grid-column:1 / -1; }
}
@media (max-width: 760px) {
  .ai-solution { grid-column:auto; grid-template-columns:1fr; padding:30px 24px; min-height:620px; gap:24px; }
  .ai-solution .solution-icon { width:100px;height:100px; justify-self:start; margin-left:26px; }
  .ai-solution h3 { font-size:38px; }
  .ai-capabilities { grid-column:auto; grid-template-columns:1fr; }
  .ai-link { grid-column:auto; }
}


/* ============================================================
   V3 — SOFTER GEOMETRY + SLIDE-UP INFORMATION CARDS
   ============================================================ */
:root {
  --radius-lg: 40px;
  --radius-md: 30px;
  --radius-sm: 22px;
  --shadow-soft: 0 24px 70px rgba(12,30,60,.075);
}

/* Softer / more premium geometry throughout the HOME */
.nav-shell { border-radius: 26px; }
.nav-cta { border-radius: 16px; }
.menu-toggle { border-radius: 16px; }
.button { border-radius: 17px; }
.audience-card,
.solution-card,
.insight-card { border-radius: 32px; }
.contact-form { border-radius: 34px; }
.insight-visual { border-radius: 23px; }
.orbit-node { border-radius: 18px; }
.client-logo-grid { border-radius: 30px; overflow: hidden; }
.client-logo-grid > div:first-child { border-top-left-radius: 29px; }
.client-logo-grid > div:nth-child(3) { border-top-right-radius: 29px; }
.client-logo-grid > div:nth-last-child(3) { border-bottom-left-radius: 29px; }
.client-logo-grid > div:last-child { border-bottom-right-radius: 29px; }
.logo-marquee { border-radius: 24px; }

.audience-card,
.solution-card { isolation: isolate; }
.audience-card:hover,
.solution-card:hover { box-shadow: var(--shadow-soft); }

/* Expand affordance */
.card-expand-cue {
  position: relative;
  z-index: 3;
  margin-top: -8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8c96a5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: opacity .35s ease, transform .35s ease;
}
.card-expand-cue i {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 15px; font-style: normal; font-weight: 400;
  transition: transform .45s cubic-bezier(.2,.85,.2,1), background .3s ease, color .3s ease;
}
.featured .card-expand-cue { color: rgba(255,255,255,.4); }
.featured .card-expand-cue i { border-color: rgba(255,255,255,.12); }
.solution-card:hover .card-expand-cue i,
.solution-card.expanded .card-expand-cue i { transform: rotate(45deg); background: var(--blue); color:#fff; border-color:var(--blue); }

/* The second layer that physically rises over each card */
.card-reveal-panel {
  position: absolute;
  z-index: 8;
  left: 8px; right: 8px; bottom: 8px;
  min-height: calc(100% - 16px);
  padding: 30px 28px 27px;
  border-radius: 27px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    radial-gradient(circle at 92% 8%, rgba(84,175,255,.26), transparent 28%),
    linear-gradient(145deg, rgba(10,28,51,.985), rgba(7,17,31,.99));
  border: 1px solid rgba(141,203,255,.18);
  box-shadow: 0 26px 60px rgba(4,14,29,.25);
  transform: translateY(calc(100% + 14px));
  opacity: .35;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform .58s cubic-bezier(.16,1,.3,1),
    opacity .38s ease,
    visibility 0s linear .58s;
}
.card-reveal-panel::before {
  content:"";
  position:absolute;
  left: 28px; right: 28px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106,196,255,.75), transparent);
  box-shadow: 0 0 18px rgba(91,184,255,.38);
}
.solution-card:hover .card-reveal-panel,
.solution-card:focus-visible .card-reveal-panel,
.solution-card.expanded .card-reveal-panel,
.audience-card:hover .card-reveal-panel,
.audience-card:focus-visible .card-reveal-panel,
.audience-card.expanded .card-reveal-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.reveal-panel-kicker {
  color: #83d6ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 18px;
}
.card-reveal-panel h4 {
  margin: 0 0 13px;
  max-width: 90%;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.card-reveal-panel p {
  margin: 0 0 19px;
  color: rgba(255,255,255,.56) !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
}
.card-reveal-panel ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 22px;
  display: grid;
  gap: 0;
}
.card-reveal-panel li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.45;
}
.card-reveal-panel li::before {
  content:"";
  position:absolute;
  left:0; top:18px;
  width:5px; height:5px;
  border-radius:50%;
  background:#70ceff;
  box-shadow:0 0 12px rgba(112,206,255,.65);
}
.reveal-panel-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.46);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.reveal-panel-foot b { color:#8edbff; font-size:14px; }

/* Audience cards use a slightly shorter second layer */
.audience-reveal-panel {
  min-height: 68%;
  background:
    radial-gradient(circle at 88% 10%, rgba(75,164,255,.22), transparent 31%),
    linear-gradient(145deg, #0b1b31, #081321);
}
.audience-reveal-panel h4 { margin-bottom: 12px; }

/* AI remains the flagship card, but becomes softer */
.ai-solution { border-radius: 38px; }
.ai-solution .solution-icon { box-shadow: 0 0 0 18px rgba(75,170,255,.025), 0 0 70px rgba(76,168,255,.16); }

/* Focus state for keyboard users */
[data-expandable="true"]:focus-visible {
  outline: 2px solid rgba(40,138,255,.6);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .nav-shell { border-radius: 21px; }
  .audience-card, .solution-card, .insight-card { border-radius: 28px; }
  .contact-form { border-radius: 28px; }
  .ai-solution { border-radius: 30px; }
  .card-reveal-panel { left:6px; right:6px; bottom:6px; min-height:calc(100% - 12px); border-radius:23px; padding:27px 23px 24px; }
  .audience-reveal-panel { min-height:74%; }
  .card-reveal-panel h4 { font-size:24px; }
  .solution-card:hover .card-reveal-panel,
  .audience-card:hover .card-reveal-panel { /* touch devices use .expanded */ }
  .client-logo-grid > div:nth-child(3), .client-logo-grid > div:nth-last-child(3) { border-radius:0; }
}

@media (hover: none) {
  .solution-card:hover .card-reveal-panel,
  .audience-card:hover .card-reveal-panel {
    transform: translateY(calc(100% + 14px));
    opacity: .35;
    visibility: hidden;
    pointer-events: none;
  }
  .solution-card.expanded .card-reveal-panel,
  .audience-card.expanded .card-reveal-panel {
    transform: translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }
}


/* ============================================================
   V4 — TYPOGRAPHY SYSTEM · MANROPE + INTER
   ============================================================ */
body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -.006em;
}

h1, h2, h3, h4,
.brand-text strong,
.anniversary-inner strong,
.anniversary-years,
.story-number strong,
.timeline-item strong,
.orbit-center strong,
.ai-core,
.ai-solution h3,
.mobile-menu a {
  font-family: var(--font-display);
}

h1, h2 {
  font-weight: 650;
  letter-spacing: -.052em;
  text-wrap: balance;
}

h3, h4 {
  font-weight: 650;
  letter-spacing: -.032em;
}

h1 em, h2 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.045em;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -.064em;
  line-height: .89;
}
.hero-copy h1 em {
  font-weight: 500;
  letter-spacing: -.055em;
}

.anniversary-inner strong {
  font-weight: 800;
  letter-spacing: -.078em;
  font-variant-numeric: tabular-nums;
}
.anniversary-years {
  font-weight: 700;
  letter-spacing: .42em;
}

.brand-text strong {
  font-weight: 800;
  letter-spacing: .095em;
}
.brand-text small {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .34em;
}

.desktop-nav a,
.nav-cta,
.button,
.eyebrow,
.hero-kicker,
.card-top,
.solution-index,
.solution-tags span,
.card-expand-cue,
.reveal-panel-kicker,
.insight-meta,
.field label,
.footer-links strong {
  font-family: var(--font-display);
}

.desktop-nav a {
  font-weight: 600;
  letter-spacing: -.012em;
}
.nav-cta,
.button {
  font-weight: 700;
  letter-spacing: -.005em;
}
.eyebrow,
.hero-kicker,
.solution-index,
.reveal-panel-kicker,
.field label,
.footer-links strong {
  font-weight: 700;
}

.hero-message,
.section-intro,
.solutions-header > p,
.audience-card p,
.solution-card p,
.card-reveal-panel p,
.card-reveal-panel li,
.m365-detail p,
.story-copy p,
.clients-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
}

/* Slightly calmer rhythm with the new display face */
.section-heading h2,
.solutions-header h2,
.story-copy h2,
.clients-copy h2,
.m365-copy h2,
.contact-copy h2 {
  line-height: .98;
}

@media (max-width: 760px) {
  .hero-copy h1 { letter-spacing: -.058em; line-height: .91; }
  h1, h2 { letter-spacing: -.045em; }
}


/* V4 Solar experimental hero layer */
.hero { isolation: isolate; }
.space-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-grid, .hero-glow { z-index: 0; }
.hero-inner, .hero-footer { z-index: 1; }
.space-starfield {
  position: absolute;
  inset: 0;
}
.space-starfield span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.88) 32%, rgba(162,202,255,.18) 74%, transparent 100%);
  box-shadow: 0 0 12px rgba(255,255,255,.36), 0 0 26px rgba(130,190,255,.12);
  will-change: transform, opacity;
}
.starfield-back { opacity: .82; }
.starfield-front { opacity: .98; mix-blend-mode: screen; }
.starfield-back span { animation: starDrift var(--dur, 28s) linear infinite, starPulse var(--pulse, 4.2s) ease-in-out infinite; }
.starfield-front span { animation: starDriftFront var(--dur, 18s) linear infinite, starPulse var(--pulse, 3.8s) ease-in-out infinite; }
.space-orbit-set {
  position: absolute;
  right: max(4%, calc((100vw - var(--max)) / 2 - 20px));
  top: 50%;
  width: min(540px, 42vw);
  aspect-ratio: 1;
  transform: translateY(-47%);
  opacity: .7;
}
.space-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,216,120,.09);
  box-shadow: inset 0 0 30px rgba(255,204,51,.02);
}
.space-orbit::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,250,230,.92), rgba(255,208,84,.68) 58%, transparent 72%);
  box-shadow: 0 0 16px rgba(255,214,90,.45);
}
.orbit-a { animation: orbitSpin 26s linear infinite; }
.orbit-a::after { top: 12%; left: 24%; }
.orbit-b { inset: 11%; border-color: rgba(255,216,120,.13); animation: orbitSpinReverse 34s linear infinite; }
.orbit-b::after { top: 16%; right: 22%; width: 6px; height: 6px; }
.orbit-c { inset: 23%; border-style: dashed; border-color: rgba(255,216,120,.16); animation: orbitSpin 19s linear infinite; }
.orbit-c::after { bottom: 8%; left: 32%; width: 5px; height: 5px; }
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(7,16,29,0) 0%, rgba(7,16,29,.14) 30%, rgba(7,16,29,.92) 100%);
  pointer-events: none;
}
.anniversary-card::before {
  background: radial-gradient(circle at 42% 38%, rgba(255,213,101,.14), rgba(58,151,255,.18) 28%, rgba(11,24,48,.05) 48%, transparent 66%);
}
.orbit-one { animation-duration: 22s; }
.orbit-two { animation-duration: 28s; }
.orbit-three {
  inset: 28%;
  border-style: dotted;
  border-color: rgba(255,213,101,.22);
  opacity: .72;
  animation: rotate 16s linear infinite;
}
.orbit-three::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffd868;
  bottom: 16%;
  right: 30%;
  box-shadow: 0 0 18px rgba(255,216,104,.82);
}
@keyframes starDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-1.2vw, 1.2vh, 0) scale(1.02); }
  100% { transform: translate3d(-2.4vw, 2.4vh, 0) scale(1); }
}
@keyframes starDriftFront {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-2vw, 1.6vh, 0) scale(1.04); }
  100% { transform: translate3d(-4vw, 3.2vh, 0) scale(1); }
}
@keyframes starPulse {
  0%,100% { opacity: .5; }
  50% { opacity: 1; }
}
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitSpinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@media (max-width: 1200px) {
  .space-orbit-set { width: min(450px, 44vw); right: 4%; }
}
@media (max-width: 900px) {
  .space-orbit-set { right: 50%; top: 70%; transform: translate(50%, -50%); width: 350px; opacity: .5; }
  .starfield-back { opacity: .62; }
  .starfield-front { opacity: .72; }
}
@media (max-width: 640px) {
  .space-orbit-set { width: 280px; top: 74%; opacity: .42; }
  .space-starfield span { box-shadow: 0 0 8px rgba(255,255,255,.26); }
}
@media (prefers-reduced-motion: reduce) {
  .space-starfield span, .space-orbit, .orbit-one, .orbit-two, .orbit-three { animation: none !important; }
}


/* Refinement: first Cloud & Hybrid IT card in white */
.solution-card.featured {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(21, 41, 70, .05);
}
.solution-card.featured:hover {
  background: #ffffff;
  border-color: rgba(27,97,255,.24);
  box-shadow: var(--shadow-soft);
}
.solution-card.featured p { color: var(--muted); }
.solution-card.featured .solution-tags span {
  color: #667386;
  border-color: var(--line);
  background: rgba(246,249,253,.72);
}
.solution-card.featured a {
  color: var(--blue);
  border-color: var(--line);
}
.solution-card.featured .solution-icon {
  background: #eff4ff;
  border-color: #e0e8f6;
  color: var(--blue);
}
.solution-card.featured .card-expand-cue { color: #8c96a5; }
.solution-card.featured .card-expand-cue i { border-color: var(--line); }


/* Enhanced AI section */
.ai-solution {
  min-height: 720px;
  grid-template-columns: .42fr 1.18fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 30px 40px;
  padding: 52px;
  border-color: rgba(132,205,255,.24);
  background:
    radial-gradient(circle at 12% 18%, rgba(89,176,255,.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255,211,97,.09), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(113,69,255,.18), transparent 26%),
    linear-gradient(135deg, #06101b 0%, #081626 46%, #050d17 100%);
}
.ai-solution::before {
  background: linear-gradient(115deg, transparent 14%, rgba(104,199,255,.14) 34%, transparent 52%, rgba(255,212,97,.09) 69%, transparent 84%, rgba(135,93,255,.12) 96%);
}
.ai-grid-lines {
  opacity: .18;
  mask-image: radial-gradient(circle at 28% 48%, #000 0%, rgba(0,0,0,.92) 36%, transparent 74%);
}
.ai-starburst {
  position: absolute;
  left: 5%;
  top: 11%;
  width: 330px;
  height: 330px;
  pointer-events: none;
  z-index: 0;
}
.ai-star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.98), rgba(255,232,164,.95) 40%, rgba(120,196,255,.4) 72%, transparent 100%);
  box-shadow: 0 0 10px rgba(255,225,134,.56), 0 0 24px rgba(84,179,255,.26);
  animation: aiBurst 5.6s ease-in-out infinite, aiTwinkle 3.1s ease-in-out infinite;
}
.ai-star::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 1px; height: 22px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,228,152,.12) 30%, rgba(255,255,255,.92) 50%, rgba(132,205,255,.2) 72%, transparent 100%);
}
.ai-star.s1{ --x:-124px; --y:-96px; --delay:0s; --scale:1.0; }
.ai-star.s2{ --x:-86px; --y:-40px; --delay:-1.1s; --scale:.9; }
.ai-star.s3{ --x:-138px; --y:26px; --delay:-2s; --scale:1.15; }
.ai-star.s4{ --x:-58px; --y:104px; --delay:-3s; --scale:.84; }
.ai-star.s5{ --x:18px; --y:-126px; --delay:-1.5s; --scale:1.1; }
.ai-star.s6{ --x:46px; --y:-62px; --delay:-2.7s; --scale:.72; }
.ai-star.s7{ --x:96px; --y:-22px; --delay:-.4s; --scale:.95; }
.ai-star.s8{ --x:132px; --y:42px; --delay:-1.9s; --scale:1.2; }
.ai-star.s9{ --x:82px; --y:98px; --delay:-3.4s; --scale:.88; }
.ai-star.s10{ --x:10px; --y:126px; --delay:-2.4s; --scale:1.05; }
.ai-star.s11{ --x:-18px; --y:62px; --delay:-.8s; --scale:.74; }
.ai-star.s12{ --x:62px; --y:24px; --delay:-4.1s; --scale:.98; }
@keyframes aiBurst {
  0%, 100% { transform: translate(-50%, -50%) translate(calc(var(--x) * .72), calc(var(--y) * .72)) scale(calc(var(--scale) * .88)); opacity: .42; }
  45% { transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(var(--scale)); opacity: 1; }
  70% { transform: translate(-50%, -50%) translate(calc(var(--x) * 1.08), calc(var(--y) * 1.08)) scale(calc(var(--scale) * 1.03)); opacity: .72; }
}
@keyframes aiTwinkle {
  0%,100% { filter: brightness(.92); }
  50% { filter: brightness(1.35); }
}
.ai-solution .solution-index { font-size: 13px; letter-spacing: .18em; }
.ai-solution .solution-icon {
  align-self: start;
  margin-top: 34px;
  width: 144px;
  height: 144px;
  border-color: rgba(145,214,255,.38);
  background: radial-gradient(circle at 45% 38%, rgba(138,212,255,.3), rgba(10,26,44,.96) 58%);
  box-shadow: 0 0 0 22px rgba(75,170,255,.03), 0 0 84px rgba(76,168,255,.18);
}
.ai-icon::before { inset:-18px; border-color: rgba(123,205,255,.18); }
.ai-icon::after { inset:-36px; border-color: rgba(255,214,98,.16); }
.ai-core { font-size: 30px; }
.ai-icon i { background: #ffe39a; box-shadow: 0 0 13px rgba(255,226,126,.72); }
.ai-solution-copy { align-self: start; }
.ai-badge { color:#b9e4ff!important; }
.ai-badge span { background:#81d4ff; }
.ai-solution h3 { max-width: 760px; margin-bottom: 16px; }
.ai-solution-copy > p:not(.ai-badge) {
  max-width: 740px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.8;
}
.ai-lead {
  font-size: 16px !important;
  color: rgba(255,255,255,.9) !important;
  max-width: 760px !important;
}
.ai-solution .solution-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ai-solution .solution-tags span {
  border-color: rgba(255,223,131,.16);
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.84);
}
.ai-capabilities {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
}
.ai-capability {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  backdrop-filter: blur(10px);
  min-height: 168px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.ai-capability:hover {
  transform: translateY(-5px);
  border-color: rgba(150,213,255,.28);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
}
.ai-capability small {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #9fd8ff;
}
.ai-capability strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
}
.ai-capability p {
  margin: 0;
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255,255,255,.68);
}
.ai-compare {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  z-index: 1;
}
.ai-compare-card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
}
.ai-yes { border-color: rgba(139,214,255,.18); box-shadow: inset 0 0 0 1px rgba(139,214,255,.04); }
.ai-no { border-color: rgba(255,218,120,.12); box-shadow: inset 0 0 0 1px rgba(255,218,120,.03); }
.compare-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(255,255,255,.58);
}
.ai-compare-card h4 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}
.ai-compare-card ul { margin: 0; padding-left: 18px; }
.ai-compare-card li {
  margin-bottom: 10px;
  color: rgba(255,255,255,.74);
  line-height: 1.65;
  font-size: 13px;
}
.ai-link { grid-column: 1 / -1; margin-top: 2px; }

@media (max-width: 1200px) {
  .ai-solution {
    min-height: 780px;
    grid-template-columns: .48fr 1.2fr;
  }
  .ai-capabilities { grid-template-columns: repeat(2, 1fr); }
  .ai-compare { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .ai-solution {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 34px 24px;
    gap: 24px;
  }
  .ai-starburst {
    width: 260px; height: 260px; left: 50%; top: 28px; transform: translateX(-50%); opacity: .8;
  }
  .ai-solution .solution-icon { justify-self: start; margin: 6px 0 0 18px; width: 118px; height: 118px; }
  .ai-capabilities { grid-template-columns: 1fr; }
  .ai-capability { min-height: auto; }
  .ai-compare { grid-column: 1 / -1; grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ai-solution h3 { font-size: 34px; }
  .ai-lead { font-size: 15px !important; }
  .ai-starburst { opacity: .65; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-star, .ai-solution::before, .ai-badge span, .ai-icon::before, .ai-icon::after { animation: none !important; }
}


/* AI orbit refinement */
.ai-solution:hover {
  background:
    radial-gradient(circle at 12% 18%, rgba(89,176,255,.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255,211,97,.09), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(113,69,255,.18), transparent 26%),
    linear-gradient(135deg, #06101b 0%, #081626 46%, #050d17 100%);
  border-color: rgba(132,205,255,.24);
  box-shadow: var(--shadow-soft);
}
.ai-solution:hover::after { opacity: 0; }
.ai-solution::before { display: none; }
.ai-badge span { animation: none; }
.ai-orbit-field {
  position: absolute;
  left: 3%;
  top: 6%;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}
.ai-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(129,206,255,.16);
  box-shadow: inset 0 0 24px rgba(122,202,255,.04);
}
.orbit-ring-1 {
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  animation: aiOrbitFloat 30s linear infinite;
}
.orbit-ring-2 {
  width: 236px;
  height: 236px;
  transform: translate(-50%, -50%) rotate(24deg);
  border-style: dashed;
  border-color: rgba(255,216,115,.18);
  animation: aiOrbitFloatReverse 24s linear infinite;
}
.orbit-ring-3 {
  width: 152px;
  height: 152px;
  transform: translate(-50%, -50%) rotate(-18deg);
  border-color: rgba(148,117,255,.18);
  animation: aiOrbitFloat 18s linear infinite;
}
.orbit-star {
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.98) 0%, rgba(255,232,164,.92) 44%, rgba(103,188,255,.45) 72%, transparent 100%);
  box-shadow: 0 0 10px rgba(255,224,140,.48), 0 0 26px rgba(89,179,255,.18);
}
.orbit-star::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  opacity: .7;
}
.star-a { left: 11%; top: 20%; }
.star-b { right: 15%; bottom: 17%; width: 6px; height: 6px; }
.star-c { left: 50%; top: -4px; width: 7px; height: 7px; }
.star-d { left: 18%; bottom: 8%; width: 5px; height: 5px; }
.star-e { right: 12%; top: 28%; width: 6px; height: 6px; }
.star-f { left: 22%; top: 68%; width: 4px; height: 4px; }
@keyframes aiOrbitFloat { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes aiOrbitFloatReverse { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0deg); } }
@media (max-width: 900px) {
  .ai-orbit-field {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    opacity: .78;
  }
  .orbit-ring-1 { width: 260px; height: 260px; }
  .orbit-ring-2 { width: 188px; height: 188px; }
  .orbit-ring-3 { width: 120px; height: 120px; }
}
@media (max-width: 640px) {
  .ai-orbit-field { width: 250px; height: 250px; opacity: .68; }
  .orbit-ring-1 { width: 220px; height: 220px; }
  .orbit-ring-2 { width: 156px; height: 156px; }
  .orbit-ring-3 { width: 96px; height: 96px; }
}
@media (prefers-reduced-motion: reduce) {
  .ai-orbit-ring { animation: none !important; }
}


/* Brand is an explicit Home control */
a.brand { cursor: pointer; }
a.brand:focus-visible { outline: 2px solid rgba(126,211,255,.8); outline-offset: 6px; border-radius: 10px; }


/* Hero rotating verb — typography, color and layout remain unchanged */
.hero-verb-shell {
  display: inline-grid;
  vertical-align: baseline;
}
.hero-verb-shell > em {
  grid-area: 1 / 1;
  white-space: nowrap;
}
.hero-verb-measure {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}
.hero-verb {
  position: relative;
}


/* Stable hero verb box: the animated text no longer affects line metrics */
.hero-verb-shell {
  display: inline-grid;
  grid-template-columns: 1fr;
  position: relative;
  vertical-align: baseline;
  line-height: inherit;
  min-height: 1em;
}
.hero-verb-shell > em {
  grid-area: 1 / 1;
  line-height: inherit;
  white-space: nowrap;
}
.hero-verb-measure {
  visibility: hidden;
  display: inline-block;
  pointer-events: none;
  user-select: none;
}
.hero-verb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: inherit;
  white-space: nowrap;
}
