:root {
  --bg: #eef7ff;
  --bg-deep: #dcefff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --surface-accent: rgba(225, 241, 255, 0.78);
  --text: #12304f;
  --muted: #4c6884;
  --accent: #4ea4e7;
  --accent-soft: #88c8f5;
  --accent-deep: #0d6eb8;
  --line: rgba(78, 164, 231, 0.22);
  --shadow: 0 24px 60px rgba(31, 93, 146, 0.14);
  --shadow-soft: 0 16px 34px rgba(31, 93, 146, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(136, 200, 245, 0.35), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(78, 164, 231, 0.18), transparent 22%),
    linear-gradient(180deg, #f8fcff 0%, #eef7ff 46%, #e8f4ff 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(78, 164, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 164, 231, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 84%);
}

body::after {
  background:
    linear-gradient(130deg, transparent 0%, rgba(255, 255, 255, 0.5) 46%, transparent 62%);
  transform: translateX(-100%);
  animation: sheen 12s linear infinite;
}

.page-shell {
  width: min(1320px, calc(100% - 96px));
  margin: 0 auto;
  padding: 24px 0 80px;
  position: relative;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  margin-bottom: 18px;
  padding: 12px 20px;
  border: 1px solid rgba(78, 164, 231, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(31, 93, 146, 0.08);
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(78, 164, 231, 0.26);
  box-shadow: 0 18px 40px rgba(31, 93, 146, 0.12);
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.hero,
.section,
.legacy-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero {
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(136, 200, 245, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 250, 255, 0.76));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 48%;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 200, 245, 0.24), transparent 68%);
  filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.topbar-actions,
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand,
.nav-link,
.eyebrow,
.timeline-date,
.highlight-year,
.credential span,
.floating-chip,
.portrait-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand {
  font-weight: 800;
  color: var(--accent-deep);
}

.nav-link {
  text-decoration: none;
  color: var(--accent-deep);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(78, 164, 231, 0.18);
  background: rgba(255, 255, 255, 0.6);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  border-color: rgba(78, 164, 231, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(78, 164, 231, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(78, 164, 231, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(31, 93, 146, 0.12);
}

.mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.mobile-menu-link {
  text-decoration: none;
  color: var(--accent-deep);
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(239, 247, 255, 0.86);
}

.hero-grid,
.intro-grid,
.split-grid,
.credentials-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: start;
  position: relative;
  z-index: 1;
  gap: 34px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-copy-body {
  display: grid;
  gap: 28px;
}

.hero-copy h1,
.section-heading h2,
.legacy-card h2,
.portrait-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.94;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 6vw, 6.1rem);
  max-width: 8.4ch;
  margin-bottom: 24px;
}

.lead,
.card p,
.timeline-item p,
.panel li,
.credential p,
.legacy-card p,
.portrait-card p,
.highlight-card p,
.work-card p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 36ch;
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 18px 34px rgba(13, 110, 184, 0.24);
}

.button-secondary {
  color: var(--accent-deep);
  border: 1px solid rgba(78, 164, 231, 0.22);
  background: rgba(255, 255, 255, 0.66);
}

.metric-icon,
.section-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(78, 164, 231, 0.16), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(78, 164, 231, 0.16);
}

.metric-icon svg,
.section-icon svg,
.work-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-deep);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card,
.panel,
.credential,
.highlight-card,
.portrait-card,
.timeline-item,
.legacy-card,
.hero-composite {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    var(--shadow-soft);
}

.card,
.panel,
.credential,
.highlight-card,
.portrait-card,
.hero-composite {
  border-radius: 26px;
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.card::after,
.panel::after,
.credential::after,
.highlight-card::after,
.portrait-card::after,
.timeline-item::after,
.legacy-card::after,
.hero-composite::after,
.company-token::after,
.workplace-photo-card::after,
.depth-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.42), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.card:hover,
.panel:hover,
.credential:hover,
.highlight-card:hover,
.portrait-card:hover,
.timeline-item:hover,
.legacy-card:hover,
.hero-composite:hover {
  border-color: rgba(78, 164, 231, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 50px rgba(31, 93, 146, 0.16);
}

.card:hover::after,
.panel:hover::after,
.credential:hover::after,
.highlight-card:hover::after,
.portrait-card:hover::after,
.timeline-item:hover::after,
.legacy-card:hover::after,
.hero-composite:hover::after,
.company-token:hover::after,
.workplace-photo-card:hover::after,
.depth-panel:hover::after {
  opacity: 1;
}

.hero-panel {
  display: block;
}

.company-symbol {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-deep));
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-composite {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 249, 255, 0.92));
}

.portrait-card {
  min-height: auto;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.96)),
    var(--surface);
}

.portrait-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 164, 231, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 164, 231, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

.hero-photo-stage {
  position: relative;
  inset: auto;
  height: 520px;
  transform: none;
}

.hero-photo-glow {
  position: absolute;
  inset: 10px 10px -4px 10px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 20%, rgba(78, 164, 231, 0.28), rgba(78, 164, 231, 0.02) 68%);
  filter: blur(14px);
}

.hero-photo-frame {
  position: relative;
  height: 100%;
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(212, 234, 250, 0.9));
  border: 1px solid rgba(78, 164, 231, 0.26);
  box-shadow: 0 20px 38px rgba(31, 93, 146, 0.16);
}

.hero-photo-real {
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fcff 0%, #d9efff 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  margin: 0;
}

.hero-photo-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  display: block;
  transform: scale(1.05);
}

