/* ========== Global styles ========== */
:root {
  --bg: #020617;
  --bg-alt: #050818;
  --bg-elevated: #030712;
  --accent: #fb6a33;
  --accent-soft: rgba(251, 106, 51, 0.18);
  --accent-strong: #f97316;
  --accent-2: #4f46e5;
  --border-subtle: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.38);
  --text: #f9fafb;
  --muted: #9ca3af;
  --muted-soft: #6b7280;
  --danger: #f97373;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.9);
  --shadow-subtle: 0 16px 40px rgba(15, 23, 42, 0.65);
  --wrapper-width: min(1120px, 100% - 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.25) 0, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(251, 146, 60, 0.18) 0, transparent 45%),
    radial-gradient(circle at bottom, rgba(15, 23, 42, 1) 0, #020617 55%);
  min-height: 100vh;
  scroll-behavior: smooth;
}

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

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

.page {
  min-height: 100vh;
}

/* ========== Layout helpers ========== */

.wrapper {
  width: var(--wrapper-width);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0 5.25rem;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8) 0, rgba(2, 6, 23, 1) 50%);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(79, 70, 229, 0.25) 0, transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

/* ========== Header / Nav ========== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.75), transparent);
  border-bottom: 1px solid rgba(30, 64, 175, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background:
    radial-gradient(circle at 25% 20%, #f97316, #fb6a33 35%, #4f46e5 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.brand-mark.small {
  width: 32px;
  height: 32px;
}

.brand-initial {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.76rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(251, 146, 60, 0.6);
  background: radial-gradient(circle at top, rgba(251, 146, 60, 0.2), transparent 55%);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.nav-cta::after {
  content: "→";
  font-size: 0.9rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  border-color: rgba(251, 146, 60, 0.85);
  background: radial-gradient(circle at top, rgba(251, 146, 60, 0.3), transparent 60%);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* ========== Hero ========== */

.hero {
  padding: 4.25rem 0 4.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3.75rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-soft);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #e5e7eb;
  max-width: 32rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

/* Buttons */

.btn {
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border 0.15s ease, background 0.2s ease, color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1120;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.95);
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.7);
  color: #f3f4f6;
}

.btn.ghost:hover {
  border-color: rgba(248, 250, 252, 0.85);
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

.btn.full {
  width: 100%;
}

/* Hero metrics */

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  box-shadow: var(--shadow-subtle);
}

.metric {
  min-width: 9rem;
}

.metric-value {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Hero visual */

.hero-visual {
  position: relative;
}

.hero-orbit {
  position: relative;
  width: min(320px, 75vw);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.1), transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-orbit-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    conic-gradient(from 230deg, rgba(79, 70, 229, 1), rgba(251, 146, 60, 1), rgba(79, 70, 229, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-orbit-core::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0, rgba(249, 250, 251, 0.12), transparent 55%);
}

.hero-orbit-core span {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-orbit-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed rgba(148, 163, 184, 0.4);
}

.hero-orbit-ring-2 {
  inset: 3%;
  border-style: solid;
  border-color: rgba(148, 163, 184, 0.25);
}

.hero-orbit-tag {
  position: absolute;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
  backdrop-filter: blur(10px);
}

.hero-orbit-tag-1 {
  top: 10%;
  right: -4%;
}

.hero-orbit-tag-2 {
  bottom: 8%;
  left: -5%;
}

.hero-orbit-tag-3 {
  bottom: 16%;
  right: 8%;
}

.hero-caption {
  margin-top: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 1);
  color: #e5e7eb;
}

/* ========== Sections shared ========== */

.section-header {
  max-width: 40rem;
  margin-bottom: 2.6rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 2vw + 0.8rem, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--muted);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 0.65rem;
}

.eyebrow.small {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

/* ========== Services ========== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.9));
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-intro {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-card li {
  font-size: 0.86rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.05rem;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ========== Risk-free / Process ========== */

.section.section-alt .split-left {
  position: relative;
  z-index: 1;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.pill-card {
  border-radius: var(--radius-lg);
  padding: 1.05rem 1.05rem 1rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.86rem;
  color: var(--muted);
}

.pill-card h3 {
  font-size: 0.94rem;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.steps-card {
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 1.5rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.steps-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.22) 0, transparent 45%),
    radial-gradient(circle at bottom right, rgba(251, 146, 60, 0.18) 0, transparent 50%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

.steps-card > * {
  position: relative;
  z-index: 1;
}

.steps-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ========== About ========== */

.about-grid {
  align-items: stretch;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
}

.about-points h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.about-points p {
  color: var(--muted);
}

.about-mission {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.42), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.55);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.about-mission h3 {
  font-size: 1.1rem;
  margin: 0.4rem 0 0.6rem;
}

.about-mission p {
  color: #e5e7eb;
  margin-bottom: 0.65rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.stat-value {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ========== Work / Portfolio ========== */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.work-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem 1.4rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
}

.work-card h3 {
  font-size: 1rem;
  margin: 0.4rem 0 0.45rem;
}

.work-card p {
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.work-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.work-card li {
  color: #e5e7eb;
  font-size: 0.84rem;
  margin-bottom: 0.3rem;
  padding-left: 0.95rem;
  position: relative;
}

.work-card li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.78rem;
  color: var(--accent-strong);
}

.work-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  font-size: 0.74rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.centered-cta {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
}

/* ========== Contact ========== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.contact-highlights {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.3rem;
}

.contact-highlights h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.contact-highlights ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-highlights li {
  margin-bottom: 0.32rem;
}

.contact-meta {
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.meta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-soft);
}

.meta-value {
  display: block;
  font-weight: 500;
}

.meta-value:hover {
  text-decoration: underline;
}

.meta-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Contact form */

.contact-form {
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.5rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.form-row label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-soft);
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(59, 130, 246, 0.9);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7);
  background: rgba(15, 23, 42, 1);
}

textarea {
  resize: vertical;
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.hidden {
  display: none;
}

/* ========== Footer ========== */

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.8);
  padding: 1.5rem 0 2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 1));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-title {
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: #e5e7eb;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted-soft);
}

.footer-note {
  text-align: right;
}

/* ========== Responsive ========== */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.8rem;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

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

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

  .contact-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0.75rem 1.5rem 1.1rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

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

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

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

  .about-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.4rem;
  }

  .section {
    padding-top: 4.25rem;
    padding-bottom: 4.3rem;
  }

  .wrapper {
    width: min(100% - 2.2rem, 100%);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metrics {
    flex-direction: column;
  }

  .metric {
    min-width: unset;
  }
}
