:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --bg-band: rgba(255, 255, 255, 0.56);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(147, 168, 172, 0.28);
  --border-strong: rgba(155, 106, 108, 0.28);
  --text: #424b54;
  --muted: #6e7a80;
  --accent: #93a8ac;
  --accent-strong: #9b6a6c;
  --accent-soft: rgba(226, 180, 189, 0.22);
  --shadow: 0 28px 80px rgba(66, 75, 84, 0.12);
  --shadow-soft: 0 18px 40px rgba(66, 75, 84, 0.08);
}

body.dark-mode {
  color-scheme: dark;
  --bg: #2f353c;
  --bg-band: rgba(66, 75, 84, 0.5);
  --surface: rgba(75, 85, 95, 0.7);
  --surface-strong: rgba(88, 99, 110, 0.84);
  --border: rgba(147, 168, 172, 0.2);
  --border-strong: rgba(226, 180, 189, 0.22);
  --text: #f7f7f7;
  --muted: #d3d8db;
  --accent: #93a8ac;
  --accent-strong: #e2b4bd;
  --accent-soft: rgba(226, 180, 189, 0.16);
  --shadow: 0 28px 80px rgba(18, 22, 28, 0.4);
  --shadow-soft: 0 18px 40px rgba(18, 22, 28, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f6 28%, #f2f4f5 100%);
  transition: background 220ms ease, color 220ms ease;
}

body.dark-mode {
  background: linear-gradient(180deg, #2b3138 0%, #353d45 48%, #2f353c 100%);
}

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

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

button,
a {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

body.dark-mode .topbar {
  background: rgba(66, 75, 84, 0.62);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 12px 26px rgba(155, 106, 108, 0.18);
}

.brand-text {
  font-weight: 700;
  white-space: nowrap;
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.topnav a {
  color: var(--muted);
  font-weight: 500;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text);
}

.theme-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.menu-toggle span {
  width: 18px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.theme-toggle:hover,
.theme-toggle:focus-visible,
.button:hover,
.button:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  transform: translateY(-2px);
}

.theme-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-moon {
  opacity: 0;
  transform: scale(0.7);
}

body.dark-mode .theme-icon-sun {
  opacity: 0;
  transform: scale(0.7);
}

body.dark-mode .theme-icon-moon {
  opacity: 1;
  transform: scale(1);
}

.section {
  padding: 56px 0;
}

.band {
  position: relative;
}

.band::before {
  content: "";
  position: absolute;
  inset: 12px -20px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--bg-band);
  box-shadow: var(--shadow-soft);
  z-index: -1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.availability-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

body.dark-mode .availability-pill {
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.hero h1,
.section-heading h2,
.experience-head h3,
.project-body h3,
.hero-profile-copy h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.hero-text,
.hero-profile-copy p,
.experience-points li,
.project-body p,
.certification-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button-primary {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #6d8ff2 55%, var(--accent-strong) 100%);
  box-shadow: 0 16px 36px rgba(155, 106, 108, 0.18);
}

.glass-panel {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-flow {
  position: relative;
  overflow: hidden;
  padding: 0;
  max-width: 100%;
}

.flow-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.flow-topbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.flow-topbar span:nth-child(1) {
  background: #6d8ff2;
}

.flow-topbar span:nth-child(2) {
  background: #b279c8;
}

.flow-topbar span:nth-child(3) {
  background: #5da67b;
}

.flow-topbar p {
  margin: 0 0 0 8px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.1fr;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(147, 168, 172, 0.16), rgba(226, 180, 189, 0.2));
}

body.dark-mode .flow-grid {
  background: linear-gradient(135deg, rgba(147, 168, 172, 0.08), rgba(226, 180, 189, 0.1));
}

.flow-box {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  font-size: 1.05rem;
  font-weight: 700;
}

body.dark-mode .flow-box {
  background: rgba(56, 64, 73, 0.88);
}

.flow-box-wide {
  grid-column: span 2;
}

.flow-box-accent {
  background: rgba(147, 168, 172, 0.18);
  border-color: rgba(155, 106, 108, 0.28);
}

body.dark-mode .flow-box-accent {
  background: rgba(226, 180, 189, 0.1);
}

.flow-line {
  position: absolute;
  left: 16%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(147, 168, 172, 0.5), rgba(226, 180, 189, 0.78), rgba(155, 106, 108, 0.42));
  transform: translateY(-50%);
}

.float-slow {
  animation: floatY 6s ease-in-out infinite;
}

.float-mid {
  animation: floatY 4.8s ease-in-out infinite;
}

.float-fast {
  animation: floatY 4s ease-in-out infinite;
}

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

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

.hero-panel {
  padding: 0;
  overflow: hidden;
  max-width: 420px;
  justify-self: end;
}

.hero-profile-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  width: 100%;
  padding: 20px 22px;
  grid-column: 1 / -1;
}

.hero-profile-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.1));
  min-height: 220px;
}

.hero-profile-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(7, 19, 31, 0.06));
}

body.dark-mode .hero-profile-media::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

