/* SecOps Circle — expressive tech design, September 2026.
   Kept separate from component styles so the visual system has one entry point. */
:root {
  --cyan: #087f91;
  --radius: 20px;
  --radius-sm: 10px;
  --accent-bright: #59e1ee;
  --panel: #ffffff;
  --panel-raised: #f0f6fa;
  --hero-ink: #e9f6ff;
  --glow: rgba(17, 178, 207, .13);
}
[data-theme="dark"] {
  --white: #080f1a;
  --off-white: #101c2b;
  --gray-100: #0c1623;
  --gray-200: #26384b;
  --text: #edf5fc;
  --text-muted: #a7b8c9;
  --border: #26384b;
  --cyan: #59e1ee;
  --blue: #7abaff;
  --panel: #101d2c;
  --panel-raised: #142539;
  --shadow: 0 16px 48px rgba(0, 0, 0, .18);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, .3);
}
body { background-image: radial-gradient(ellipse at 0 20%, var(--glow), transparent 40%); }
::selection { background: #59e1ee; color: #081521; }
header { background: transparent; }
.navbar, [data-theme="dark"] .navbar { background: color-mix(in srgb, var(--white) 88%, transparent); border-color: var(--border); }
.navbar .container { height: 80px; }
.nav-links a { font-size: .84rem; letter-spacing: -.01em; }
.nav-links a::after { height: 1px; bottom: -9px; }
.btn { border-radius: 10px; padding: 14px 23px; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.btn-primary, [data-theme="dark"] .btn-primary { background: #59e1ee; color: #061522; box-shadow: 0 5px 22px rgba(32, 200, 216, .13); }
.btn-primary:hover, [data-theme="dark"] .btn-primary:hover { background: #9af1f7; color: #061522; box-shadow: 0 7px 30px rgba(32, 200, 216, .23); }
.btn-secondary { border-width: 1px; background: var(--panel); }
.btn svg { transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }
.btn-theme { border-radius: 10px; font-size: 0; }
.btn-theme #theme-icon { font-size: 18px; filter: grayscale(1); }
.section-tag { border: 0; border-radius: 0; padding: 0; background: none; font-size: .7rem; letter-spacing: .15em; color: var(--cyan); }
.section-tag::before { width: 18px; height: 1px; border-radius: 0; background: currentColor; }
section { padding: clamp(64px, 7.5vw, 104px) 0; }
.section-header { margin-bottom: 44px; }
h2 { font-size: clamp(1.65rem, 2.8vw, 2.25rem); font-weight: 600; }
.hero, .page-hero {
  margin: 16px 24px 0;
  border: 1px solid #24435d;
  border-radius: 28px;
  background: radial-gradient(ellipse at 90% 25%, #143653 0%, transparent 52%), #0b1929;
  padding: 76px 0;
  isolation: isolate;
}
.hero::before, .page-hero::before {
  background-image: linear-gradient(rgba(115,193,233,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(115,193,233,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(100deg, transparent, #000 50%);
  pointer-events: none;
}
.hero .container, .page-hero .container { width: 100%; }
.hero-grid { grid-template-columns: 1fr 1fr; gap: 54px; }
.hero-content { max-width: 530px; text-align: left; }
.hero-content h1, .page-hero h1, .page-hero.calm-heading h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.2; letter-spacing: -.025em; text-wrap: balance; }
.hero-content h1 span { color: #69e6f2; }
.hero-content p, .page-hero p { color: #b8cbdc; font-size: 1rem; line-height: 1.8; }
.hero-content .section-tag, .page-hero .section-tag { color: #69e6f2; background: none; border: 0; padding: 0; }
.hero-cta { gap: 10px 18px; justify-content: flex-start; }
.hero-content .btn-ghost { font-size: .875rem; }
.hero-capabilities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; color: #9bb7cc; font-size: .7rem; letter-spacing: .08em; }
.hero-capabilities span + span::before { content: '/'; color: #4f748f; margin-right: 10px; }
.ops-console { position: relative; width: 100%; max-width: 490px; margin-left: auto; padding: 23px; border: 1px solid #35556b; border-radius: 22px; background: linear-gradient(135deg, rgba(21,46,68,.85), rgba(5,18,31,.95)); box-shadow: 0 30px 80px #030b174d; }
.ops-console::before { content: ''; position: absolute; inset: -1px 25% auto; height: 1px; background: #73edff; box-shadow: 0 0 20px #59e1ee; }
.ops-console-head, .ops-console-foot { display: flex; justify-content: space-between; gap: 16px; color: #acc5d8; font: 10px/1.5 ui-monospace, monospace; letter-spacing: .09em; }
.ops-console-head span:last-child { color: #59e1ee; }
.ops-map { position: relative; aspect-ratio: 1.35; margin: 14px 0; }
.ops-orbit { width: 100%; height: 100%; overflow: visible; }

.ops-core { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 94px; height: 94px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: #102b42; border: 1px solid #458aac; box-shadow: 0 0 0 9px #59e1ee08, 0 0 50px #59e1ee14; }
.ops-core strong { color: #f4fcff; font-size: 1.5rem; font-weight: 600; letter-spacing: -.04em; }
.ops-core span { color: #69e6f2; font: 9px/2 ui-monospace,monospace; letter-spacing: .12em; }
.ops-node { position: absolute; padding: 10px 13px; border: 1px solid #376078; border-radius: 8px; background: #10263a; color: #dbedf7; font-size: .68rem; box-shadow: 0 8px 20px #0002; }
.ops-node b { color: #59e1ee; margin-right: 8px; font: 10px ui-monospace,monospace; }
.ops-node-a { left: 1%; top: 17%; } .ops-node-b { right: 0; top: 35%; } .ops-node-c { left: 7%; bottom: 10%; }
.ops-console-foot { border-top: 1px solid #2d485e; padding-top: 16px; font-size: 9px; }
.trusted-marquee { margin-top: 28px; border-block: 1px solid var(--border); background: transparent; padding: 25px 0; }
.marquee-track { animation-duration: 46s; }
.marquee-track span { color: var(--text-muted); font-weight: 500; }
.marquee-caption { padding-top: 14px; }
.positioning-layout { grid-template-columns: 1fr 1.08fr; gap: 64px; }
.positioning-image { position: relative; }
.positioning-image img { border-radius: 22px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.positioning-image figcaption { position: absolute; bottom: 18px; left: 18px; right: 18px; border: 1px solid #a7ccdf40; padding: 12px 16px; border-radius: 9px; background: #071627d9; color: #e7f4fc; font-size: .75rem; backdrop-filter: blur(10px); }
.home-expertise .section-header { max-width: 680px; margin-left: 0; text-align: left; }
.home-expertise .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.home-expertise .service-card:first-child { grid-column: span 2; background: linear-gradient(135deg, #12334b, #0d2033); color: #eef8ff; }
.home-expertise .service-card:first-child h3 { color: #eef8ff; font-size: 1.6rem; }
.home-expertise .service-card:first-child p { color: #b9d1e3; max-width: 440px; }
.home-expertise .service-card:first-child .service-card-link, .home-expertise .service-card:first-child .service-cat-tag { color: #69e6f2; }
.service-card { border-radius: 18px; background: var(--panel); padding: 30px; transition: transform .22s, border-color .22s, box-shadow .22s; }
.service-card::before { height: 1px; }
.service-card::after { content: ''; pointer-events: none; position: absolute; inset: 0; opacity: 0; background: radial-gradient(260px circle at var(--spot-x, 50%) var(--spot-y, 30%), #59e1ee12, transparent 75%); transition: opacity .22s; }
.service-card:hover::after, .service-card:focus-within::after { opacity: 1; }
.service-card:focus-within { border-color: var(--cyan); box-shadow: var(--shadow-lg); }
.service-card:focus-within::before { transform: scaleX(1); }
.service-card h3 { font-size: 1.18rem; font-weight: 600; }
.service-card-link { position: relative; z-index: 1; min-height: 44px; font-size: .84rem; }
.service-card p { line-height: 1.75; }
.service-cat-tag { padding: 5px 9px; border-radius: 5px; font-size: .65rem; letter-spacing: .09em; align-self: flex-start; }
[data-theme="dark"] .service-cat-tag.advisory, [data-theme="dark"] .acc-badge-blue { color: #8cc5ff; }
[data-theme="dark"] .service-cat-tag.ai-security, [data-theme="dark"] .acc-badge-purple { color: #c4acff; }
[data-theme="dark"] .acc-badge-sky, [data-theme="dark"] .service-cat-tag.data-security { color: #66ddf1; }
[data-theme="dark"] .open-badge { color: #70e5bd; }
.feature-item { background: var(--panel); border: 1px solid var(--border); padding: 25px; border-radius: 16px; }
.feature-icon { border-radius: 12px; background: var(--glow); }
.process-step { border-radius: 18px; background: var(--panel); text-align: left; }
.process-step::before { font-size: 2rem; font-weight: 500; color: var(--cyan); font-family: ui-monospace, monospace; }
.service-detail-card, .form-card, .accordion-item, .job-card { border-radius: 20px; box-shadow: var(--shadow); }
.form-group input, .form-group textarea, .form-group select { background: var(--white); border-radius: 9px; }
.faq-item { border-radius: 12px; background: var(--panel); }
.faq-item summary { min-height: 54px; }
.kb-filter .kb-tag { min-height: 44px; }
.kb-filter .kb-tag.active { color: #061522; background: #59e1ee; border-color: #59e1ee; }
.cta-banner { border: 1px solid #35556b; border-radius: 24px; background: radial-gradient(ellipse at 100% 0%, #1a4860, transparent 70%), #102137; }
.breadcrumb { border-bottom: 0; background: transparent; }
.ai-invitation { padding-top: 0; }
.ai-invitation .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; }
.ai-invitation-inner { border: 1px solid var(--border); border-radius: 20px; padding: 28px !important; background: var(--panel); }
.ai-symbol { width: 68px; height: 68px; border: 1px solid var(--cyan); border-radius: 18px; display: grid; place-items: center; color: var(--cyan); font: 600 1.25rem ui-monospace,monospace; background: var(--glow); }
.ai-invitation h2 { font-size: 1.35rem; margin-bottom: 6px; }
.ai-invitation p { font-size: .9rem; }
footer { border-top: 1px solid #29415a; background: #07111e; }
footer .logo-secops { color: #eef8ff; }
footer .logo-circle { color: #59e1ee; }
.motion-toggle { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; min-height: 44px; border: 1px solid #395168; border-radius: 8px; background: transparent; color: #d8e9f6; cursor: pointer; font: inherit; font-size: .75rem; }
.motion-toggle:hover { border-color: #59e1ee; }
.motion-toggle[hidden] { display: none; }
:where(a,button,input,select,textarea,summary):focus-visible { outline: 2px solid var(--cyan); outline-offset: 5px; }
html[data-motion="paused"] *, html[data-motion="paused"] *::before, html[data-motion="paused"] *::after { animation-play-state: paused !important; transition-duration: 0s !important; }
html[data-motion="paused"] .fade-up { opacity: 1 !important; transform: none !important; }
html[data-motion="paused"] .service-card::after { opacity: 0; }
@media (max-width: 1100px) {
  .hero-grid { gap: 30px; }
  .ops-console { padding: 16px; }
  .hero-visual { display: block; }
  .hero-content { margin: 0; }
  .hero-content .btn-ghost { padding-left: 0; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-content { max-width: 640px; }
  .hero-visual { max-width: 490px; width: 100%; margin: 0 auto; }
  .ops-console { margin: 0 auto; }
  .positioning-layout { grid-template-columns: 1fr; gap: 30px; }
  .home-expertise .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-expertise .service-card:first-child { grid-column: span 2; }
  .ai-invitation .container { grid-template-columns: auto 1fr; }
  .ai-invitation .btn { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 600px) {
  .navbar .container { height: 70px; }
  .hero, .page-hero { margin: 8px 10px 0; border-radius: 20px; padding: 46px 0; }
  .hero-grid { gap: 34px; }
  .hero .container, .page-hero .container { padding-inline: 20px; }
  .hero-content h1, .page-hero h1, .page-hero.calm-heading h1 { font-size: clamp(1.65rem, 7vw, 1.9rem); }
  .hero-content p { margin-inline: 0; }
  .hero-capabilities { font-size: .6rem; margin-top: 24px; }
  .ops-console { padding: 15px; border-radius: 16px; }
  .ops-console-head { font-size: 8px; }
  .ops-core { width: 70px; height: 70px; }
  .ops-core strong { font-size: 1.15rem; }
  .ops-node { font-size: .54rem; padding: 7px; }
  .ops-node b { font-size: 8px; margin-right: 4px; }
  .ops-console-foot { font-size: 7px; gap: 4px; }
  .home-expertise .services-grid { grid-template-columns: 1fr; }
  .home-expertise .service-card:first-child { grid-column: auto; }
  .service-card { padding: 25px; }
  .ai-invitation { padding-inline: 20px; }
  .ai-invitation .container { display: flex; flex-wrap: wrap; gap: 18px; }
  .ai-symbol { width: 52px; height: 52px; }
  .cta-banner { padding: 42px 24px; }
  .positioning-image figcaption { position: static; background: var(--panel); color: var(--text-muted); border: 1px solid var(--border); margin-top: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .service-card:hover, .btn:hover { transform: none; }
  .service-card::after { display: none; }
}

/* Scroll choreography: each section remains readable with motion disabled. */
.fade-up:nth-child(n) { transition-delay: 0s; }
.fade-up.reveal-ready { transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.3,1), border-color .22s, box-shadow .22s; }
.fade-up.reveal-ready[data-reveal="left"] { transform: translate3d(-24px, 12px, 0); }
.fade-up.reveal-ready[data-reveal="right"] { transform: translate3d(24px, 12px, 0); }
.fade-up.reveal-ready.visible { transform: none; }
.reveal-media { overflow: hidden; border-radius: 22px; }
.reveal-media.reveal-ready img { transform: scale(1.035); transition: transform 1.1s cubic-bezier(.2,.65,.3,1); }
.reveal-media.visible img { transform: scale(1); }
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 1100; height: 2px; width: 100%; background: #59e1ee; transform: scaleX(var(--reading-progress, 0)); transform-origin: left; box-shadow: 0 0 12px #59e1ee66; pointer-events: none; }
.ops-orbit { opacity: .8; }
.ops-core { box-shadow: 0 0 0 9px #59e1ee08, 0 0 64px #59e1ee20; }
.ops-console.reveal-ready .ops-node { opacity: 0; transform: translateY(12px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.3,1); }
.ops-console.visible .ops-node { opacity: 1; transform: none; }
.ops-console.visible .ops-node-a { transition-delay: .15s; }
.ops-console.visible .ops-node-b { transition-delay: .3s; }
.ops-console.visible .ops-node-c { transition-delay: .45s; }
.ops-console.reveal-ready .ops-orbit { opacity: 0; transition: opacity 1.2s ease .25s; }
.ops-console.visible .ops-orbit { opacity: .8; }
.btn-cookie-accept, [data-theme="dark"] .btn-cookie-accept { background: #59e1ee; color: #061522; }
.btn-cookie-accept:hover, [data-theme="dark"] .btn-cookie-accept:hover { background: #9af1f7; }
.btn-cookie-decline { color: #d8e9f6; }
.mobile-nav .btn-primary { color: #061522; }
[data-theme="dark"] .arb-table thead th:nth-child(2), [data-theme="dark"] .arb-table thead th:nth-child(3) { color: #8cc5ff; }
[data-theme="dark"] .accordion-item.is-open .accordion-icon svg { stroke: #061522; }
html[data-motion="paused"] { scroll-behavior: auto; }
html[data-motion="paused"] .scroll-progress { display: none; }
html[data-motion="paused"] .reveal-media img, html[data-motion="paused"] .ops-console .ops-node { transform: none; opacity: 1; }
html[data-motion="paused"] .ops-console .ops-orbit { opacity: .8; }
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .reveal-media img, .ops-console .ops-node { transform: none !important; opacity: 1 !important; }
  .ops-console .ops-orbit { opacity: .8 !important; }
}

[data-theme="dark"] { color-scheme: dark; }
[data-theme="light"] { color-scheme: light; }
.legal-content h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
.accordion-item { border-radius: 18px; }
@media (max-width: 600px) {
  .ops-core span { font-size: 7px; white-space: nowrap; }
  .fade-up.reveal-ready[data-reveal] { transform: translateY(20px); }
  .fade-up.reveal-ready.visible { transform: none; }
}

button.accordion-header { width: 100%; border: 0; background: transparent; text-align: left; color: inherit; font: inherit; }

/* The full circle connects our expertise; its colour moves continuously. */
.brand-circle { width: 140px; height: 140px; background: radial-gradient(circle at 30% 20%, #193c54, #0b1d30 75%); border: 0; isolation: isolate; }
.brand-circle strong { font-size: 23px; line-height: 1.15; letter-spacing: -.04em; }
.brand-circle strong em { color: #69e6f2; font-style: normal; font-weight: 500; }
.brand-circle span { margin-top: 8px; font-size: 8px; letter-spacing: .12em; white-space: nowrap; }
.brand-circle::before { content: ''; position: absolute; inset: -5px; padding: 2px; border-radius: 50%; background: conic-gradient(from 0deg, #59e1ee, #397ba5, #72afff, #2d697c, #59e1ee); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: exclude; animation: circleFlow 12s linear infinite; pointer-events: none; }
.brand-circle::after { content: ''; position: absolute; inset: -15px; border: 1px solid #59e1ee30; border-radius: 50%; animation: circleBreathe 5s ease-in-out infinite; pointer-events: none; }
@keyframes circleFlow { to { transform: rotate(360deg); } }
@keyframes circleBreathe { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.045); opacity: .95; } }
@media (max-width: 600px) {
  .brand-circle { width: 102px; height: 102px; }
  .brand-circle strong { font-size: 18px; }
  .brand-circle span { font-size: 6px; margin-top: 6px; }
  .brand-circle::after { inset: -11px; }
}

/* Approved Expertise photograph; retain the complete composition on mobile. */
.page-hero-visual.expertise-photo { display: block; overflow: hidden; border-radius: 22px; border: 1px solid #35556b; box-shadow: 0 20px 50px #030b1740; }
.expertise-photo img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .page-hero.expertise-hero .container { gap: 32px; }
  .page-hero-visual.expertise-photo { margin: 0 auto; max-width: 420px; }
}
