:root {
  color-scheme: dark;
  --bg: #0a0e0b;
  --bg-soft: #0f1511;
  --panel: #121914;
  --panel-2: #161f18;
  --text: #f3f7f4;
  --muted: #9aa89e;
  --green: #62d98b;
  --green-strong: #7de29b;
  --green-dark: #1f6d3d;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(98, 217, 139, 0.3);
  --light: #eef2ec;
  --light-text: #101411;
  --light-muted: #5e6a61;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: var(--green);
  color: #081008;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section-dark,
.section-light,
.contact-section,
.about-section {
  position: relative;
}

.section-dark {
  background: var(--bg);
}

.section-light {
  background: var(--light);
  color: var(--light-text);
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 72%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 11, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  color: var(--green);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #c5cec8;
  font-size: 0.88rem;
}

.desktop-nav a {
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(125, 226, 155, .42);
  background: var(--green);
  color: #071108;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(98, 217, 139, .14);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-strong);
  box-shadow: 0 16px 34px rgba(98, 217, 139, .22);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .84rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #287442;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(98, 217, 139, .12);
}

.hero {
  padding: 112px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -170px;
  background: radial-gradient(circle, rgba(52, 149, 83, .16), transparent 64%);
  filter: blur(10px);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}

.hero h1,
.section-heading h2,
.case-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(2.9rem, 5.6vw, 5.7rem);
  line-height: .98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero h1 span {
  color: var(--green);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #b9c4bc;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

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

.hero-actions p {
  margin: 0;
  color: #829086;
  font-size: .82rem;
  line-height: 1.5;
}

.hero-actions p strong {
  color: #cbd4cd;
}

.visual-shell {
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 26, 19, .96), rgba(10, 15, 11, .96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}

.visual-topline {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  font-size: .68rem;
  letter-spacing: .1em;
  color: #758178;
}

.live-indicator {
  color: var(--green);
}

.flow-board {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 53% 48%, rgba(98,217,139,.08), transparent 28%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.flow-node {
  position: absolute;
  z-index: 2;
  width: 164px;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(18, 25, 20, .95);
  box-shadow: 0 12px 25px rgba(0,0,0,.22);
}

.flow-node strong,
.flow-node small {
  display: block;
}

.flow-node strong {
  margin-top: 18px;
  font-size: .88rem;
}

.flow-node small {
  margin-top: 3px;
  color: #77837b;
  font-size: .67rem;
}

.node-index {
  color: var(--green);
  font-size: .65rem;
  font-weight: 800;
}

.flow-node.featured {
  border-color: rgba(98,217,139,.55);
  box-shadow: 0 0 0 1px rgba(98,217,139,.08), 0 18px 42px rgba(36,104,56,.22);
}

.node-a { left: 8%; top: 17%; }
.node-b { left: 39%; top: 39%; }
.node-c { right: 7%; bottom: 15%; }

.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-lines path {
  fill: none;
  stroke: rgba(98,217,139,.38);
  stroke-width: 1.6;
  stroke-dasharray: 5 7;
}

.flow-lines .pulse {
  fill: var(--green);
  filter: drop-shadow(0 0 7px rgba(98,217,139,.8));
}

.flow-metric {
  position: absolute;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(8,12,9,.86);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .62rem;
  color: #7e8a82;
}

.flow-metric strong {
  display: block;
  margin-top: 2px;
  color: #dbe4dd;
}

.metric-a { left: 6%; bottom: 10%; }
.metric-b { right: 7%; top: 9%; }

.pain-section,
.case-section {
  padding: 118px 0;
}

.section-heading {
  max-width: 840px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.case-copy h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

.section-heading p,
.case-copy p,
.about-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-light .section-heading p,
.case-copy p {
  color: var(--light-muted);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: rgba(16,20,17,.12);
  border: 1px solid rgba(16,20,17,.12);
}

.pain-card {
  min-height: 245px;
  padding: 30px;
  background: var(--light);
  transition: background .25s ease, transform .25s ease;
}

.pain-card:hover {
  background: #f7faf6;
  transform: translateY(-3px);
}

.pain-card > span {
  color: #4d7f5c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.pain-card h3 {
  margin: 50px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}

.pain-card p {
  margin: 0;
  color: var(--light-muted);
  font-size: .92rem;
}

.automation-section,
.services-section,
.tech-section,
.about-section {
  padding: 120px 0;
}

.split-layout,
.case-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--green);
  font-weight: 700;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.automation-diagram {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #0f1511, #0b100d);
  overflow: hidden;
}

.automation-diagram svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.automation-diagram path {
  fill: none;
  stroke: rgba(98,217,139,.28);
  stroke-width: 1.3;
  stroke-dasharray: 5 8;
}

.diagram-source,
.diagram-output,
.diagram-core {
  position: absolute;
  z-index: 2;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: #131a15;
  padding: 10px 13px;
  font-size: .72rem;
}

.diagram-source { left: 5%; }
.source-one { top: 13%; }
.source-two { top: 46%; }
.source-three { bottom: 13%; }

.diagram-output { right: 5%; }
.output-one { top: 13%; }
.output-two { top: 46%; }
.output-three { bottom: 13%; }

.diagram-core {
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border-color: rgba(98,217,139,.55);
  background: radial-gradient(circle, rgba(98,217,139,.2), rgba(17,25,19,.96) 64%);
  box-shadow: 0 0 44px rgba(56,152,83,.18);
}

.diagram-core span {
  color: #8ca596;
  font-size: .58rem;
  letter-spacing: .12em;
}

.diagram-core strong {
  color: var(--green);
  font-size: 1rem;
  letter-spacing: .08em;
}

.services-section {
  padding-top: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.service-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(19,27,21,.8), rgba(14,20,16,.8));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(98,217,139,.3);
  background: linear-gradient(180deg, rgba(24,35,27,.95), rgba(14,20,16,.95));
}

.service-card.wide-card {
  grid-column: 1 / -1;
  min-height: 190px;
}

.service-number {
  color: var(--green);
  font-size: .7rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.case-layout {
  align-items: stretch;
}

.case-label {
  margin-top: 20px !important;
  color: #1f6338 !important;
  font-size: .82rem !important;
  font-weight: 800;
  letter-spacing: .12em;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.case-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(16,20,17,.12);
  border-radius: 999px;
  font-size: .72rem;
  color: #4c5d51;
  background: rgba(255,255,255,.34);
}

.case-visual {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(16,20,17,.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(14,17,15,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,17,15,.035) 1px, transparent 1px),
    #f6f8f5;
  background-size: 28px 28px, 28px 28px, auto;
}

.case-stage {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(16,20,17,.12);
  background: rgba(255,255,255,.76);
}

.case-stage.active {
  border-color: rgba(39,116,66,.38);
  box-shadow: 0 14px 40px rgba(45,103,64,.1);
}

.case-stage span {
  color: #3d7850;
  font-size: .64rem;
  font-weight: 800;
}

.case-stage strong {
  margin-top: 24px;
  font-size: .95rem;
}

.case-stage small {
  margin-top: 4px;
  color: #78837c;
  font-size: .66rem;
}

.case-arrow {
  align-self: center;
  color: #6b7c70;
}

.tech-section {
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.tech-item {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  color: #d7dfd9;
  font-size: .88rem;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  border-color: rgba(98,217,139,.28);
  background: rgba(98,217,139,.04);
}

.tech-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.tech-generic {
  padding-inline: 16px;
  text-align: center;
}

.generic-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(98,217,139,.4);
  border-radius: 8px;
  color: var(--green);
}

.about-section {
  padding-top: 32px;
}

.about-layout {
  grid-template-columns: .72fr 1.28fr;
}

.portrait-placeholder {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 50% 35%, #203c29, #101811 48%, #0b100d 100%);
}

.portrait-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: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.3));
}