.hero-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-kicker,
.experience-role,
.project-chip {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-profile-copy h2 {
  max-width: 760px;
  font-size: 1.34rem;
  line-height: 1.22;
}

.hero-profile-copy p {
  margin: 10px 0 0;
  max-width: 780px;
}

.hero-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-profile-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

body.dark-mode .hero-profile-meta span {
  background: rgba(255, 255, 255, 0.06);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
  line-height: 1.08;
}

.about-compact,
.skill-group,
.experience-card,
.project-card,
.certification-card {
  padding: 22px;
}

.about-compact {
  max-width: 100%;
  display: grid;
  gap: 12px;
}

.about-compact p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.skill-group h3 {
  margin: 0 0 16px;
  font-size: 1.08rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
  font-weight: 600;
}

body.dark-mode .pill {
  background: rgba(255, 255, 255, 0.04);
}

.experience-list {
  display: grid;
  gap: 18px;
}

.experience-card {
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.experience-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.experience-head h3 {
  font-size: 1.45rem;
  line-height: 1.15;
}

.experience-meta,
.experience-date {
  color: var(--muted);
  font-weight: 600;
}

.experience-date {
  padding-top: 2px;
  white-space: nowrap;
}

.experience-points {
  margin: 16px 0 0;
  padding-left: 20px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.project-card {
  display: grid;
  gap: 18px;
}

.project-visual {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(147, 168, 172, 0.18), rgba(226, 180, 189, 0.18)), rgba(255, 255, 255, 0.34);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.dark-mode .project-visual {
  background: linear-gradient(135deg, rgba(147, 168, 172, 0.1), rgba(226, 180, 189, 0.1)), rgba(255, 255, 255, 0.03);
}

.project-visual-alt {
  background: linear-gradient(135deg, rgba(226, 180, 189, 0.16), rgba(147, 168, 172, 0.16)), rgba(255, 255, 255, 0.34);
}

body.dark-mode .project-visual-alt {
  background: linear-gradient(135deg, rgba(226, 180, 189, 0.1), rgba(147, 168, 172, 0.09)), rgba(255, 255, 255, 0.03);
}

.project-chip {
  margin-bottom: 0;
}

.project-stack,
.security-flow {
  position: relative;
  display: grid;
  gap: 14px;
}

.project-stack::before,
.security-flow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(109, 143, 242, 0.35), rgba(155, 106, 108, 0.45));
}

.stack-node,
.security-node {
  position: relative;
  z-index: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

body.dark-mode .stack-node,
body.dark-mode .security-node {
  background: rgba(56, 64, 73, 0.9);
}

.stack-node::before,
.security-node::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(226, 180, 189, 0.12);
}

.security-node::before {
  background: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(226, 180, 189, 0.12);
}

.project-body h3 {
  font-size: 1.36rem;
  line-height: 1.18;
}

.project-body p {
  margin: 12px 0 0;
}

.project-points {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.68;
}

.project-points li + li {
  margin-top: 8px;
}

.footer {
  padding-bottom: 0;
}

.footer-copy {
  margin-bottom: 20px;
}

.footer-copy h2 {
  margin: 8px 0 0;
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.contact-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

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

.field span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  font: inherit;
  outline: none;
}

body.dark-mode .field input,
body.dark-mode .field select,
body.dark-mode .field textarea {
  background: rgba(255, 255, 255, 0.04);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.footer-links {
  display: grid;
  gap: 18px;
}

.footer-link {
  display: block;
  padding: 18px 20px;
  font-weight: 600;
  word-break: break-word;
}

.footer-bar {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer-bar p {
  margin: 0;
}

.footer-bar a {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero,
  .contact-layout,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: none;
    justify-self: stretch;
  }

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

  .flow-box-wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
  }

  .topnav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
    padding-top: 12px;
  }

  .section {
    padding: 34px 0;
  }

  .topbar {
    top: 10px;
    border-radius: 18px;
    padding: 12px 14px;
    margin-bottom: 20px;
    align-items: center;
  }

  .topnav {
    display: none;
    width: 100%;
    order: 4;
    margin-top: 6px;
    padding: 14px 10px 10px;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 1rem;
    overflow: visible;
    text-align: center;
  }

  .topbar.menu-open .topnav {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
    color: var(--accent-strong);
  }

  .theme-toggle {
    order: 2;
  }

  .brand {
    order: 1;
  }

  .topbar > .brand {
    margin-right: auto;
  }

  .topnav a {
    width: 100%;
    padding: 2px 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .hero {
    gap: 18px;
  }

  .eyebrow-row {
    gap: 10px;
    margin-bottom: 14px;
  }

  .availability-pill {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .section-heading h2,
  .footer-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .band::before {
    inset: 8px -8px;
    border-radius: 24px;
  }

  .glass-panel,
  .about-compact {
    border-radius: 22px;
  }

  .experience-head {
    flex-direction: column;
  }

  .experience-date {
    white-space: normal;
  }

  .cta-row {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-row .button {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-panel {
    justify-self: stretch;
    order: 3;
  }

  .hero-profile-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    order: 2;
  }

  .hero-profile-media {
    max-width: 180px;
    min-height: 180px;
    justify-self: center;
  }

  .hero-profile-copy h2 {
    font-size: 1.18rem;
  }

  .hero-profile-copy p {
    font-size: 0.96rem;
  }

  .hero-profile-meta {
    gap: 8px;
  }

  .hero-profile-meta span {
    font-size: 0.84rem;
    padding: 9px 12px;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .flow-box-wide {
    grid-column: span 1;
  }

  .flow-line {
    display: none;
  }

  .flow-box {
    min-height: 76px;
    font-size: 0.98rem;
  }

  .about-compact,
  .skill-group,
  .experience-card,
  .project-card,
  .certification-card,
  .contact-card,
  .footer-link {
    padding: 18px;
  }

  .project-grid,
  .contact-layout {
    gap: 14px;
  }

  .experience-points,
  .project-points {
    padding-left: 18px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-bar {
    margin-top: 24px;
    padding-top: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.96rem;
  }

  .theme-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 13vw, 2.9rem);
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .hero-profile-card {
    padding: 14px;
  }

  .hero-profile-media {
    max-width: 160px;
    min-height: 160px;
  }

  .hero-profile-copy h2 {
    font-size: 1.08rem;
  }

  .flow-topbar {
    padding: 14px 16px;
  }

  .flow-topbar p {
    font-size: 0.92rem;
  }
}
