
:root {
  --ink: #102733;
  --muted: #586b74;
  --line: #d8e2e4;
  --paper: #f1f6f6;
  --orange: #ff5a16;
  --orange-dark: #d83e00;
  --night: #10343b;
  --aqua: #0c6972;
  --mint: #dff1ef;
  --canvas: #f8faf9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #ffb18f; color: #111; }

[data-reveal] {
  --reveal-delay: 0ms;
}
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay),
    transform .75s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay);
}
.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-shell { width: min(1420px, calc(100% - 64px)); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1420px, calc(100% - 64px));
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-bottom: 1px solid rgba(16,39,51,.12);
  animation: headerReveal .8s cubic-bezier(.22, 1, .36, 1) .08s both;
}
.brand-link { display: inline-flex; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 178px; height: auto; object-fit: contain; }
.brand--compact img { width: 210px; }
.brand--light img { filter: brightness(0) invert(1); }
.brand__mark { width: 38px; height: auto; fill: var(--orange); overflow: visible; }
.brand__mark path { transform-box: fill-box; transform-origin: center; transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
.brand:hover .brand__mark path:first-child { transform: translateX(-2px); }
.brand:hover .brand__mark path:last-child { transform: translateX(2px); }
.brand__word { font-size: 16px; font-weight: 780; letter-spacing: .17em; }
.brand--compact .brand__mark { width: 46px; }
.desktop-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; }
.desktop-nav a { color: #52656e; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 680;
  box-shadow: 0 12px 34px rgba(255,90,22,.23);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ff6e31; box-shadow: 0 16px 40px rgba(255,90,22,.32); }
