/* ============================================================
   VERAXI — Technology Partner · Main Stylesheet
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --blue:       #0A66FF;
  --cyan:       #5CB8FF;
  --navy:       #050B1E;
  --deep:       #071532;
  --dark:       #08142D;
  --soft:       #F7FAFF;
  --line:       #D8E0EA;
  --muted:      #5C697C;
  --orange:     #E85D04;
  --white:      #fff;
  --container:  min(1420px, calc(100vw - 96px));
  --radius:     28px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--navy);
  background: white;
}

a { text-decoration: none; color: inherit; }

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(5, 11, 30, .42);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.nav-inner {
  width: var(--container);
  margin: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.brand-name {
  font-weight: 850;
  letter-spacing: .11em;
  font-size: 22px;
}

.brand-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .32);
}

.brand-desc {
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .76);
}

.links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 720;
  color: rgba(255, 255, 255, .76);
}

.links a:hover { color: white; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 760;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 38px rgba(10, 102, 255, .28);
}

.btn.primary:hover {
  background: #003A8C;
  transform: translateY(-1px);
}

.btn.secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .28);
  color: white;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .42);
}

/* ── Scroll-reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible  { opacity: 1; transform: none; }
.reveal.delay-1  { transition-delay: .12s; }
.reveal.delay-2  { transition-delay: .22s; }
.reveal.delay-3  { transition-delay: .32s; }

/* ── Layout helpers ────────────────────────────────────────── */
section    { padding: 104px 0; }
.container { width: var(--container); margin: auto; }

.split-head {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 78px;
  align-items: end;
  margin-bottom: 56px;
}

.kicker {
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 0;
  font-weight: 700;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: #556378;
  margin: 0;
  max-width: 720px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  color: white;
  overflow: hidden;
  background: #050B1E;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5,11,30,.90)  0%,
      rgba(5,11,30,.78) 38%,
      rgba(5,11,30,.44) 68%,
      rgba(5,11,30,.72) 100%),
    url('https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=3270&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 34%, rgba(10,102,255,.30), transparent 32%),
    radial-gradient(circle at 18% 75%, rgba(92,184,255,.12), transparent 28%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: auto;
  padding: 150px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: end;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
  font-weight: 760;
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  margin-bottom: 34px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(10, 102, 255, .18);
}

.hero h1 {
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 1.01;
  letter-spacing: -.055em;
  margin: 0 0 28px;
  max-width: 810px;
  font-weight: 740;
  color: #fff;
}

.hero p {
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.58;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  max-width: 760px;
  font-weight: 430;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-actions .btn { min-width: 164px; }

.hero-side {
  justify-self: end;
  max-width: 440px;
  padding: 30px 0 30px 34px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
  line-height: 1.6;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.hero-side strong {
  display: block;
  color: white;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 14px;
  font-weight: 720;
}


/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.07); }
}


/* ── Moments section ───────────────────────────────────────── */
.moments { background: white; }

.moments-editorial {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 86px;
  align-items: start;
}

.moments-intro { position: sticky; top: 118px; }
.moments-intro h2 { max-width: 560px; }
.moments-intro .lead { margin-top: 24px; }

.moments-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.moment-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 44px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}

.moment-row:hover {
  transform: translateX(8px);
  border-color: rgba(10, 102, 255, .35);
}

.moment-row:first-child { padding-top: 4px; }
.moment-row:first-child .moment-word { color: var(--orange); }

.moment-word {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 850;
  color: var(--blue);
  padding-top: 4px;
}

.moment-row h3 {
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 12px;
  font-weight: 720;
  color: var(--navy);
}

.moment-row p {
  font-size: 17px;
  line-height: 1.65;
  color: #58677B;
  margin: 0;
  max-width: 690px;
}

/* ── Solutions section ─────────────────────────────────────── */
.solutions {
  background: linear-gradient(120deg, #061127, #101D37);
  color: white;
}

.solutions .lead { color: #D7E3F6; }

.solution-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .03);
}

