:root {
  --background: #f7f3ea;
  --foreground: #111821;
  --ink: #111821;
  --muted: #5e6670;
  --paper: #fffaf0;
  --line: rgba(17, 24, 33, 0.14);
  --navy: #0b1f31;
  --navy-2: #123247;
  --teal: #1a7c78;
  --coral: #cf6f4b;
  --brass: #c69b52;
  --green: #4f7d62;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.nav {
  align-items: center;
  background: rgba(247, 243, 234, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
}

.wordmark {
  color: var(--ink);
  display: grid;
  gap: 3px;
  line-height: 1;
  min-width: 156px;
}

.wordmark-top {
  align-items: center;
  display: inline-flex;
  font-size: 1.08rem;
  gap: 8px;
  letter-spacing: 0.12em;
}

.wordmark-bottom {
  color: var(--coral);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
}

.wordmark-lift {
  border-bottom: 3px solid var(--coral);
  border-right: 3px solid var(--coral);
  display: inline-block;
  height: 12px;
  transform: rotate(-45deg) translateY(2px);
  width: 12px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
}

.nav-links a {
  color: #34414c;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hero {
  background: var(--navy);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: min(820px, calc(100vh - 68px));
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 17, 28, 0.98) 0%, rgba(7, 17, 28, 0.86) 42%, rgba(7, 17, 28, 0.18) 74%, rgba(7, 17, 28, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 17, 28, 0.02), rgba(7, 17, 28, 0.8));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.hero-content {
  align-self: center;
  min-width: 0;
  max-width: 760px;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 72px);
  position: relative;
  z-index: 1;
}

.kicker {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  letter-spacing: 0;
}

.hero h1 {
  font-size: 7rem;
  line-height: 0.92;
  margin: 0;
  max-width: 850px;
}