.hero-photo-real::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 42, 72, 0.16)),
    linear-gradient(180deg, transparent 50%, rgba(6, 33, 56, 0.38) 100%);
}

.section {
  margin-top: 24px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 255, 0.84));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 200, 245, 0.18), transparent 70%);
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.section-heading h2,
.legacy-card h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  margin-top: 8px;
}

.intro-grid,
.split-grid,
.credentials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.intro-grid-uneven {
  grid-template-columns: 1fr 1fr 1.15fr;
  align-items: stretch;
}

.spotlight-card {
  background:
    radial-gradient(circle at top right, rgba(78, 164, 231, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 255, 0.88));
  transform: translateY(24px);
}

.card h3,
.panel h3,
.credential h3,
.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--accent-deep);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 1;
}

.workplace-section {
  background:
    radial-gradient(circle at top right, rgba(78, 164, 231, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 249, 255, 0.86));
}

.workplace-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.workplace-photo-card,
.depth-panel {
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(31, 93, 146, 0.14);
}

.workplace-photo-card {
  min-height: 420px;
  border-radius: 36px 36px 120px 36px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(9, 45, 74, 0.02), rgba(9, 45, 74, 0.5)),
    url("./assets/chimbote.jpg") center/cover no-repeat;
  transform-style: preserve-3d;
}

.workplace-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(7, 35, 61, 0.62)),
    linear-gradient(120deg, rgba(78, 164, 231, 0.22), transparent 42%);
}

.workplace-photo-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(7, 35, 61, 0.48);
  backdrop-filter: blur(10px);
  color: #fff;
  transform: translateZ(28px);
}

.photo-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workplace-photo-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.workplace-photo-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.workplace-stack {
  position: relative;
  min-height: 420px;
  perspective: 1400px;
}

.depth-panel {
  position: absolute;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.depth-panel-main {
  inset: 40px 20px 80px 24px;
  z-index: 3;
  transform: rotate(-6deg) translateZ(60px);
}

.depth-panel-side {
  right: 8px;
  width: 220px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(223, 241, 255, 0.86));
}

.depth-panel-side strong,
.depth-panel-main h3 {
  color: var(--accent-deep);
}

.depth-panel-side span {
  color: var(--muted);
}

.depth-panel-side {
  top: 10px;
  transform: rotate(9deg) translateZ(22px);
}

.depth-panel-side.alt {
  top: auto;
  bottom: 18px;
  left: 0;
  right: auto;
  transform: rotate(-10deg) translateZ(12px);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 145px;
  width: 1px;
  background: linear-gradient(180deg, rgba(78, 164, 231, 0.46), rgba(78, 164, 231, 0.08));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 24px;
  border-radius: 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 139px;
  top: 28px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 0 0 6px rgba(78, 164, 231, 0.12);
}

.timeline-date {
  color: var(--accent-deep);
  font-weight: 800;
  padding-top: 4px;
}

.panel ul {
  margin: 0;
  padding-left: 18px;
}

.panel li + li {
  margin-top: 10px;
}

.companies-section {
  background:
    radial-gradient(circle at top left, rgba(78, 164, 231, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 255, 0.86));
}

.company-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.company-token {
  padding: 16px;
  border-radius: 28px;
  align-items: flex-start;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.company-token strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-deep);
}

.company-token p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.credential {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credential span {
  color: var(--accent);
  font-weight: 800;
}

.credentials-staggered .credential:nth-child(2) {
  transform: translateY(24px);
}

.credentials-staggered .credential:nth-child(4) {
  transform: translateY(24px);
}

.legacy-card {
  margin-top: 0;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 24%),
    linear-gradient(145deg, #0e5c98, #69b9ef);
  box-shadow: var(--shadow);
}

.legacy-card .eyebrow,
.legacy-card h2,
.legacy-card p {
  color: #fff;
}

.legacy-card p {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.84);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .split-grid,
  .credentials-grid,
  .company-cloud,
  .workplace-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .page-shell {
    width: min(100% - 40px, 1320px);
  }

  .hero-copy {
    gap: 18px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 44px;
  }

  .timeline-item::before {
    left: 14px;
    top: 26px;
  }

  .chip-top,
  .chip-middle,
  .chip-bottom {
    right: 18px;
  }

  .portrait-card {
    padding: 16px;
  }

  .hero-photo-stage {
    height: 420px;
  }

  .workplace-stack {
    min-height: 360px;
  }

  .depth-panel-main,
  .depth-panel-side,
  .depth-panel-side.alt {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
    transform: none;
  }

  .spotlight-card,
  .credentials-staggered .credential:nth-child(2),
  .credentials-staggered .credential:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1320px);
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .site-header {
    top: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 22px;
  }

  .site-header.is-scrolled {
    padding: 9px 12px;
  }

  .hero,
  .section,
  .legacy-card {
    border-radius: 24px;
  }

  .hero,
  .section {
    padding: 24px 20px;
  }

  .topbar {
    margin-bottom: 0;
    flex-direction: row;
    align-items: center;
  }

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

  .desktop-nav {
    display: none;
  }

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

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy-top {
    order: 1;
  }

  .hero-panel {
    order: 2;
  }

  .hero-copy-body {
    order: 3;
    display: grid;
    gap: 20px;
  }

  .portrait-card {
    padding: 14px;
  }

  .hero-photo-stage {
    height: 380px;
  }

  .workplace-photo-card {
    min-height: 340px;
    border-radius: 28px 28px 70px 28px;
  }

  .workplace-photo-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .logo-ribbon {
    margin-top: 22px;
  }

}