.solution {
  min-height: 348px;
  padding: 36px 28px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution:last-child { border-right: 0; }

.icon {
  width: 82px;
  height: 82px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background: rgba(10, 102, 255, .20);
  border: 1px solid rgba(92, 184, 255, .30);
  margin: 0 auto 58px;
  flex: 0 0 auto;
}

.icon svg {
  width: 43px;
  height: 43px;
  stroke: #C8EAFF;
  fill: none;
  stroke-width: 1.75;
}

.solution h3 {
  font-size: 23px;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -.032em;
  font-weight: 720;
  min-height: 50px;
  display: flex;
  align-items: flex-end;
}

.solution p {
  font-size: 15.8px;
  line-height: 1.55;
  color: #D4E0F3;
  margin: 0;
}

/* ── Why section ───────────────────────────────────────────── */
.why {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  left: -12%;
  top: 18%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,255,.10), transparent 68%);
  pointer-events: none;
}

.why-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.why-panel h2 { max-width: 920px; margin: 0 auto 24px; }

.why-copy {
  font-size: 18px;
  line-height: 1.72;
  color: #435066;
  margin: 0 auto 48px;
  max-width: 850px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(5, 11, 30, .07);
  overflow: hidden;
  text-align: left;
}

.proof-item {
  padding: 34px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}

.proof-item:last-child { border-right: 0; }

.proof-item::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.proof-item:nth-child(2)::before {
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.proof-item h3 {
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  font-weight: 730;
  color: var(--navy);
}

.proof-item p {
  font-size: 16px;
  line-height: 1.62;
  color: #566376;
  margin: 0;
}

.why-note {
  margin: 34px auto 0;
  font-size: 18px;
  color: #4B5563;
  text-align: center;
}

.why-note b { color: var(--navy); }

/* ── Tech / Decision section ───────────────────────────────── */
.tech {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFF 58%, #EEF6FF 100%);
  overflow: hidden;
  position: relative;
}

.tech::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,102,255,.10), transparent 66%);
  pointer-events: none;
}

.tech::after {
  content: "";
  position: absolute;
  left: -240px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,184,255,.11), transparent 68%);
  pointer-events: none;
}

.tech-decision {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 92px;
  align-items: center;
}

.tech-text h2 { max-width: 580px; }
.tech-text .lead { margin-top: 22px; }

.tech-principle {
  margin-top: 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: #435066;
}

.tech-principle b { color: var(--navy); }

/* Decision panel */
.decision-panel {
  position: relative;
  min-height: 560px;
  border-radius: 44px;
  padding: 38px;
  background:
    radial-gradient(circle at 50% 50%, rgba(10,102,255,.25), transparent 36%),
    linear-gradient(135deg, #050B1E 0%, #0B1733 55%, #071026 100%);
  box-shadow: 0 34px 90px rgba(5, 11, 30, .24);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  color: white;
}

.decision-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,  rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: .22;
}

.decision-panel::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,184,255,.26), transparent 68%);
}

.decision-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(92, 184, 255, .26);
  background: rgba(255, 255, 255, .06);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #DFF4FF;
}

.decision-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(232, 93, 4, .12);
}

.decision-canvas {
  position: relative;
  z-index: 2;
  height: 390px;
  margin-top: 36px;
}

.decision-canvas .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(92, 184, 255, .22);
}

.decision-canvas .ring.r1 { width: 330px; height: 330px; }
.decision-canvas .ring.r2 { width: 230px; height: 230px; border-style: dashed; opacity: .65; }
.decision-canvas .ring.r3 {
  width: 132px;
  height: 132px;
  background: linear-gradient(135deg, rgba(10,102,255,.24), rgba(255,255,255,.04));
  box-shadow: 0 0 70px rgba(10, 102, 255, .20);
}

.decision-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .20);
}

.decision-core b {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.decision-core span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #AFC5E1;
  line-height: 1.35;
}

/* Criterion cards */
.criterion {
  position: absolute;
  z-index: 4;
  width: 218px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
}

.criterion::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(92,184,255,.65), transparent);
}

