:root {
  --bg: #090a0a;
  --bg-2: #101312;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f2e8;
  --muted: #b9b6ab;
  --muted-2: #8f9189;
  --cyan: #54e3ff;
  --green: #b7f15a;
  --amber: #ffb84d;
  --danger: #ff6b6b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(84, 227, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(183, 241, 90, 0.08), transparent 24rem),
    linear-gradient(180deg, #090a0a 0%, #11130f 46%, #090a0a 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cyan);
  color: #071011;
  font-weight: 900;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 132px;
  height: auto;
}

.footer-logo {
  width: 170px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(246, 242, 232, 0.2);
  background: rgba(246, 242, 232, 0.08);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.header-cta {
  border: 1px solid rgba(246, 242, 232, 0.2);
  padding: 10px 14px;
  background: rgba(246, 242, 232, 0.08);
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 34px 0 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: inline;
}

h2 {
  margin-bottom: 0;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.16;
}

.hero-text {
  max-width: 600px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(84, 227, 255, 0.75);
  background: var(--cyan);
  color: #071011;
}

.button-secondary {
  border: 1px solid rgba(246, 242, 232, 0.18);
  background: rgba(246, 242, 232, 0.06);
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(84, 227, 255, 0.2);
  transform: rotate(-2deg);
  pointer-events: none;
}

#mainContainer {
  position: relative;
  width: 100%;
  height: min(58vh, 620px);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(246, 242, 232, 0.14);
  background:
    linear-gradient(180deg, rgba(9, 10, 10, 0.05), rgba(9, 10, 10, 0.72)),
    linear-gradient(135deg, rgba(84, 227, 255, 0.08), rgba(183, 241, 90, 0.05)),
    #090a0a;
  box-shadow: var(--shadow);
}

#mainContainer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 242, 232, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(246, 242, 232, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  pointer-events: none;
}

#mainContainer.is-static-fallback #canvas {
  display: none;
}

#mainContainer.is-static-fallback .visual-fallback {
  z-index: 3;
}

#canvas {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: crosshair;
  opacity: 0.82;
  mix-blend-mode: screen;
}

.visual-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(84, 227, 255, 0.11), transparent 32%),
    linear-gradient(300deg, rgba(183, 241, 90, 0.1), transparent 28%);
}

.visual-fallback::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(84, 227, 255, 0.2);
  transform: rotate(8deg);
}

.visual-fallback::after {
  content: "";
  position: absolute;
  inset: 22% 18%;
  border: 1px solid rgba(255, 184, 77, 0.16);
  transform: rotate(-11deg);
}

.system-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(84, 227, 255, 0.7), transparent);
  transform-origin: left center;
}

.line-a {
  top: 43%;
  left: 22%;
  width: 58%;
  transform: rotate(18deg);
}

.line-b {
  top: 58%;
  left: 28%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(183, 241, 90, 0.7), transparent);
  transform: rotate(-28deg);
}

.line-c {
  top: 34%;
  left: 42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 184, 77, 0.72), transparent);
  transform: rotate(72deg);
}

.system-node {
  position: absolute;
  min-width: 102px;
  border: 1px solid rgba(246, 242, 232, 0.2);
  padding: 10px 12px;
  background: rgba(9, 10, 10, 0.7);
  color: rgba(246, 242, 232, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.node-core {
  top: 44%;
  left: 50%;
  border-color: rgba(84, 227, 255, 0.52);
  color: var(--text);
  transform: translate(-50%, -50%);
}

.node-ai {
  top: 22%;
  left: 18%;
}

.node-mobile {
  right: 14%;
  top: 25%;
}

.node-cloud {
  right: 18%;
  bottom: 25%;
}

.node-security {
  left: 16%;
  bottom: 22%;
}

.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 92px;
  border: 1px solid var(--line);
  background: var(--line);
}

.credibility div {
  min-height: 104px;
  padding: 22px;
  background: rgba(9, 10, 10, 0.86);
}

.credibility strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.credibility span {
  color: var(--muted);
  font-size: 17px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 36px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  min-height: 320px;
  padding: 26px;
  background: rgba(246, 242, 232, 0.04);
}

.service-card a {
  transition: color 160ms ease;
}

.service-card a:hover {
  color: var(--cyan);
}

.service-card p,
.process-list p,
.apps-panel p,
.about-copy p,
.contact-panel p,
.answer-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.service-index {
  display: block;
  margin-bottom: 78px;
  color: var(--amber);
  font-size: 15px;
  font-weight: 900;
}

.process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engagement-grid,
.work-type-grid,
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.engagement-card,
.work-type-card,
.roi-card {
  min-height: 210px;
  padding: 26px;
  background: rgba(246, 242, 232, 0.045);
}

.engagement-card span,
.work-type-card span,
.roi-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 15px;
  font-weight: 900;
}

.work-type-card span,
.roi-card span {
  color: var(--green);
}

.engagement-card p,
.work-type-card p,
.roi-card p {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding-top: 64px;
  counter-increment: process;
}

