:root {
  color-scheme: light;
  --bg: #f7f8f3;
  --paper: #fffdf6;
  --panel: #ffffff;
  --panel-2: #eef7f4;
  --ink: #101312;
  --muted: #5f6865;
  --line: rgba(16, 19, 18, 0.15);
  --line-strong: rgba(16, 19, 18, 0.28);
  --cyan: #0e7490;
  --purple: #7c3aed;
  --lavender: #a78bfa;
  --green: #217a4d;
  --dark: #111716;
  --dark-2: #18201e;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(16, 19, 18, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 19, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, var(--bg) 48%, #edf5f1 100%);
  background-size: 36px 36px, 36px 36px, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

h1 {
  font-size: clamp(48px, 8vw, 112px);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 860px;
}

h2 {
  font-size: clamp(34px, 5.4vw, 72px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 246, 0.88);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  height: 68px;
  left: 0;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  font-weight: 780;
  gap: 10px;
  min-width: 0;
}

.brand img {
  border-radius: 8px;
  display: block;
}

.site-nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 720;
  gap: 18px;
  text-transform: uppercase;
}

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

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

.header-action,
.primary-link {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 760;
  height: 40px;
  justify-content: center;
  min-width: 62px;
  padding: 0 16px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.header-action:hover,
.primary-link:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  padding: 128px 22px 76px;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero::after {
  background: linear-gradient(180deg, rgba(247, 248, 243, 0) 0%, var(--bg) 100%);
  bottom: 0;
  content: "";
  height: 180px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(124, 58, 237, 0.12) 49% 51%, transparent 51% 100%),
    linear-gradient(rgba(14, 116, 144, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 122, 77, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  inset: 0;
  mask-image: linear-gradient(180deg, black 0%, black 72%, transparent 100%);
  opacity: 0.86;
  position: absolute;
}

.ascii-field {
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
  z-index: 1;
}

.hero:hover .ascii-field,
.hero.ascii-active .ascii-field {
  opacity: 0.9;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  margin: 0 auto;
  max-width: var(--max);
  min-height: calc(100svh - 204px);
  position: relative;
  z-index: 3;
}

.section-kicker {
  color: var(--purple);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  max-width: 670px;
}

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

.copy-command {
  align-items: center;
  background: rgba(255, 253, 246, 0.94);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 18px;
  min-height: 48px;
  padding: 0 8px 0 16px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.copy-command:hover {
  background: #ffffff;
  border-color: rgba(14, 116, 144, 0.46);
  transform: translateY(-1px);
}

.copy-command span:first-child {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.copy-status {
  align-items: center;
  background: var(--cyan);
  color: #ffffff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 780;
  height: 34px;
  justify-content: center;
  min-width: 64px;
  padding: 0 10px;
}

.hero-system {
  color: #eaf8f5;
  position: relative;
}

.desktop-bar {
  align-items: center;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 11px;
  gap: 12px;
  height: 34px;
  overflow: hidden;
  padding: 0 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.memory-window {
  background: linear-gradient(180deg, var(--dark-2), #0c1110);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(16, 19, 18, 0.28);
  overflow: hidden;
}

.window-bar {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
}

.window-bar span {
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.memory-window-body {
  padding: 16px;
}

.agent-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.agent-tabs span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(234, 248, 245, 0.68);
  font-size: 11px;
  overflow: hidden;
  padding: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-tabs .active {
  border-color: rgba(167, 139, 250, 0.72);
  color: #eee7ff;
}

.memory-window pre,
.code-panel pre {
  margin: 0;
  overflow-x: auto;
}

.memory-window pre {
  padding: 4px 2px 2px;
}

.memory-window code {
  color: rgba(234, 248, 245, 0.9);
  font-size: 13px;
  line-height: 1.78;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  min-height: 100svh;
  padding: 92px 22px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-heading {
  margin-bottom: 34px;
  max-width: 900px;
}

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

.case-layout {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 26px;
}

.case-layout p,
.workflow-copy p,
.use-grid p,
.metric-grid p,
.sdk-notes p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.case-layout p {
  font-size: 20px;
}

.live-demo {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
}

.demo-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin-top: 24px;
}

.demo-panel {
  background: linear-gradient(180deg, var(--dark-2), #0d1110);
  border: 1px solid rgba(16, 19, 18, 0.28);
  box-shadow: 0 24px 70px rgba(16, 19, 18, 0.16);
  color: #edf9f5;
  overflow: hidden;
  padding: 14px;
}

.demo-status {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 40px;
  padding: 0 12px;
}

.status-dot {
  animation: pulseDot 1.8s ease-in-out infinite;
  background: var(--lavender);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.demo-status strong {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-status em {
  color: rgba(237, 249, 245, 0.64);
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
}

.demo-track {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0;
  position: relative;
}

.demo-track::before {
  background: linear-gradient(90deg, rgba(167, 139, 250, 0), rgba(167, 139, 250, 0.72), rgba(14, 116, 144, 0));
  content: "";
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 29px;
}

.demo-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 134px;
  padding: 14px;
  position: relative;
}

.demo-step span {
  align-items: center;
  background: var(--dark);
  border: 1px solid rgba(167, 139, 250, 0.5);
  color: #eee7ff;
  display: inline-flex;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 780;
  height: 28px;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  width: 34px;
  z-index: 1;
}

.demo-step strong {
  color: #ffffff;
  display: block;
  margin-bottom: 7px;
}

.demo-step p {
  color: rgba(237, 249, 245, 0.68);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.step-one {
  animation: demoFocus 7.2s ease-in-out infinite;
}

.step-two {
  animation: demoFocus 7.2s ease-in-out 2.4s infinite;
}

.step-three {
  animation: demoFocus 7.2s ease-in-out 4.8s infinite;
}

.demo-terminal {
  background: #070a09;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 176px;
  padding: 16px;
}

.demo-line {
  color: rgba(237, 249, 245, 0.86);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.72;
  opacity: 0;
  overflow-wrap: anywhere;
  transform: translateY(5px);
}

.demo-line span {
  color: var(--lavender);
  display: inline-block;
  width: 18px;
}

.line-one {
  animation: revealLine 7.2s ease-in-out 0.1s infinite;
}

.line-two {
  animation: revealLine 7.2s ease-in-out 1.1s infinite;
}

.line-three {
  animation: revealLine 7.2s ease-in-out 2.4s infinite;
}

.line-four {
  animation: revealLine 7.2s ease-in-out 4s infinite;
}

.line-five {
  animation: revealLine 7.2s ease-in-out 5s infinite;
}

.workflow {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
}

.workflow-copy p {
  font-size: 18px;
  margin-top: 24px;
}

.workflow-terminal {
  background: var(--dark);
  border: 1px solid rgba(16, 19, 18, 0.28);
  color: #edf9f5;
  padding: 10px;
}

.terminal-line {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(90px, 0.34fr) minmax(0, 1fr);
  min-height: 68px;
  padding: 14px;
}

.terminal-line + .terminal-line {
  margin-top: 8px;
}

.terminal-line span {
  color: var(--lavender);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.terminal-line strong {
  color: #ffffff;
}

.terminal-line em {
  color: rgba(237, 249, 245, 0.68);
  font-style: normal;
}

.use-cases,
.code-section,
.final-cta {
  border-top: 1px solid var(--line);
  max-width: none;
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.use-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-grid article,
.metric-grid article,
.sdk-notes article {
  background: rgba(255, 253, 246, 0.72);
  border: 1px solid var(--line);
  min-height: 190px;
  padding: 22px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.use-grid article:hover,
.metric-grid article:hover,
.sdk-notes article:hover {
  background: #ffffff;
  border-color: rgba(14, 116, 144, 0.42);
  transform: translateY(-3px);
}

.use-grid code {
  color: var(--green);
  display: block;
  font-size: 12px;
  margin-bottom: 30px;
  overflow-wrap: anywhere;
}

.dashboard-section {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.76fr) minmax(460px, 1fr);
}

.dashboard-copy p:last-of-type {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 24px 0 28px;
}

.dashboard-preview {
  background: linear-gradient(180deg, var(--dark-2), #0d1110);
  border: 1px solid rgba(16, 19, 18, 0.28);
  box-shadow: 0 24px 70px rgba(16, 19, 18, 0.16);
  color: #edf9f5;
  overflow: hidden;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 340px;
}

.dashboard-shell aside {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 8px;
  grid-auto-rows: min-content;
  padding: 16px;
}

.dashboard-shell aside strong {
  color: rgba(237, 249, 245, 0.68);
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.dashboard-shell aside span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
  font-size: 13px;
  padding: 10px;
}

.dashboard-shell aside .active {
  border-color: rgba(167, 139, 250, 0.72);
  box-shadow: inset 3px 0 0 var(--lavender);
}

.dashboard-shell aside em {
  color: rgba(237, 249, 245, 0.56);
  display: block;
  font-size: 11px;
  font-style: normal;
  margin-top: 5px;
}

.dashboard-main {
  padding: 16px;
}

.dashboard-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.dashboard-stats span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(237, 249, 245, 0.68);
  font-size: 12px;
  padding: 12px;
}

.dashboard-stats strong {
  color: #ffffff;
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.dashboard-tabs span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(237, 249, 245, 0.68);
  font-size: 12px;
  padding: 7px 10px;
}

.dashboard-tabs .active {
  background: var(--purple);
  border-color: var(--purple);
  color: #ffffff;
}

.dashboard-table {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-table span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(237, 249, 245, 0.78);
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
  padding: 14px 2px;
}

.metrics {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
}

.metric-grid {
  display: grid;
  gap: 12px;
}

.metric-grid article {
  display: grid;
  gap: 10px;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 0;
}

.metric-grid span {
  color: var(--purple);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 760;
  grid-row: span 2;
}

.metric-grid strong {
  font-size: 20px;
}

.spec-sheet {
  border-top: 1px solid var(--line);
}

.spec-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.62fr);
}

.spec-map {
  align-items: center;
  background: var(--dark);
  border: 1px solid rgba(16, 19, 18, 0.28);
  color: #edf9f5;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(9, auto);
  justify-content: space-between;
  min-height: 260px;
  overflow: hidden;
  padding: 26px;
}

.spec-map span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 780;
  padding: 12px 14px;
  text-transform: uppercase;
}

.spec-map i {
  background: var(--lavender);
  display: block;
  height: 1px;
  min-width: 24px;
}

.spec-list {
  border-top: 1px solid var(--line-strong);
}

.spec-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 66px;
}

.spec-list span,
.sdk-notes span {
  color: var(--purple);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}

.code-layout {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
}

.code-panel {
  background: linear-gradient(180deg, var(--dark-2), #0d1110);
  border: 1px solid rgba(16, 19, 18, 0.28);
  box-shadow: 0 24px 70px rgba(16, 19, 18, 0.16);
  overflow: hidden;
}

.code-panel pre {
  padding: 24px;
}

.code-panel code {
  color: #f1fbf8;
  font-size: 14px;
  line-height: 1.68;
}

.tok-keyword {
  color: #7dd3fc;
}

.tok-string {
  color: #c4b5fd;
}

.tok-prop {
  color: #86efac;
}

.tok-fn {
  color: #ddd6fe;
}

.sdk-notes {
  display: grid;
  gap: 12px;
}

.sdk-notes article {
  min-height: 0;
}

.sdk-notes span {
  display: block;
  margin-bottom: 24px;
}

.final-cta h2 {
  max-width: 860px;
  margin-bottom: 28px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 26px 22px 34px;
  scroll-snap-align: end;
}

.site-footer span {
  color: var(--ink);
  font-weight: 780;
}

@keyframes demoFocus {
  0%,
  30%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(0);
  }

  10%,
  20% {
    border-color: rgba(167, 139, 250, 0.7);
    transform: translateY(-3px);
  }
}

@keyframes revealLine {
  0%,
  12% {
    opacity: 0;
    transform: translateY(5px);
  }

  18%,
  74% {
    opacity: 1;
    transform: translateY(0);
  }

  90%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.84);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot,
  .step-one,
  .step-two,
  .step-three,
  .line-one,
  .line-two,
  .line-three,
  .line-four,
  .line-five {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-grid,
  .live-demo,
  .workflow,
  .dashboard-section,
  .metrics,
  .spec-layout,
  .code-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-system {
    margin-bottom: 34px;
  }

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

  .spec-map {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .spec-map i {
    height: 22px;
    justify-self: center;
    min-width: 1px;
    width: 1px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 62px;
  }

  .site-header {
    height: 62px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-action {
    height: 36px;
    padding: 0 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 16px 66px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 72px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .copy-command,
  .primary-link {
    width: 100%;
  }

  .copy-command {
    justify-content: space-between;
  }

  .desktop-bar {
    display: none;
  }

  .agent-tabs,
  .case-layout,
  .demo-track,
  .dashboard-shell,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .demo-track::before {
    bottom: 10%;
    height: auto;
    left: 31px;
    right: auto;
    top: 10%;
    width: 1px;
  }

  .memory-window code,
  .code-panel code {
    font-size: 12px;
  }

  .terminal-line {
    align-items: start;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .terminal-line em {
    grid-column: 2;
  }

  .metric-grid article,
  .spec-list article {
    grid-template-columns: 1fr;
  }

  .metric-grid span {
    grid-row: auto;
  }

  .section {
    padding-bottom: 68px;
    padding-top: 68px;
  }
}