.hero-copy {
  color: rgba(255, 250, 240, 0.84);
  font-size: 1.22rem;
  line-height: 1.65;
  margin: 28px 0 0;
  max-width: 680px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

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

.button.primary {
  background: var(--coral);
  color: #fffaf0;
}

.button.primary:hover {
  background: #b95e3f;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.4);
  color: var(--paper);
}

.button.secondary:hover {
  border-color: var(--paper);
}

.hero-metrics {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-metrics span {
  border: 1px solid rgba(255, 250, 240, 0.25);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 9px 12px;
}

.hero-photo-stack {
  bottom: clamp(24px, 5vw, 60px);
  display: grid;
  gap: 10px;
  grid-template-columns: 1.12fr 0.88fr;
  max-width: 520px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  width: min(520px, 38vw);
  z-index: 2;
}

.hero-photo-stack figure {
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 17, 28, 0.34);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-photo-stack figure:first-child {
  grid-row: span 2;
}

.hero-photo-stack img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-photo-stack figure:first-child img {
  aspect-ratio: 4 / 5;
}

.hero-photo-stack figcaption {
  background: linear-gradient(180deg, rgba(7, 17, 28, 0), rgba(7, 17, 28, 0.78));
  bottom: 0;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  left: 0;
  letter-spacing: 0.08em;
  padding: 34px 12px 12px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}

.slogan-strip {
  align-items: center;
  background: #f8dfce;
  border-bottom: 1px solid rgba(17, 24, 33, 0.12);
  border-top: 1px solid rgba(17, 24, 33, 0.1);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slogan-strip span {
  align-items: center;
  background: rgba(255, 250, 240, 0.5);
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  justify-content: center;
  min-height: 92px;
  padding: 18px;
  text-align: center;
}

.section {
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

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

.section-heading.wide {
  max-width: 980px;
}

.section h2 {
  color: var(--ink);
  font-size: 4rem;
  line-height: 1;
  margin: 0;
  max-width: 980px;
}

.section h3 {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.18;
  margin: 0;
}

.section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 34px;
  max-width: 1160px;
}

.intro-grid p {
  font-size: 1.18rem;
  margin: 0;
}

.attitude-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  max-width: 1180px;
}

.attitude-strip article {
  background: #102936;
  border: 1px solid rgba(17, 24, 33, 0.12);
  border-radius: 8px;
  min-height: 205px;
  padding: 24px;
}

.attitude-strip h3 {
  color: var(--paper);
  font-size: 1.35rem;
  margin: 0;
}

.attitude-strip p {
  color: rgba(255, 250, 240, 0.76);
  margin-bottom: 0;
}

.signal {
  background: #102936;
  color: var(--paper);
}

.signal h2 {
  color: var(--paper);
}

.signal p {
  color: rgba(255, 250, 240, 0.74);
}

.signal-columns {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  margin-top: 40px;
}

.signal-label {
  color: #f0af81;
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.target-board,
.role-board,
.room-board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  max-width: 1120px;
}

.target-board span,
.role-board span,
.room-board span {
  align-items: center;
  border: 1px solid rgba(17, 24, 33, 0.15);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
}

.target-board span {
  background: #fffaf0;
  color: var(--ink);
  font-size: 1.12rem;
}

.role-board span {
  background: rgba(26, 124, 120, 0.24);
  border-color: rgba(255, 250, 240, 0.18);
  color: #f5fbf8;
  font-size: 0.95rem;
  min-height: 42px;
}

.room-board span {
  background: rgba(207, 111, 75, 0.22);
  border-color: rgba(255, 250, 240, 0.16);
  color: #fff2e8;
  font-size: 0.95rem;
}

.problem-band {
  align-items: center;
  background: #eaf0ec;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.problem-copy {
  max-width: 780px;
}

.problem-copy p {
  max-width: 640px;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list div {
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(17, 24, 33, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.problem-list strong,
.problem-list span {
  display: block;
}

.problem-list strong {
  color: var(--ink);
  font-size: 1.03rem;
  margin-bottom: 6px;
}

.problem-list span {
  color: var(--muted);
  line-height: 1.55;
}

.photo-proof {
  background: #fffaf0;
  color: var(--ink);
}

.photo-proof h2 {
  color: var(--ink);
}

.photo-proof p {
  color: var(--muted);
}

.room-note {
  align-items: center;
  background: #102936;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  color: var(--paper);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  margin-top: 34px;
  max-width: 1180px;
  padding: clamp(20px, 3vw, 30px);
}

.room-note div:first-child > span {
  color: #f0af81;
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.room-note h3 {
  color: var(--paper);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1.08;
  margin: 0;
  max-width: 720px;
}

.room-note p {
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
}

.room-note div:last-child {
  border-left: 1px solid rgba(255, 250, 240, 0.18);
  display: grid;
  gap: 5px;
  padding-left: 24px;
}

.room-note strong {
  color: #f0af81;
  font-size: clamp(1.35rem, 1.6vw, 1.72rem);
  line-height: 1.12;
}

.room-note div:last-child span {
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  margin-top: 42px;
}

.photo-grid figure {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 33, 0.12);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.photo-grid .feature-photo {
  grid-row: span 2;
}

.photo-grid img {
  aspect-ratio: 4 / 3;
  filter: saturate(0.98) contrast(1.02);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.photo-grid .feature-photo img {
  aspect-ratio: 4 / 5;
}

.photo-grid figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.photo-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.photo-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.selection {
  background: #f8efe7;
}

.selection-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.selection-grid article {
  background: #102936;
  border-radius: 8px;
  min-height: 260px;
  padding: 26px;
}

.selection-grid h3 {
  color: var(--paper);
}

.selection-grid p {
  color: rgba(255, 250, 240, 0.74);
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.process-section {
  background: #ffffff;
}

.step-card,
.price-card,
.quote-card,
.comparison-grid article {
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-card {
  min-height: 260px;
  padding: 24px;
}

.step-card span {
  color: var(--brass);
  display: block;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 44px;
}

.step-card p {
  margin-bottom: 0;
}

.split-section {
  align-items: start;
  background: #0f3a3f;
  color: var(--paper);
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
}

.split-section h2,
.split-section h3 {
  color: var(--paper);
}

.split-section .kicker {
  color: #f0af81;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  align-items: flex-start;
  color: rgba(255, 250, 240, 0.86);
  display: grid;
  font-size: 1.08rem;
  gap: 14px;
  grid-template-columns: 28px minmax(0, 1fr);
  line-height: 1.55;
  margin: 0;
}

.check-list span {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.comparison {
  background: #f2eadb;
}

.comparison-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.comparison-grid article {
  padding: 26px;
}

.comparison-grid p {
  margin: 12px 0 18px;
}

.comparison-grid strong {
  color: var(--ink);
  display: block;
  line-height: 1.45;
}

.comparison-grid .highlight-card {
  background: var(--navy-2);
  border-color: rgba(255, 250, 240, 0.18);
}

.highlight-card h3,
.highlight-card strong {
  color: var(--paper);
}

.highlight-card p {
  color: rgba(255, 250, 240, 0.72);
}

.pricing-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.pricing-section {
  background: #edf1eb;
}

.price-card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 640px;
  padding: 26px;
}

.fit {
  min-height: 112px;
}

.price {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin: 8px 0 20px;
  padding: 20px 0;
}

.price strong {
  color: var(--ink);
  display: block;
  font-size: 2.65rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: 8px;
}

.price-card ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.55;
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card li {
  padding-left: 22px;
  position: relative;
}

.price-card li::before {
  background: var(--green);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.55em;
  width: 8px;
}

.minimum {
  background: #eef4f1;
  border-radius: 8px;
  color: #2a4c3c !important;
  font-size: 0.92rem !important;
  font-weight: 800;
  margin: 24px 0 0;
  padding: 14px;
}

.terms-note {
  background: #fbefe6;
  border: 1px solid rgba(207, 111, 75, 0.24);
  border-radius: 8px;
  color: #4a3529;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 1180px;
  padding: 18px;
}

.staffing {
  align-items: center;
  background: #fbefe6;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
}

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

.staffing-panel {
  background: var(--ink);
  border-radius: 8px;
  color: var(--paper);
  min-height: 230px;
  padding: 28px;
}

.staffing-panel span {
  color: #f0af81;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.staffing-panel strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1.18;
}

.proof {
  background: #ffffff;
}

.proof-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.quote-card {
  margin: 0;
  min-height: 270px;
  padding: 26px;
}

.quote-card blockquote {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
}

.quote-card figcaption {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding-top: 18px;
}

.quote-card strong {
  color: var(--ink);
}

.quote-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq {
  background: #f4f0e8;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 38px;
  max-width: 980px;
}

details {
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(17, 24, 33, 0.12);
  border-radius: 8px;
  padding: 19px 20px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

.contact {
  align-items: start;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
}

.contact h2 {
  color: var(--paper);
}

.contact p {
  color: rgba(255, 250, 240, 0.78);
}

.contact-form {
  background: rgba(255, 250, 240, 0.96);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 33, 0.18);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 12px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.form-note {
  color: #2a4c3c !important;
  font-size: 0.92rem !important;
  font-weight: 900;
  line-height: 1.4 !important;
  margin: 0;
  text-align: center;
}

.footer {
  align-items: center;
  background: #07111c;
  color: rgba(255, 250, 240, 0.74);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  gap: 10px 28px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.footer span:first-child {
  color: var(--paper);
  font-weight: 900;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 5.8rem;
  }

  .section h2 {
    font-size: 3.35rem;
  }
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .section h2 {
    font-size: 2.85rem;
  }

  .intro-grid,
  .problem-band,
  .split-section,
  .staffing,
  .contact,
  .signal-columns,
  .room-note {
    grid-template-columns: 1fr;
  }

  .steps,
  .comparison-grid,
  .pricing-grid,
  .proof-grid,
  .selection-grid,
  .attitude-strip,
  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    min-height: auto;
  }

  .fit {
    min-height: 0;
  }

  .hero-photo-stack {
    bottom: auto;
    margin: 0 clamp(20px, 5vw, 72px) 46px;
    max-width: 680px;
    position: relative;
    right: auto;
    width: auto;
  }

  .room-note div:last-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.18);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(7, 17, 28, 0.92) 0%, rgba(7, 17, 28, 0.82) 47%, rgba(7, 17, 28, 0.66) 100%),
      linear-gradient(90deg, rgba(7, 17, 28, 0.8), rgba(7, 17, 28, 0.35));
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 46px;
    width: 100%;
  }

  .hero h1 {
    font-size: 3.2rem;
    line-height: 0.98;
    max-width: 10ch;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .section h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .intro-grid p {
    font-size: 1rem;
  }

  .price strong {
    font-size: 2.2rem;
  }

  .staffing-panel strong {
    font-size: 1.45rem;
  }

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

  .steps,
  .comparison-grid,
  .pricing-grid,
  .proof-grid,
  .selection-grid,
  .attitude-strip,
  .photo-grid,
  .hero-photo-stack,
  .signal-columns,
  .slogan-strip {
    grid-template-columns: 1fr;
  }

  .photo-grid .feature-photo {
    grid-row: auto;
  }

  .photo-grid .feature-photo img {
    aspect-ratio: 4 / 3;
  }

  .slogan-strip span {
    min-height: 64px;
  }

  .step-card {
    min-height: auto;
  }

  .step-card span {
    margin-bottom: 24px;
  }

  .hero-photo-stack figure:first-child {
    grid-row: auto;
  }

  .hero-photo-stack figure:first-child img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .hero-content {
    max-width: 390px;
    padding-left: 24px;
    padding-right: 24px;
    width: 390px;
  }

  .hero-copy,
  .hero-actions,
  .hero-metrics {
    max-width: 342px;
  }

  .wordmark {
    min-width: 140px;
  }

  .wordmark-top {
    font-size: 0.98rem;
  }

  .wordmark-bottom {
    font-size: 0.62rem;
  }
}