.process-list li::before {
  content: "0" counter(process);
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(84, 227, 255, 0.72);
  font-size: 15px;
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.apps-section {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
  gap: 46px;
  align-items: start;
}

.apps-section .section-heading {
  display: block;
  margin-bottom: 0;
}

.apps-panel,
.contact-panel {
  border: 1px solid var(--line);
  padding: 30px;
  background: rgba(246, 242, 232, 0.05);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--cyan);
  font-weight: 800;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}

.section-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--cyan);
  font-weight: 900;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 44px;
  align-items: stretch;
}

.about-copy {
  align-self: center;
}

.about-copy p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.55;
}

.contact-panel h2 {
  font-size: 40px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  word-break: break-word;
}

.answer-section {
  border-top: 1px solid var(--line);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.answer-card {
  min-height: 216px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 232, 0.035);
}

.answer-card:nth-child(2n) {
  border-right: 0;
}

.answer-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.answer-card a {
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 56px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.footer-brand {
  margin-bottom: 10px;
}

.page-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 96px;
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-shell h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 66px;
  line-height: 1;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.content-panel {
  border: 1px solid var(--line);
  padding: 34px;
  background: rgba(246, 242, 232, 0.04);
}

.content-panel h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.18;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.content-panel a {
  color: var(--cyan);
  font-weight: 800;
}

.content-panel strong {
  color: var(--text);
}

.content-panel ul {
  padding-left: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin: 22px 0 42px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 242, 232, 0.18);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(9, 10, 10, 0.7);
  color: var(--text);
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(84, 227, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(84, 227, 255, 0.12);
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form option {
  background: #090a0a;
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-form .consent-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.contact-form .consent-option span {
  color: var(--muted);
  font-weight: 500;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .button {
  width: fit-content;
  cursor: pointer;
}

.form-status {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(84, 227, 255, 0.28);
  padding: 18px;
  background: rgba(84, 227, 255, 0.07);
}

.form-status[data-status="success"] {
  border-color: rgba(91, 213, 153, 0.34);
  background: rgba(91, 213, 153, 0.09);
}

.form-status[data-status="error"] {
  border-color: rgba(255, 198, 87, 0.38);
  background: rgba(255, 198, 87, 0.08);
}

.form-status[hidden] {
  display: none;
}

.form-status p {
  margin: 0;
}

.form-status-title {
  color: var(--text);
  font-weight: 900;
}

.fallback-summary {
  min-height: 180px;
}

.content-panel .page-link-list {
  padding-left: 0;
  list-style: none;
}

.page-link-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.page-link-list li:last-child {
  border-bottom: 0;
}

.page-link-list a {
  display: inline-flex;
  margin-bottom: 6px;
}

.fact-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 28px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.fact-list li {
  padding: 18px;
  background: rgba(9, 10, 10, 0.76);
}

.fact-list strong {
  display: block;
  color: var(--text);
}

.inquiry-template {
  display: grid;
  gap: 0;
  margin: 24px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-template div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-template div:last-child {
  border-bottom: 0;
}

.inquiry-template dt {
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 900;
}

.inquiry-template dd {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.use-case-list {
  display: grid;
  gap: 0;
  margin: 28px 0 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-case-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.use-case-list article:last-child {
  border-bottom: 0;
}

.use-case-list h2 {
  margin-top: 0;
}

.example-scenario {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 38px;
}

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

@media (max-width: 960px) {
  .site-header {
    width: min(760px, calc(100% - 28px));
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    order: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    border: 1px solid var(--line);
    background: var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 10, 10, 0.9);
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero,
  .apps-section,
  .about-contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(760px, calc(100% - 28px));
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .contact-panel h2 {
    font-size: 36px;
  }

  .page-shell h1 {
    font-size: 56px;
  }

  #mainContainer {
    height: 520px;
    min-height: 420px;
  }

  .credibility,
  .service-grid,
  .process-list,
  .answer-grid,
  .engagement-grid,
  .work-type-grid,
  .roi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section,
  .credibility,
  .site-footer {
    width: min(760px, calc(100% - 28px));
  }

  .page-shell {
    width: min(760px, calc(100% - 28px));
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header,
  .hero,
  .section,
  .credibility,
  .site-footer,
  .page-shell {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-copy,
  .hero-visual,
  .hero-text,
  h1 {
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h1 span {
    display: block;
  }

  h2 {
    font-size: 33px;
  }

  .page-shell h1 {
    font-size: 42px;
  }

  .contact-panel h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 18px;
    max-width: 31ch;
  }

  #mainContainer {
    height: 360px;
    min-height: 320px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .system-node {
    min-width: 88px;
    padding: 8px 9px;
    font-size: 12px;
  }

  .node-ai {
    left: 10%;
  }

  .node-mobile {
    right: 18%;
  }

  .node-cloud {
    right: 14%;
  }

  .contact-form .button {
    width: 100%;
  }

  .visual-caption {
    display: none;
  }

  .credibility,
  .service-grid,
  .process-list,
  .answer-grid,
  .engagement-grid,
  .work-type-grid,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .answer-card,
  .answer-card:nth-child(2n),
  .answer-card:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .answer-card:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 240px;
  }

  .service-index {
    margin-bottom: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .process-list {
    gap: 32px;
  }

  .apps-panel,
  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    display: block;
  }

  .site-footer nav {
    justify-content: flex-start;
    margin-top: 26px;
  }

  .content-panel {
    padding: 22px;
  }
}