.criterion h3 {
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.criterion p {
  font-size: 13.5px;
  line-height: 1.48;
  color: #BBD0EA;
  margin: 0;
}

.criterion.context { left: 0; top: 14px; }
.criterion.context::before { right: -42px; top: 50%; }

.criterion.restrict { right: 0; top: 44px; }
.criterion.restrict::before {
  left: -42px;
  top: 50%;
  background: linear-gradient(270deg, rgba(92,184,255,.65), transparent);
}

.criterion.arch { left: 48px; bottom: 12px; }
.criterion.arch::before { right: -42px; top: 50%; }

.criterion.evolve { right: 44px; bottom: 0; }
.criterion.evolve::before {
  left: -42px;
  top: 50%;
  background: linear-gradient(270deg, rgba(232,93,4,.62), transparent);
}
.criterion.evolve { border-color: rgba(232, 93, 4, .22); }

.decision-foot {
  position: relative;
  z-index: 2;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #AFC5E1;
  font-size: 14px;
  line-height: 1.5;
}

.decision-foot b { color: white; }
.decision-foot span:last-child { color: #8FCFFF; }

/* ── Process section ───────────────────────────────────────── */
.process { background: var(--soft); }

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-card {
  background: transparent;
  border-top: 2px solid rgba(10, 102, 255, .22);
  padding: 28px 6px 8px;
  min-height: 150px;
}

.process-card h3 {
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: -.03em;
  font-weight: 720;
}

.process-card p {
  color: #59677C;
  line-height: 1.62;
  font-size: 16.5px;
  margin: 0;
}

.arrow {
  font-size: 42px;
  color: var(--blue);
  font-weight: 300;
}

.process-note {
  text-align: center;
  margin-top: 42px;
  font-size: 19px;
  font-weight: 720;
  color: #071532;
}

/* ── Contact section ───────────────────────────────────────── */
.contact {
  background: linear-gradient(120deg, #050B1E, #0A1A3D);
  color: white;
}

.contact .lead { color: #D8E5F7; }

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact p {
  color: #DCE7F7;
  line-height: 1.65;
}

/* Contact form */
.form {
  background: white;
  color: var(--navy);
  border-radius: 30px;
  padding: 34px;
  display: grid;
  gap: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.field { display: grid; gap: 8px; }

.field label {
  font-weight: 760;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--navy);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 102, 255, .10);
}

/* Inline validation feedback */
.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.submit { width: 100%; margin-top: 4px; }

.micro {
  color: #6B7280;
  font-size: 14px;
  text-align: center;
}

/* Form status message */
.form-status {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background: #d1fae5;
  color: #065f46;
}

.form-status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #030815;
  color: white;
  padding: 64px 0;
}

.foot {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .6fr .7fr;
  gap: 60px;
}

.foot b { display: block; margin-bottom: 16px; }

.foot address { font-style: normal; }

.foot a,
.foot p {
  display: block;
  color: #AEBBD0;
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 760px); }

  .links a:not(.btn) { display: none; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 132px 0 76px; }
  .hero h1 { font-size: clamp(44px, 12vw, 68px); }
  .hero-side { display: none; }

  .pulse { display: none; }

  .split-head,
  .tech-decision,
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }

  .solution-table { grid-template-columns: 1fr; }

  .moments-editorial { grid-template-columns: 1fr; gap: 34px; }
  .moments-intro { position: static; }

  .moment-row { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .moment-row:hover { transform: none; }

  .decision-panel { min-height: auto; padding: 24px; border-radius: 30px; }
  .decision-canvas { height: auto; margin-top: 26px; display: grid; gap: 14px; }
  .decision-canvas .ring,
  .decision-core { display: none; }

  .criterion {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: auto;
  }

  .criterion::before { display: none; }

  .decision-foot { display: grid; }

  .solution { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); min-height: auto; }

  .process-flow { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); text-align: center; }
  .process-card { padding: 22px 0; border-top: 2px solid rgba(10,102,255,.18); }

  .foot { grid-template-columns: 1fr; gap: 36px; }

  section { padding: 76px 0; }

  h2 { font-size: 38px; }

  .proof-band { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 24px; }
  .proof-item:last-child { border-bottom: 0; }

  .tech-principle { font-size: 16px; }
  .decision-label { font-size: 11px; }
  .tech-text .lead { max-width: none; }
}

@media (max-width: 520px) {
  .capability-layer  { padding: 20px 16px 20px 40px; }
  .capability-title  { font-size: 17px; }
  .capability-copy   { font-size: 14px; }
  .capability-icon   { width: 50px; height: 50px; border-radius: 17px; justify-self: start; }
  .capability-icon svg { width: 27px; height: 27px; }
  .capability-panel  { padding: 18px; border-radius: 26px; }
}