.button span { transition: transform .25s ease; }
.button:hover span { transform: translate(3px, -3px); }
.button--small { min-height: 42px; padding: 0 18px; gap: 11px; font-size: 13px; }
.button--light { background: #fff; color: var(--ink); border-color: #fff; box-shadow: 0 14px 36px rgba(0,0,0,.16); }
.button--light:hover { background: #f5f5f5; }
.text-link { display: inline-flex; gap: 12px; align-items: center; font-size: 14px; font-weight: 680; color: #334c56; }
.text-link span { color: var(--aqua); }
.text-link:hover span { animation: arrowDown .75s ease infinite; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 1px solid rgba(16,39,51,.18); border-radius: 50%; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; width: 17px; height: 1px; background: var(--ink); }
.mobile-menu nav { position: absolute; right: 0; top: 52px; width: 260px; padding: 14px; border-radius: 18px; background: #fff; color: var(--ink); box-shadow: 0 22px 60px rgba(0,0,0,.28); }
.mobile-menu nav a { display: block; padding: 12px 10px; border-bottom: 1px solid #edf0f2; font-size: 14px; }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(105,190,186,.26), transparent 31%),
    radial-gradient(circle at 17% 42%, rgba(255,90,22,.10), transparent 34%),
    linear-gradient(125deg, #fbfcfb 0%, #f3f8f7 58%, #eef6f5 100%);
  color: var(--ink);
}
.hero__grid { position: absolute; inset: -54px; opacity: .36; background-image: linear-gradient(rgba(12,105,114,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(12,105,114,.055) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 88%); animation: gridDrift 18s linear infinite; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(1px); border: 1px solid rgba(12,105,114,.13); }
.hero__glow--one { width: 540px; height: 540px; right: -230px; top: 40px; box-shadow: inset 0 0 120px rgba(12,105,114,.05), 0 0 80px rgba(12,105,114,.04); animation: orbitOne 13s ease-in-out infinite; }
.hero__glow--two { width: 290px; height: 290px; right: 33%; top: 180px; background: rgba(255,90,22,.035); animation: orbitTwo 10s ease-in-out infinite reverse; }
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 86px; align-items: center; min-height: 785px; padding-top: 100px; padding-bottom: 54px; }
.hero__copy { padding-bottom: 18px; }
.hero__copy > * { animation: heroRise .85s cubic-bezier(.22, 1, .36, 1) both; }
.hero__copy > :nth-child(1) { animation-delay: .12s; }
.hero__copy > :nth-child(2) { animation-delay: .22s; }
.hero__copy > :nth-child(3) { animation-delay: .32s; }
.hero__copy > :nth-child(4) { animation-delay: .42s; }
.hero__copy > :nth-child(5) { animation-delay: .52s; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 11px; color: var(--aqua); font-size: 12px; font-weight: 720; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 2px; background: var(--orange); }
.eyebrow--dark { color: #62707d; }
.eyebrow--light { color: rgba(255,255,255,.72); }
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(54px, 5.3vw, 78px); line-height: .98; letter-spacing: -.056em; font-weight: 610; }
.hero h1 em { display: block; color: var(--orange); font-style: normal; }
.hero__lead { max-width: 600px; margin: 27px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
.hero__proof { display: flex; align-items: center; gap: 13px; margin-top: 42px; color: #60737c; font-size: 12px; line-height: 1.45; }
.hero__proof p { margin: 0; }
.hero__proof strong { color: var(--ink); font-size: 13px; font-weight: 680; }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack span { width: 35px; height: 35px; display: grid; place-items: center; border: 2px solid #f5f9f8; border-radius: 50%; background: #d9ecea; color: var(--ink); font-size: 11px; font-weight: 800; }
.avatar-stack span + span { margin-left: -9px; background: var(--orange); font-size: 16px; }

.command { position: relative; isolation: isolate; max-width: 610px; justify-self: end; width: 100%; overflow: hidden; border: 1px solid #cddddd; border-radius: 24px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 34px 90px rgba(31,73,77,.14), inset 0 1px 0 rgba(255,255,255,.9); animation: commandReveal .8s cubic-bezier(.22, 1, .36, 1) .28s both; text-rendering: geometricPrecision; -webkit-font-smoothing: antialiased; }
.command::before { content: ""; position: absolute; width: 230px; height: 230px; right: -80px; top: 110px; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,22,.09), transparent 68%); pointer-events: none; z-index: -1; }
.command::after { content: ""; position: absolute; top: 0; left: -35%; width: 24%; height: 2px; background: linear-gradient(90deg, transparent, #0c6972, transparent); animation: commandScan 5.5s ease-in-out 1.1s infinite; }
.command__topbar { height: 66px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dbe6e7; color: #314b55; font-size: 13px; }
.command__topbar > div { display: flex; align-items: center; gap: 9px; }
.command__dot { width: 10px; height: 10px; border-radius: 3px; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,22,.12); }
.command__status { color: #13757b; }
.command__body { padding: 28px; }
.command__title { display: flex; justify-content: space-between; align-items: flex-start; }
.command__title span { color: #6b7d85; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.command__title h2 { margin: 6px 0 0; font-size: 25px; letter-spacing: -.03em; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid #bddbd8; border-radius: 999px; background: #eaf6f4; color: #176f74 !important; font-size: 10px !important; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #55ddba; box-shadow: 0 0 0 4px rgba(85,221,186,.12); animation: livePulse 1.9s ease-out infinite; }
.command__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 23px; }
.command__metrics article { padding: 18px; border: 1px solid #d8e4e5; border-radius: 15px; background: #f4f8f8; }
.command__metrics span, .command__metrics small { display: block; color: #687b83; font-size: 11px; }
.command__metrics strong { display: block; margin: 8px 0 3px; font-size: 29px; letter-spacing: -.04em; }
.command__flow { margin-top: 14px; padding: 19px; border: 1px solid #d8e4e5; border-radius: 15px; background: #f7faf9; }
.flow-title { display: flex; justify-content: space-between; margin-bottom: 17px; font-size: 11px; color: #405861; }
.flow-title small { color: #14747a; }
.flow-row { display: grid; grid-template-columns: 108px 1fr; gap: 14px; align-items: center; margin-top: 12px; color: #697b83; font-size: 11px; }
.flow-row i { height: 5px; position: relative; display: block; overflow: hidden; border-radius: 99px; background: #dbe7e7; }
.flow-row i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--bar); background: linear-gradient(90deg, var(--orange), #ff9e73, var(--orange)); background-size: 200% 100%; border-radius: inherit; transform-origin: left; animation: flowLoad 1.4s cubic-bezier(.22, 1, .36, 1) .8s both, flowShimmer 2.8s linear 2.2s infinite; }
.command__feed { margin-top: 12px; }
.command__feed article { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 14px 4px; border-top: 1px solid #dce6e7; }
.feed-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #e5f2f0; color: #167078; }
.feed-icon svg { width: 18px; }
.command__feed strong, .command__feed small { display: block; }
.command__feed strong { font-size: 12px; }
.command__feed small { margin-top: 3px; color: #77878d; font-size: 9px; }
.command__feed b { color: #73858c; font-size: 9px; font-weight: 500; }

.method { position: relative; isolation: isolate; max-width: 610px; justify-self: end; width: 100%; overflow: hidden; border: 1px solid #cddddd; border-radius: 26px; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 34px 90px rgba(31,73,77,.14), inset 0 1px 0 rgba(255,255,255,.9); animation: commandReveal .8s cubic-bezier(.22, 1, .36, 1) .28s both; }
.method::before { content: ""; position: absolute; width: 310px; height: 310px; right: -145px; top: 95px; border-radius: 50%; background: radial-gradient(circle, rgba(255,90,22,.11), transparent 67%); pointer-events: none; z-index: -1; }
.method::after { content: ""; position: absolute; top: 0; left: -35%; width: 24%; height: 2px; background: linear-gradient(90deg, transparent, var(--orange), transparent); animation: commandScan 5.5s ease-in-out 1.1s infinite; }
.method__topbar { min-height: 66px; padding: 0 25px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dbe6e7; color: #314b55; font-size: 12px; }
.method__topbar > div { display: flex; align-items: center; gap: 10px; }
.method__topbar > span { color: #13757b; }
.method__dot { width: 10px; height: 10px; border-radius: 3px; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,22,.12); }
.method__body { padding: 29px; }
.method__eyebrow { margin: 0; color: #6b7d85; font-size: 10px; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
.method h2 { max-width: 470px; margin: 8px 0 22px; font-size: 27px; line-height: 1.15; letter-spacing: -.035em; }
.method__steps { display: grid; gap: 8px; }
.method__step { min-height: 67px; display: grid; grid-template-columns: 42px 1fr 24px; gap: 13px; align-items: center; padding: 10px 14px; border: 1px solid #dbe5e6; border-radius: 14px; background: rgba(247,250,249,.92); transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; animation: methodStep 12s ease-in-out infinite; }
.method__step:nth-child(2) { animation-delay: 3s; }
.method__step:nth-child(3) { animation-delay: 6s; }
.method__step:nth-child(4) { animation-delay: 9s; }
.method__step > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #e8f3f2; color: var(--aqua); font-family: Consolas, "SFMono-Regular", monospace; font-size: 10px; font-weight: 760; transition: background .25s ease, color .25s ease; }
.method__step strong, .method__step small { display: block; }
.method__step strong { margin-bottom: 4px; font-size: 14px; }
.method__step small { color: #6a7c84; font-size: 10px; line-height: 1.35; }
.method__step > i { color: #8c9ba0; font-style: normal; font-size: 14px; transition: transform .25s ease, color .25s ease; }
.method__step:hover { transform: translateX(4px); border-color: #ffb99c; background: #fff7f3; box-shadow: 0 10px 28px rgba(255,90,22,.09); }
.method__step:hover > span { background: var(--orange); color: #fff; }
.method__step:hover > i { color: var(--orange); transform: translate(2px,-2px); }
.method__outcome { margin-top: 15px; padding: 16px 18px; display: flex; justify-content: space-between; gap: 18px; align-items: center; border-radius: 14px; background: var(--night); color: #fff; }
.method__outcome span { color: #a9d4d3; font-size: 9px; font-weight: 720; letter-spacing: .12em; text-transform: uppercase; }
.method__outcome strong { font-size: 12px; text-align: right; }
.hero__bottom { position: relative; z-index: 3; border-top: 1px solid #d8e3e3; background: rgba(232,243,242,.78); }
.hero__bottom-inner { min-height: 75px; display: flex; align-items: center; gap: 36px; }
.hero__bottom p { margin: 0; color: #6a7c84; font-size: 11px; text-transform: uppercase; letter-spacing: .13em; white-space: nowrap; }
.sector-list { width: 100%; display: flex; align-items: center; justify-content: space-between; color: #415a63; font-size: 12px; }
.sector-list i { width: 3px; height: 3px; border-radius: 50%; background: var(--orange); }

.solutions-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff8f4 0%, #fff 34%, #fff 100%); border-top: 1px solid #ffd8c6; }
.solutions-section::before { content: ""; position: absolute; width: 520px; height: 520px; right: -220px; top: -280px; border-radius: 50%; border: 1px solid rgba(255,90,22,.15); box-shadow: inset 0 0 90px rgba(255,90,22,.035); }
.solutions-section__accent { position: absolute; left: max(32px, calc((100vw - 1420px) / 2)); top: 68px; color: rgba(255,90,22,.075); font-family: Consolas, "SFMono-Regular", monospace; font-size: 150px; font-weight: 800; line-height: 1; pointer-events: none; }
.intro { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; padding-top: 142px; }
.section-heading h2, .difference h2, .numbers h2, .partners h2, .faq h2, .cta h2 { margin: 0; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.04; letter-spacing: -.045em; font-weight: 610; }
.section-intro { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 56px; padding-bottom: 128px; }
.service-card { position: relative; min-height: 292px; border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #ffc7af; box-shadow: 0 22px 56px rgba(28,40,52,.10); }
.service-card--featured { grid-column: span 2; background: linear-gradient(135deg, #f3f7f8 0%, #fff 62%); }
.service-card summary { min-height: 290px; padding: 28px; display: flex; flex-direction: column; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-card__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: #fff0ea; color: var(--orange); transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .3s ease; }
.service-card:hover .service-card__icon { transform: translateY(-4px) rotate(-4deg) scale(1.06); background: #ffe5da; }
.service-card__icon svg { width: 25px; }
.service-card__content { display: flex; flex-direction: column; margin-top: auto; }
.service-card__content small { margin-bottom: 9px; color: var(--orange-dark); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.service-card__content strong { font-size: 25px; letter-spacing: -.03em; }
.service-card__content > span { max-width: 420px; margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.service-card summary > i { position: absolute; right: 25px; top: 28px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-size: 19px; transition: transform .2s ease; }
.service-card[open] summary > i { transform: rotate(45deg); }
.service-card > p { margin: -62px 28px 25px; padding: 18px 46px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.55; }
.service-card[open] summary { min-height: 292px; padding-bottom: 78px; }

.difference { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(135deg, #10343b 0%, #164a50 100%); color: #fff; }
.difference::before { content: ""; position: absolute; width: 520px; height: 520px; left: -240px; top: -180px; border-radius: 50%; border: 1px solid rgba(184,244,235,.16); box-shadow: 0 0 80px rgba(184,244,235,.08), inset 0 0 90px rgba(184,244,235,.04); }
.difference__inner { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.difference__copy > p:not(.eyebrow) { margin: 26px 0 32px; max-width: 480px; color: rgba(255,255,255,.61); font-size: 16px; line-height: 1.75; }
.principles { border-top: 1px solid rgba(255,255,255,.12); }
.principles article { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.principles article > span { color: var(--orange); font-family: Consolas, "SFMono-Regular", monospace; font-size: 11px; }
.principles article:hover > span { animation: numberBlink .8s ease; }
.principles h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; }
.principles p { margin: 0; color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.6; }

.numbers { padding: 120px 0 126px; background: var(--paper); }
.numbers__heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; align-items: end; }
.numbers__heading .eyebrow { grid-column: 1 / -1; }
.numbers__heading > p:last-child { margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid #cfd6db; border-bottom: 1px solid #cfd6db; }
.numbers__grid article { min-height: 185px; padding: 34px 24px; border-right: 1px solid #cfd6db; }
.numbers__grid article:first-child { padding-left: 0; }
.numbers__grid article:last-child { border-right: 0; }
.numbers__grid strong { display: block; color: var(--orange); font-size: clamp(32px, 3vw, 43px); letter-spacing: -.05em; }
.numbers__grid span { display: block; max-width: 145px; margin-top: 18px; color: #4f5a65; font-size: 12px; line-height: 1.5; }

.partners { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; padding-top: 130px; padding-bottom: 130px; }
.partners h2 { max-width: 550px; font-size: clamp(38px, 4vw, 55px); }
.partner-wall { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid #cfd8df; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: inset 0 0 0 1px rgba(207,216,223,.16); }
.partner-wall span { height: 110px; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #4b5660; font-size: 23px; font-weight: 700; letter-spacing: -.03em; background: #fff; }
.motion-ready .partner-wall.is-visible span { animation: partnerIn .5s ease var(--partner-delay) both; }
.partner-wall span { transition: color .25s ease, background .25s ease; }
.partner-wall span:hover { color: var(--orange-dark); background: #fff8f5; }
.partner-wall span:nth-child(2n) { border-right: 0; }
.partner-wall span:last-child { grid-column: span 2; border-right: 0; border-bottom: 0; color: #536f7b; }

.faq { padding: 120px 0 130px; border-top: 1px solid #dbe5e6; background: linear-gradient(180deg, #eef6f5 0%, #f8faf9 100%); }
.faq__inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; align-items: start; }
.faq__heading { position: sticky; top: 36px; }
.faq__heading h2 { max-width: 560px; }
.faq__heading > p:last-child { max-width: 510px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.faq__list { border-top: 1px solid #cbdadb; }
.faq__list details { border-bottom: 1px solid #cbdadb; }
.faq__list summary { min-height: 78px; display: grid; grid-template-columns: 1fr 34px; gap: 20px; align-items: center; color: var(--ink); font-size: 17px; font-weight: 680; cursor: pointer; list-style: none; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary span { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid #b8cbcd; border-radius: 50%; color: var(--aqua); font-size: 18px; font-weight: 450; transition: transform .2s ease, border-color .2s ease, color .2s ease; }
.faq__list details[open] summary span { transform: rotate(45deg); border-color: var(--orange); color: var(--orange); }
.faq__list details p { max-width: 760px; margin: -4px 54px 26px 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.cta { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; border-radius: 34px; background: var(--orange); color: #fff; }
.cta__mesh { position: absolute; inset: -12%; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.23), transparent 26%), radial-gradient(circle at 80% 82%, rgba(7,17,28,.24), transparent 34%), linear-gradient(35deg, transparent 48%, rgba(255,255,255,.08) 49%, transparent 50%); animation: ctaDrift 10s ease-in-out infinite; }
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.cta::before { width: 420px; height: 420px; left: -180px; top: -190px; }
.cta::after { width: 300px; height: 300px; right: -80px; bottom: -120px; }
.cta__content { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: .88fr 1.12fr; gap: 76px; align-items: center; padding: 72px; }
.cta__copy { max-width: 570px; text-align: left; }
.cta__content .brand { justify-content: flex-start; margin-bottom: 34px; }
.cta__content .brand__mark { fill: #fff; }
.cta__content .eyebrow { justify-content: flex-start; color: rgba(255,255,255,.76); }
.cta__content .eyebrow > span { background: #fff; }
.cta__content h2 { font-size: clamp(44px, 4.4vw, 66px); }
.cta__copy > p:not(.eyebrow) { margin: 24px 0 0; max-width: 550px; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; }

.contact-form { width: 100%; padding: 34px; border: 1px solid rgba(255,255,255,.75); border-radius: 24px; background: #fff; color: var(--ink); box-shadow: 0 28px 70px rgba(86,22,0,.24); }
.contact-form__heading { display: flex; flex-direction: column; gap: 5px; margin-bottom: 24px; }
.contact-form__heading span { color: var(--orange-dark); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-form__heading strong { font-size: 27px; letter-spacing: -.03em; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form label > span { color: #4b5864; font-size: 12px; font-weight: 650; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #d5dde3; border-radius: 11px; background: #f8fafb; color: var(--ink); font: inherit; font-size: 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input { height: 46px; padding: 0 13px; }
.contact-form textarea { min-height: 112px; padding: 12px 13px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255,90,22,.12); }
.contact-form__phone { position: relative; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.contact-form__field-label { color: #4b5864; font-size: 12px; font-weight: 650; }
.phone-control { position: relative; width: 100%; height: 46px; display: grid; grid-template-columns: 56px auto minmax(0, 1fr); align-items: center; border: 1px solid #d5dde3; border-radius: 11px; background: #f8fafb; color: var(--ink); font-size: 13px; font-weight: 500; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.phone-control:focus-within { border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(255,90,22,.12); }
.country-select { position: relative; height: 44px; }
.country-select__trigger { width: 56px; height: 44px; padding: 0 8px; display: flex; align-items: center; justify-content: center; gap: 6px; border: 0; border-radius: 10px 0 0 10px; background: transparent; cursor: pointer; }
.country-select__trigger img, .country-select__option img { display: block; object-fit: cover; border: 1px solid rgba(8,31,39,.12); border-radius: 3px; box-shadow: 0 1px 3px rgba(8,31,39,.12); }
.country-select__chevron { width: 7px; height: 7px; border-right: 1.5px solid #40515d; border-bottom: 1.5px solid #40515d; transform: translateY(-2px) rotate(45deg); transition: transform .18s ease; }
.country-select__trigger[aria-expanded="true"] .country-select__chevron { transform: translateY(2px) rotate(225deg); }
.country-select__panel { position: absolute; z-index: 80; top: calc(100% + 10px); right: 0; width: 340px; max-width: calc(100vw - 48px); overflow: hidden; border: 1px solid #d5dde3; border-radius: 14px; background: #fff; box-shadow: 0 24px 60px rgba(8,31,39,.2); }
.country-select__panel[hidden] { display: none; }
.country-select__search { position: relative; display: block !important; border-bottom: 1px solid #e3e9ed; }
.country-select__search > span[aria-hidden="true"] { position: absolute; z-index: 1; left: 14px; top: 50%; color: #71808a; font-size: 19px; transform: translateY(-52%); }
.contact-form .country-select__search input { height: 48px; padding: 0 14px 0 40px; border: 0; border-radius: 0; background: #fff; box-shadow: none; font-size: 13px; }
.contact-form .country-select__search input:focus { border: 0; box-shadow: none; }
.country-select__list { max-height: 296px; overflow-y: auto; overscroll-behavior: contain; padding: 5px 0; scrollbar-color: #aeb9bf transparent; scrollbar-width: thin; }
.country-select__option { width: 100%; min-height: 43px; padding: 7px 13px; display: grid; grid-template-columns: 30px 58px minmax(0,1fr); gap: 9px; align-items: center; border: 0; background: #fff; color: var(--ink); font: inherit; font-size: 12px; text-align: left; cursor: pointer; }
.country-select__option:hover, .country-select__option:focus-visible { background: #f2f7f7; outline: none; }
.country-select__option[aria-selected="true"] { background: #eaf5f4; }
.country-select__dial { color: var(--aqua); font-family: Consolas, "SFMono-Regular", monospace; font-size: 11px; font-weight: 760; }
.country-select__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.country-select__empty { margin: 0; padding: 22px 14px; color: #6e7c85; font-size: 12px; text-align: center; }
.phone-control__prefix { height: 24px; display: flex; align-items: center; padding: 0 10px; border-left: 1px solid #d5dde3; border-right: 1px solid #d5dde3; color: var(--aqua); font-family: Consolas, "SFMono-Regular", monospace; font-size: 12px; font-weight: 760; }
.contact-form .phone-control input { min-width: 0; height: 44px; padding: 0 10px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.contact-form .phone-control input:focus { border: 0; background: transparent; box-shadow: none; }
.contact-form__phone > small { margin-top: -2px; color: #738088; font-size: 9px; font-weight: 500; line-height: 1.35; }
.contact-form__message { grid-column: 1 / -1; }
.contact-form__captcha { grid-column: 1 / -1; min-height: 78px; display: flex; align-items: center; overflow: hidden; }
.contact-form__captcha--pending { min-height: 66px; padding: 14px 16px; border: 1px dashed #d5dde3; border-radius: 11px; background: #f8fafb; color: #68747e; font-size: 12px; }
.contact-form__submit { width: 100%; min-height: 50px; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 999px; background: var(--night); color: #fff; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.contact-form__submit:hover { transform: translateY(-2px); background: #14293a; }
.contact-form__submit:disabled { cursor: wait; opacity: .72; transform: none; }
.contact-form__submit span { transition: transform .2s ease; }
.contact-form__submit:hover span { transform: translate(3px,-3px); }
.contact-form__note { margin: 13px 4px 0 !important; color: #68747e !important; font-size: 10px !important; line-height: 1.45 !important; text-align: center; }
.contact-form__note--success { color: #19704a !important; }
.contact-form__note--error { color: #a52c24 !important; }
.contact-form__note--config { color: #8a5a18 !important; }
.contact-form__note a { text-decoration: underline; text-underline-offset: 2px; }
.contact-form__trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { position: relative; min-height: 540px; margin-top: 110px; overflow: hidden; background: linear-gradient(132deg, #081f27 0%, #0d3038 56%, #12434a 100%); color: #fff; }
.site-footer::before { content: ""; position: absolute; top: -220px; right: -130px; width: 620px; height: 620px; border: 1px solid rgba(132,222,218,.17); border-radius: 50%; }
.site-footer::after { content: ""; position: absolute; right: 7%; bottom: -180px; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(255,91,22,.2), rgba(255,91,22,0) 69%); filter: blur(4px); }
.site-footer__orbit { position: absolute; top: -75px; right: 18%; width: 170px; height: 170px; border: 35px solid rgba(255,91,22,.1); border-radius: 50%; }
.site-footer__inner { position: relative; z-index: 1; min-height: 540px; padding-top: 92px; padding-bottom: 34px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: 74px 100px; align-content: space-between; }
.site-footer__lead .brand { margin-bottom: 60px; }
.site-footer__lead .brand img { width: 228px; }
.site-footer__lead .eyebrow { margin-bottom: 20px; }
.site-footer__lead h2 { margin: 0; max-width: 760px; font-size: clamp(48px, 5vw, 76px); line-height: .98; letter-spacing: -.055em; }
.site-footer__lead h2 em { display: block; color: var(--orange); font-style: normal; }
.site-footer__details { align-self: end; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.18); }
.site-footer__contact { min-height: 126px; padding: 24px 20px 22px 0; display: flex; flex-direction: column; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.18); }
.site-footer__contact:nth-child(2) { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.site-footer__contact > span { color: #87c5c5; font-size: 10px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__contact address { color: rgba(255,255,255,.88); font-size: 13px; font-style: normal; font-weight: 560; line-height: 1.7; }
.site-footer__phone { width: fit-content; color: #fff; font-size: 25px; font-weight: 720; letter-spacing: -.03em; transition: color .2s ease; }
.site-footer__phone:hover { color: var(--orange); }
.site-footer__contact small { color: rgba(255,255,255,.55); font-size: 10px; }
.site-footer__cta { grid-column: 1 / -1; min-height: 66px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; background: var(--orange); color: #fff; font-size: 14px; font-weight: 720; transition: background .2s ease, padding .2s ease; }
.site-footer__cta:hover { padding-left: 28px; background: #ec4610; }
.site-footer__cta span { font-size: 18px; }
.site-footer__bottom { grid-column: 1 / -1; padding-top: 28px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); }
.site-footer__bottom small { color: rgba(255,255,255,.52); font-size: 10px; }
.site-footer__bottom p { margin: 0; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.74); font-size: 10px; font-weight: 690; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__bottom i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

@keyframes headerReveal {
  from { opacity: 0; translate: 0 -18px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes commandReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes commandScan {
  0%, 16% { left: -35%; opacity: 0; }
  28% { opacity: 1; }
  64% { opacity: 1; }
  78%, 100% { left: 112%; opacity: 0; }
}
@keyframes gridDrift {
  to { transform: translate3d(54px, 54px, 0); }
}
@keyframes orbitOne {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-28px, 22px, 0) scale(1.06); }
}
@keyframes orbitTwo {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .75; }
  50% { transform: translate3d(22px, -18px, 0); opacity: 1; }
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(85,221,186,.42); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(85,221,186,0); }
}
@keyframes flowLoad {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes flowShimmer {
  to { background-position: -200% 0; }
}
@keyframes partnerIn {
  from { color: #9ba5ad; }
  to { color: #4b5660; }
}
@keyframes ctaDrift {
  0%, 100% { transform: translate3d(-1%, -1%, 0) scale(1); }
  50% { transform: translate3d(2%, 2%, 0) scale(1.04); }
}
@keyframes arrowDown {
  50% { transform: translateY(4px); }
}
@keyframes numberBlink {
  50% { color: #fff; text-shadow: 0 0 18px rgba(255,90,22,.8); }
}
@keyframes methodStep {
  0%, 20%, 100% { border-color: #dbe5e6; background: rgba(247,250,249,.92); box-shadow: none; }
  5%, 15% { border-color: #ffb99c; background: #fff7f3; box-shadow: 0 10px 28px rgba(255,90,22,.09); }
}

@media (max-width: 980px) {
  .desktop-nav, .site-header > .button { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; }
  .hero__content { grid-template-columns: 1fr; gap: 55px; padding-top: 160px; padding-bottom: 70px; }
  .hero__copy { max-width: 720px; }
  .method { justify-self: center; max-width: 680px; }
  .hero__bottom-inner { flex-direction: column; align-items: flex-start; gap: 17px; padding-top: 22px; padding-bottom: 22px; }
  .sector-list { flex-wrap: wrap; justify-content: flex-start; gap: 14px 25px; }
  .intro, .difference__inner, .numbers__heading, .partners, .faq__inner { grid-template-columns: 1fr; }
  .intro { gap: 28px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .difference__inner { gap: 60px; }
  .numbers__heading { gap: 26px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid article:nth-child(2) { border-right: 0; }
  .numbers__grid article:nth-child(-n+2) { border-bottom: 1px solid #cfd6db; }
  .numbers__grid article:nth-child(3) { padding-left: 0; }
  .partners { gap: 48px; }
  .faq__inner { gap: 48px; }
  .faq__heading { position: static; }
  .cta__content { grid-template-columns: 1fr; gap: 46px; padding: 58px; }
  .cta__copy { max-width: 690px; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 60px; }
  .site-footer__details { max-width: 680px; }
}

@media (max-width: 640px) {
  .section-shell, .site-header { width: min(100% - 30px, 1420px); }
  .site-header { height: 78px; }
  .brand img { width: 150px; }
  .brand--compact img { width: 184px; }
  .hero__content { padding-top: 130px; gap: 45px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 22px; }
  .text-link { justify-content: center; }
  .method__body { padding: 18px; }
  .method__topbar { padding: 0 16px; }
  .method__topbar > span { display: none; }
  .method h2 { font-size: 24px; }
  .method__step { grid-template-columns: 38px 1fr 18px; padding: 9px 10px; }
  .method__step small { font-size: 9px; }
  .method__outcome { align-items: flex-start; flex-direction: column; }
  .method__outcome strong { text-align: left; }
  .command__metrics { grid-template-columns: 1fr; }
  .command__feed article { grid-template-columns: 34px 1fr; }
  .command__feed b { display: none; }
  .hero__bottom { display: none; }
  .intro { padding-top: 88px; }
  .section-heading h2, .difference h2, .numbers h2, .partners h2, .faq h2 { font-size: 40px; }
  .services { grid-template-columns: 1fr; padding-top: 42px; padding-bottom: 90px; }
  .service-card--featured { grid-column: span 1; }
  .difference { padding: 90px 0; }
  .numbers { padding: 90px 0; }
  .numbers__grid { grid-template-columns: 1fr; margin-top: 45px; }
  .numbers__grid article { min-height: auto; padding: 25px 0; border-right: 0; border-bottom: 1px solid #cfd6db; }
  .numbers__grid article:last-child { border-bottom: 0; }
  .partners { padding-top: 90px; padding-bottom: 90px; }
  .faq { padding: 88px 0 95px; }
  .faq__list summary { min-height: 72px; font-size: 15px; }
  .faq__list details p { margin-right: 0; }
  .partner-wall span { height: 90px; font-size: 18px; }
  .cta { width: 100%; border-radius: 0; min-height: 500px; }
  .cta__content { padding: 70px 20px; gap: 38px; }
  .cta__content h2 { font-size: 45px; }
  .contact-form { padding: 24px 18px; border-radius: 20px; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__message { grid-column: auto; }
  .phone-control { grid-template-columns: 56px auto minmax(0, 1fr); }
  .country-select__panel { right: auto; left: 0; width: min(340px, calc(100vw - 76px)); }
  .contact-form__captcha { grid-column: auto; }
  .contact-form__captcha { transform: scale(.88); transform-origin: left center; width: 114%; }
  .contact-form__note { margin-top: 17px !important; }
  .site-footer { min-height: auto; margin-top: 70px; }
  .site-footer__inner { min-height: auto; padding-top: 70px; padding-bottom: 28px; gap: 48px; }
  .site-footer__lead .brand { margin-bottom: 45px; }
  .site-footer__lead .brand img { width: 190px; }
  .site-footer__lead h2 { font-size: 43px; }
  .site-footer__details { grid-template-columns: 1fr; }
  .site-footer__contact { min-height: auto; padding: 22px 0; }
  .site-footer__contact:nth-child(2) { padding-left: 0; border-left: 0; }
  .site-footer__cta { min-height: 62px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-footer__bottom p { flex-wrap: wrap; gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}
