:root {
  --bg: #071014;
  --bg-soft: #0a1519;
  --surface: #0d191d;
  --surface-light: #122126;
  --text: #f2f6f7;
  --muted: #98a7ab;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.17);
  --accent: #12b8c4;
  --accent-soft: rgba(18,184,196,.12);
  --accent-deep: #077784;
  --max-width: 1180px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding: 124px 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--accent);
  color: #111;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(7,16,20,.84);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { height: 92px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-image img {
  display: block;
  width: clamp(220px, 19vw, 275px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}
.footer-brand-image img {
  width: min(285px, 100%);
  max-height: none;
}
.desktop-nav { display: flex; align-items: center; gap: 32px; color: #c6ccc7; font-size: 14px; font-weight: 650; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.desktop-nav .nav-cta { border: 1px solid var(--line-strong); border-radius: 999px; padding: 10px 17px; color: var(--text); }
.desktop-nav .nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 1px; background: var(--text); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 180px 0 50px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero-grid, .panel-grid {
  position: absolute;
  inset: 0;
  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: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 92%);
  z-index: -2;
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); z-index: -1; pointer-events: none; }
.hero-orb-one { width: 680px; height: 680px; right: -280px; top: -260px; background: radial-gradient(circle, rgba(18,184,196,.13), transparent 68%); }
.hero-orb-two { width: 500px; height: 500px; left: 18%; bottom: -370px; background: radial-gradient(circle, rgba(18,184,196,.08), transparent 68%); }
.hero-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 88px; align-items: center; }
.eyebrow, .section-label { text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 800; color: var(--accent); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(48px, 5.9vw, 78px); line-height: 1; letter-spacing: -.065em; font-weight: 760; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { max-width: 680px; margin: 30px 0 0; color: #c0c7c1; font-size: 19px; line-height: 1.58; }
.hero-secondary { max-width: 680px; margin: 18px 0 0; color: #909a92; font-size: 16px; line-height: 1.62; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #041316; box-shadow: 0 12px 30px rgba(18,184,196,.12); }
.button-primary:hover { background: #c7e99a; }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.025); }
.button-secondary:hover { border-color: rgba(255,255,255,.35); }
.hero-note { max-width: 620px; margin-top: 24px; color: #7f8981; font-size: 13px; }

.system-visual {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
}
.system-visual::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.04); border-radius: 22px; pointer-events: none; }
.visual-topline { display: flex; justify-content: space-between; gap: 20px; padding: 8px 8px 18px; font-size: 10px; letter-spacing: .14em; font-weight: 800; color: #7f8a81; }
.live-indicator { color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.live-indicator i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

.support-overview { padding: 18px; background: #0e110f; border: 1px solid var(--line); border-radius: 20px; }
.support-main { position: relative; display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; min-height: 126px; padding: 20px; border: 1px solid rgba(18,184,196,.28); border-radius: 16px; background: linear-gradient(135deg, rgba(18,184,196,.09), rgba(255,255,255,.02)); }
.support-number, .support-item > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.05); color: var(--accent); font-size: 11px; font-weight: 900; }
.support-main small, .support-item small { display: block; color: #6f7871; font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.support-main strong { display: block; margin-top: 3px; font-size: 20px; letter-spacing: -.025em; }
.support-main p { margin: 8px 0 0; max-width: 380px; color: #8f9991; font-size: 12px; line-height: 1.45; }
.support-status { align-self: start; padding: 6px 9px; border: 1px solid rgba(18,184,196,.22); border-radius: 999px; color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.support-items { display: grid; gap: 8px; margin-top: 9px; }
.support-item { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; min-height: 66px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.support-item strong { display: block; margin-top: 2px; font-size: 13px; }
.workflow { padding: 22px; background: #0e110f; border: 1px solid var(--line); border-radius: 20px; }
.workflow-node { display: flex; align-items: center; gap: 14px; min-height: 78px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.workflow-node.node-process { border-color: rgba(18,184,196,.35); background: linear-gradient(135deg, rgba(18,184,196,.1), rgba(18,184,196,.025)); }
.node-icon { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.05); color: var(--accent); font-size: 11px; font-weight: 900; }
.workflow-node small { display: block; color: #6f7871; font-size: 9px; letter-spacing: .14em; font-weight: 800; }
.workflow-node strong { display: block; margin-top: 2px; font-size: 14px; }
.connector { height: 34px; width: 2px; margin: 0 auto; background: linear-gradient(var(--line-strong), var(--accent), var(--line-strong)); position: relative; overflow: hidden; }
.connector span { position: absolute; width: 100%; height: 10px; background: white; box-shadow: 0 0 12px var(--accent); animation: flow 2.2s infinite ease-in-out; }
@keyframes flow { from { transform: translateY(-12px); } to { transform: translateY(38px); } }
.visual-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.visual-metrics > div { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.02); }
.visual-metrics span { display: block; color: #6f7871; font-size: 8px; letter-spacing: .12em; font-weight: 800; }
.visual-metrics strong { display: block; margin-top: 6px; font-size: 14px; line-height: 1.25; letter-spacing: -.015em; }
.visual-metrics > div:first-child strong { color: var(--accent); }
.capability-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 95px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-strip span { min-height: 68px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; color: #8d968f; font-size: 12px; font-weight: 700; letter-spacing: .04em; border-right: 1px solid var(--line); }
.capability-strip span:last-child { border-right: 0; }

.section-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .approach-copy h2, .principles-panel h2, .about-copy h2, .contact-copy h2 { margin: 12px 0 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.04; letter-spacing: -.055em; }
.section-heading p { margin: 0; color: var(--muted); }
.problem-section { background: var(--bg-soft); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.problem-card { min-height: 310px; padding: 34px; border-right: 1px solid var(--line); background: rgba(255,255,255,.015); }
.problem-card:last-child { border-right: 0; }
.card-number, .service-index { font-size: 11px; font-weight: 900; letter-spacing: .12em; color: var(--accent); }
.problem-card h3 { margin: 80px 0 12px; font-size: 22px; letter-spacing: -.03em; }
.problem-card p { margin: 0; color: var(--muted); font-size: 15px; }

.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 470px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.012)); overflow: hidden; transition: border-color .25s ease, transform .25s ease; }
.service-card:hover { border-color: rgba(18,184,196,.32); transform: translateY(-3px); }
.service-card::before { content: ""; position: absolute; width: 230px; height: 230px; right: -120px; top: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(18,184,196,.1), transparent 68%); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 15px; background: var(--accent-soft); border: 1px solid rgba(18,184,196,.2); margin-bottom: 40px; }
.service-icon svg { width: 25px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-index { position: absolute; right: 30px; top: 30px; color: #59625b; }
.service-card h3 { margin: 0; max-width: 390px; font-size: 28px; line-height: 1.15; letter-spacing: -.045em; }
.service-card > p { color: var(--muted); max-width: 490px; margin: 17px 0 26px; }
.service-card ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 16px; color: #b6beb7; font-size: 13px; }
.service-card li { position: relative; padding-left: 15px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.approach-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.approach-copy { position: sticky; top: 130px; }
.approach-copy p { color: var(--muted); max-width: 470px; margin: 25px 0; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 800; font-size: 14px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid var(--line-strong); }
.process-list > li > span { color: var(--accent); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.process-list h3 { margin: -5px 0 8px; font-size: 23px; letter-spacing: -.035em; }
.process-list p { margin: 0; color: var(--muted); }

.principles-section { background: var(--bg-soft); }
.principles-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principles-panel { position: relative; min-height: 620px; padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, rgba(18,184,196,.07), rgba(255,255,255,.01)); }
.principles-panel .panel-grid { z-index: 0; opacity: .7; }
.principles-panel > *:not(.panel-grid) { position: relative; z-index: 1; }
.principles-panel h2 { max-width: 570px; }
.principles-panel p { max-width: 570px; color: #b3bbb4; margin: 24px 0 0; }
.principle-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.principle-list article { display: grid; grid-template-columns: 58px 1fr; gap: 16px; min-height: 155px; padding: 30px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.principle-list article:last-child { border-bottom: 0; }
.principle-list article > span { font-size: 11px; font-weight: 900; color: var(--accent); }
.principle-list h3 { margin: -4px 0 6px; font-size: 20px; letter-spacing: -.03em; }
.principle-list p { margin: 0; color: var(--muted); font-size: 14px; }

.about-section { background: var(--bg); }
.about-layout { display: grid; grid-template-columns: .52fr 1.48fr; gap: 100px; }
.about-kicker { color: #69716b; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; padding-top: 6px; }
.about-copy { max-width: 780px; }
.about-copy .large-copy { color: var(--text); font-size: 24px; line-height: 1.45; letter-spacing: -.02em; margin: 30px 0; }
.about-copy p:not(.large-copy) { color: var(--muted); }
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.015);
}
.about-highlights > div {
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.about-highlights > div:last-child { border-right: 0; }
.about-highlights strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.about-highlights span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.contact-section { padding: 124px 0; background: linear-gradient(135deg, #0d252b, #08171b); color: var(--text); border-top: 1px solid rgba(18,184,196,.16); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 92px; align-items: start; }
.contact-section .section-label { color: var(--accent); }
.contact-copy h2 { font-size: clamp(44px, 6vw, 76px); }
.contact-copy > p { max-width: 530px; color: #aeb8b0; font-size: 17px; }
.contact-direct { margin-top: 42px; display: flex; flex-direction: column; }
.contact-direct span { font-size: 11px; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; color: #728077; }
.contact-direct a { color: var(--accent); font-size: 21px; font-weight: 850; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-form { background: #071216; color: var(--text); padding: 34px; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #9da49e; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); color: var(--text); border-radius: 12px; padding: 14px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #626a63; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(18,184,196,.1); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; border: 0; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #b7c0b8; font-size: 13px; text-align: center; }

.site-footer { padding: 54px 0 28px; background: #050a0c; border-top: 1px solid rgba(255,255,255,.06); }
.footer-main { display: grid; grid-template-columns: 1.25fr 1.25fr 1fr; align-items: center; gap: 30px; padding-bottom: 38px; }
.footer-main p { margin: 0; color: #777f78; text-align: center; font-size: 13px; }
.footer-main > a:last-child { justify-self: end; color: #c8cec9; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #59605a; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { position: fixed; top: 92px; left: 0; right: 0; bottom: 0; z-index: 99; display: flex; flex-direction: column; padding: 35px 20px; background: rgba(7,16,20,.98); backdrop-filter: blur(18px); transform: translateX(100%); transition: transform .25s ease; }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a { padding: 19px 4px; border-bottom: 1px solid var(--line); font-size: 25px; font-weight: 750; letter-spacing: -.03em; }
  .hero { padding-top: 145px; }
  .hero-layout { grid-template-columns: 1fr; gap: 55px; }
  .system-visual { max-width: 680px; width: 100%; }
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
  .capability-strip span:nth-child(2) { border-right: 0; }
  .capability-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-card:last-child { border-bottom: 0; }
  .problem-card h3 { margin-top: 55px; }
  .approach-layout { grid-template-columns: 1fr; gap: 55px; }
  .approach-copy { position: static; }
  .principles-layout { grid-template-columns: 1fr; }
  .principles-panel { min-height: 500px; }
  .about-layout { grid-template-columns: 1fr; gap: 35px; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-highlights > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-highlights > div:last-child { border-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .footer-main { grid-template-columns: 1fr; text-align: left; }
  .footer-main p { text-align: left; }
  .footer-main > a:last-child { justify-self: start; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 88px 0; }
  .header-inner { height: 76px; }
  .brand-image img { width: 185px; max-height: 62px; }
  .mobile-nav { top: 76px; }
  .hero { min-height: auto; padding: 125px 0 35px; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 58px); }
  .hero-lead { font-size: 17px; }
  .hero-secondary { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .system-visual { padding: 10px; border-radius: 20px; }
  .workflow { padding: 14px; }
  .visual-metrics { grid-template-columns: 1fr; }
  .visual-metrics > div { display: flex; justify-content: space-between; align-items: center; }
  .visual-metrics strong { margin: 0; }
  .capability-strip { margin-top: 60px; grid-template-columns: 1fr; }
  .capability-strip span { min-height: 58px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-strip span:last-child { border-bottom: 0; }
  .section-heading h2, .approach-copy h2, .principles-panel h2, .about-copy h2 { font-size: 42px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 28px; }
  .service-card ul { grid-template-columns: 1fr; }
  .principles-panel { min-height: 430px; padding: 32px; }
  .principle-list article { grid-template-columns: 45px 1fr; padding: 25px 22px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .contact-section { padding: 90px 0; }
  .contact-copy h2 { font-size: 48px; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 720px) {
  .support-overview { padding: 12px; }
  .support-main { grid-template-columns: 40px 1fr; padding: 16px; }
  .support-main strong { font-size: 18px; }
  .support-main p { font-size: 11px; }
  .support-status { grid-column: 2; justify-self: start; margin-top: -2px; }
  .support-item { grid-template-columns: 36px 1fr; padding: 11px 12px; }
}


/* Interactive service explorer — replaces the previous dashboard-style hero card. */
.service-explorer { overflow: hidden; }
.service-explorer-layout {
  display: grid;
  grid-template-columns: minmax(210px, .78fr) minmax(0, 1.22fr);
  gap: 12px;
}
.service-tabs { display: grid; align-content: start; gap: 8px; }
.service-tab {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.018);
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.service-tab:hover { border-color: rgba(18,184,196,.35); transform: translateX(3px); }
.service-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.service-tab.active {
  border-color: rgba(18,184,196,.48);
  background: linear-gradient(110deg, rgba(18,184,196,.13), rgba(18,184,196,.025));
  box-shadow: inset 3px 0 0 var(--accent);
}
.service-tab-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  color: #6d7c81;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: color .22s ease, background .22s ease;
}
.service-tab.active .service-tab-index { color: var(--accent); background: var(--accent-soft); }
.service-tab-copy { min-width: 0; }
.service-tab-copy small {
  display: block;
  margin-bottom: 4px;
  color: #657278;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
}
.service-tab-copy strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -.018em;
}
.service-tab-arrow { color: #4f5d62; font-size: 13px; transition: color .22s ease, transform .22s ease; }
.service-tab.active .service-tab-arrow { color: var(--accent); transform: translate(2px,-2px); }

.service-stage {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(18,184,196,.045), rgba(255,255,255,.012) 58%);
}
.service-map {
  position: relative;
  height: 254px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(18,184,196,.08), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.014), transparent);
}
.service-map svg { display: block; width: 100%; height: 100%; }
.map-orbit { stroke: rgba(255,255,255,.065); stroke-width: 1; stroke-dasharray: 4 7; animation: orbitSpin 34s linear infinite; transform-origin: 280px 150px; }
.map-orbit-small { stroke: rgba(18,184,196,.1); animation-direction: reverse; animation-duration: 24s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.service-link {
  fill: none;
  stroke: rgba(255,255,255,.11);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke .28s ease, stroke-width .28s ease, filter .28s ease;
}
.service-link.active {
  stroke: url(#service-line-gradient);
  stroke-width: 3;
  stroke-dasharray: 8 10;
  filter: url(#service-glow);
  animation: serviceDataFlow 1.35s linear infinite;
}
@keyframes serviceDataFlow { to { stroke-dashoffset: -36; } }
.node-halo { fill: rgba(18,184,196,0); transition: fill .28s ease; }
.node-body {
  fill: #111a1d;
  stroke: rgba(255,255,255,.16);
  stroke-width: 1.4;
  transition: fill .28s ease, stroke .28s ease, filter .28s ease;
}
.node-number { fill: #637177; font-family: Inter, Arial, sans-serif; font-size: 10px; font-weight: 900; letter-spacing: .08em; transition: fill .28s ease; }
.service-map-node.active .node-halo { fill: rgba(18,184,196,.1); animation: nodePulse 2.2s ease-out infinite; }
.service-map-node.active .node-body { fill: #102a2e; stroke: var(--accent); filter: url(#service-glow); }
.service-map-node.active .node-number { fill: #dffbff; }
@keyframes nodePulse { 0%,100% { transform: scale(.92); opacity: .35; } 50% { transform: scale(1.12); opacity: .8; } }
.hub-halo { fill: rgba(18,184,196,.08); stroke: rgba(18,184,196,.16); stroke-width: 1; animation: hubPulse 3.2s ease-in-out infinite; }
.hub-body { fill: #081316; stroke: rgba(18,184,196,.45); stroke-width: 1.4; }
@keyframes hubPulse { 50% { transform: scale(1.07); opacity: .72; } }
.map-signal {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 13px var(--accent);
  opacity: .55;
  animation: signalFloat 5s ease-in-out infinite;
}
.signal-one { left: 18%; top: 28%; }
.signal-two { right: 21%; top: 61%; animation-delay: -1.7s; }
.signal-three { left: 47%; top: 17%; animation-delay: -3.1s; }
@keyframes signalFloat { 50% { transform: translateY(-9px); opacity: 1; } }

.service-details { min-height: 214px; padding: 20px 22px 21px; }
.service-panel { animation: servicePanelIn .34s ease both; }
@keyframes servicePanelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.service-panel-label { color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.service-panel h3 { margin: 7px 0 8px; font-size: 22px; line-height: 1.14; letter-spacing: -.035em; }
.service-panel p { margin: 0; color: #8f9da1; font-size: 12px; line-height: 1.5; }
.service-panel ul { list-style: none; display: grid; gap: 7px; margin: 14px 0 0; padding: 0; color: #bac5c8; font-size: 11px; }
.service-panel li { position: relative; padding-left: 15px; }
.service-panel li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(18,184,196,.08); }
.service-explorer-note { display: flex; align-items: center; gap: 8px; margin: 12px 6px 0; color: #68767b; font-size: 10px; }
.service-explorer-note span { width: 18px; height: 1px; background: var(--accent); }

@media (max-width: 1180px) and (min-width: 981px) {
  .service-explorer-layout { grid-template-columns: .9fr 1.1fr; }
  .service-tab { min-height: 72px; padding: 11px 12px; }
  .service-tab-copy strong { font-size: 12px; }
  .service-map { height: 230px; }
}

@media (max-width: 720px) {
  .service-explorer-layout { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: 1fr 1fr; }
  .service-tab { grid-template-columns: 30px minmax(0,1fr); min-height: 86px; padding: 12px; gap: 9px; }
  .service-tab-index { width: 30px; height: 30px; }
  .service-tab-arrow { display: none; }
  .service-tab-copy small { font-size: 7px; }
  .service-tab-copy strong { font-size: 11px; }
  .service-map { height: 222px; }
  .service-details { min-height: 226px; padding: 18px; }
  .service-panel h3 { font-size: 20px; }
  .visual-topline { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 410px) {
  .service-tabs { grid-template-columns: 1fr; }
  .service-tab { min-height: 67px; grid-template-columns: 32px minmax(0,1fr); }
  .service-map { height: 205px; }
}