.portrait-initials {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(98,217,139,.35);
  background: rgba(8,13,9,.42);
  color: var(--green);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -.05em;
  box-shadow: 0 0 55px rgba(45,141,71,.14);
}

.portrait-placeholder > span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #6e7f72;
  font-size: .62rem;
  letter-spacing: .14em;
}

.about-copy p + p {
  margin-top: 18px;
}

.contact-section {
  padding: 118px 0;
  background: var(--light);
  color: var(--light-text);
}

.contact-layout {
  align-items: start;
}

.contact-copy p {
  color: var(--light-muted);
}

.contact-note {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid #3d9b5d;
  background: rgba(255,255,255,.48);
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  margin-top: 3px;
  color: #647067;
  font-size: .82rem;
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(15,20,16,.1);
  box-shadow: 0 28px 70px rgba(18,36,23,.08);
}

.form-row.two-cols {
  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: #303a33;
  font-size: .78rem;
  font-weight: 700;
}

.contact-form label small {
  font-weight: 500;
  color: #7a857d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dfda;
  border-radius: 12px;
  background: #f9fbf9;
  color: #151b17;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #55b875;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(85,184,117,.1);
}

.consent-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}

.consent-row input {
  width: 17px;
  min-height: auto;
  height: 17px;
  margin: 3px 0 0;
  accent-color: #3d9b5d;
}

.consent-row span {
  margin: 0 !important;
  color: #647067 !important;
  font-size: .71rem !important;
  font-weight: 500 !important;
}

.consent-row a {
  color: #2f7f49;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-helper,
.form-status {
  margin: 11px 0 0;
  text-align: center;
  color: #7a857d;
  font-size: .68rem;
}

.form-helper strong {
  color: #5d685f;
}

.form-status {
  min-height: 1.2em;
  color: #2f7f49;
  font-weight: 700;
}

.site-footer {
  background: #080c09;
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #748078;
  font-size: .76rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:hover {
  color: var(--green);
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-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;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-layout,
  .split-layout,
  .case-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 760px;
    width: 100%;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: .8fr 1.2fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: relative;
    background: var(--bg);
  }

  .header-inner {
    min-height: 66px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 1.13rem;
  }

  .hero,
  .pain-section,
  .case-section,
  .automation-section,
  .tech-section,
  .contact-section,
  .about-section {
    padding: 82px 0;
  }

  .services-section {
    padding: 20px 0 82px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.25rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .flow-board {
    min-height: 360px;
  }

  .flow-node {
    width: 142px;
    padding: 12px;
  }

  .flow-node strong {
    font-size: .8rem;
  }

  .node-a { left: 4%; top: 10%; }
  .node-b { left: 30%; top: 38%; }
  .node-c { right: 3%; bottom: 10%; }

  .metric-b {
    display: none;
  }

  .section-heading h2,
  .case-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3.15rem);
  }

  .pain-grid,
  .service-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 210px;
  }

  .pain-card h3 {
    margin-top: 34px;
  }

  .service-card.wide-card {
    grid-column: auto;
  }

  .automation-diagram {
    min-height: 390px;
  }

  .diagram-core {
    width: 110px;
    height: 110px;
  }

  .case-visual {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .case-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .case-stage {
    min-height: 140px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .portrait-placeholder {
    min-height: 390px;
  }

  .form-row.two-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-inner {
    min-height: 94px;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 60;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    background: var(--green);
    color: #071108;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(6,15,9,.4), 0 0 0 1px rgba(255,255,255,.12);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .mobile-sticky-cta.is-hidden {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
  }
}
