:root {
  --bg: #070b14;
  --bg-elevated: #0d1322;
  --surface: #111a2d;
  --surface-soft: #0b1220;
  --text: #edf2ff;
  --muted: #9aa8c1;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -10%, rgba(125, 211, 252, 0.13), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(167, 139, 250, 0.12), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #111;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  display: block;
  flex: 0 0 auto;
}

.brand-symbol-image {
  border-radius: 11px;
  background-image: url("/assets/brand/ro-architect-brand.webp");
  background-size: 250%;
  background-position: 50% 34%;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .10),
    0 0 18px rgba(109, 140, 255, .16);
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

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

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
}

.lang-button {
  border: 0;
  border-radius: 7px;
  padding: 6px 9px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.active {
  background: var(--text);
  color: #0a0e18;
}

.hero {
  padding: 112px 0 84px;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero-accent {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--accent), #c4b5fd 70%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}

.button.primary {
  background: var(--text);
  color: #08101b;
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.025);
}

.signal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}

.signal-line {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.signal-line:last-child { border-bottom: 0; }

.signal-line span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.signal-line strong {
  text-align: right;
  font-size: 14px;
  font-weight: 650;
}

.section { padding: 100px 0; }

.intro-strip {
  padding: 34px 0;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-height: 100px;
  padding: 16px 28px;
  border-right: 1px solid var(--line);
}

.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; }

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-grid h2,
.contact-inner h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.project-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
  transition: background .2s ease, transform .2s ease;
}

.project-card:hover {
  background: rgba(255,255,255,.035);
}

.project-card.featured {
  background:
    linear-gradient(145deg, rgba(125,211,252,.055), transparent 45%),
    rgba(255,255,255,.012);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
  letter-spacing: -.025em;
}

.project-card p {
  color: var(--muted);
  font-size: 15px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 28px;
}

.tags span, .focus-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: #c1cbe0;
  background: rgba(255,255,255,.018);
  font-size: 11px;
}

.project-card > a {
  margin-top: auto;
  color: var(--accent);
  text-decoration: none;
  font-weight: 750;
  font-size: 13px;
}

.architecture-section {
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}

.architecture-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
}

.sticky-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

.principles article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.principles article > span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.principles h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.principles p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.toolkit {
  margin-top: 84px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.toolkit-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 26px;
}

.toolkit-heading p {
  max-width: 560px;
  color: var(--muted);
}

.toolkit-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.toolkit-links a {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d7deee;
  text-decoration: none;
  font-size: 13px;
}

.toolkit-links a:hover { background: rgba(255,255,255,.03); }

.writing-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 750;
}

.writing-cards article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.writing-cards article:last-child { border-bottom: 1px solid var(--line); }

.writing-cards span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.writing-cards h3 {
  margin: 9px 0 0;
  font-size: 22px;
  letter-spacing: -.02em;
}

.about-section {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.016), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 90px;
}

.about-copy > p {
  color: #c2ccde;
  font-size: 18px;
}

.focus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.focus-list span {
  padding: 7px 11px;
  font-size: 12px;
}

.contact-section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 50%, rgba(125,211,252,.09), transparent 24rem),
    var(--bg-elevated);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #dce4f4;
  text-decoration: none;
}

.contact-links a:hover { color: var(--accent); }

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .language-switcher { margin-left: auto; }
  .brand-name { display: none; }

  .hero {
    min-height: auto;
    padding: 84px 0 72px;
  }

  .hero-grid,
  .architecture-grid,
  .writing-grid,
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .signal-card { max-width: 560px; }

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

  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .metric:nth-child(3) { padding-left: 0; }

  .sticky-heading { position: static; }

  .toolkit-links { grid-template-columns: repeat(2, 1fr); }

  .toolkit-heading {
    display: block;
  }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .section { padding: 72px 0; }

  h1 { font-size: clamp(44px, 15vw, 64px); }

  .project-grid,
  .toolkit-links {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: auto;
    padding: 26px;
  }

  .card-topline { margin-bottom: 32px; }

  .metrics-grid { grid-template-columns: 1fr; }

  .metric,
  .metric:first-child,
  .metric:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child { border-bottom: 0; }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Professional positioning refresh */

.lang-link {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  place-items: center;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.lang-link.active {
  background: var(--text);
  color: #0a0e18;
}

.signal-kicker {
  margin: 10px 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.wide-heading {
  max-width: 900px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-card {
  min-height: 290px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}

.practice-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.practice-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.practice-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(167,139,250,.07), transparent 26rem),
    var(--bg);
}

.toolkit-section {
  padding-top: 76px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.toolkit-section .toolkit {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.toolkit-heading > div {
  max-width: 580px;
}

.toolkit-heading h3 {
  margin-bottom: 0;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.section-action {
  margin-top: 34px;
}

.writing-section {
  background: linear-gradient(180deg, rgba(255,255,255,.014), transparent);
}

.contact-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
}

.contact-links .contact-primary {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 900px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolkit-heading {
    display: block;
  }

  .toolkit-heading > p {
    margin-top: 20px;
  }
}

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

  .practice-card {
    min-height: auto;
    padding: 26px;
  }

  .practice-card > span {
    margin-bottom: 30px;
  }
}


/* RO architectural identity */

.signal-brand-artwork {
  width: min(100%, 310px);
  height: auto;
  display: block;
  margin: 10px auto 18px;
  border-radius: 16px;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .28),
    0 0 30px rgba(109, 140, 255, .10);
}

.signal-card .signal-kicker {
  text-align: center;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .brand-symbol {
    width: 38px;
    height: 38px;
  }

  .signal-brand-artwork {
    width: min(100%, 280px);
  }
}


/* Evidence and conversion refresh */

.hero-proof {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.impact-section {
  background:
    radial-gradient(circle at 90% 15%, rgba(125,211,252,.055), transparent 26rem),
    var(--bg);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.impact-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.012);
}

.impact-card h3 {
  margin-bottom: 20px;
  font-size: 23px;
  letter-spacing: -.025em;
}

.impact-card p {
  color: var(--muted);
  font-size: 14px;
}

.impact-card p strong {
  color: var(--text);
}

.impact-result {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.impact-result strong,
.impact-result span {
  display: block;
}

.impact-result strong {
  margin-bottom: 6px;
  color: var(--accent) !important;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.impact-result span {
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.architecture-lab {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px 56px;
  margin-bottom: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(125,211,252,.055), rgba(167,139,250,.035)),
    rgba(255,255,255,.012);
}

.architecture-lab h3 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.architecture-lab p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.architecture-lab-meta {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
}

.architecture-lab-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #c1cbe0;
  background: rgba(255,255,255,.018);
  font-size: 11px;
}

.architecture-lab > .text-link {
  grid-column: 1 / -1;
}

.article-list article {
  display: grid;
  gap: 9px;
}

.article-list .text-link {
  width: fit-content;
  font-size: 13px;
}

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

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

  .architecture-lab {
    grid-template-columns: 1fr;
  }

  .architecture-lab > .text-link {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 66px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .impact-card,
  .architecture-lab {
    padding: 26px;
  }
}


/* Career trajectory */

.trajectory-section {
  padding-top: 78px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trajectory-grid article {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trajectory-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.trajectory-grid h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: -.02em;
}

.trajectory-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .trajectory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .trajectory-grid article {
    min-height: auto;
  }

  .trajectory-grid article > span {
    margin-bottom: 20px;
  }
}


/* Portfolio evidence iteration 2 */

.hero-copy {
  margin-bottom: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-metrics > div {
  min-height: 92px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 23px;
  letter-spacing: -.03em;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

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

.impact-card {
  min-height: 560px;
}

.impact-card-current {
  background:
    linear-gradient(145deg, rgba(125,211,252,.045), rgba(167,139,250,.025)),
    rgba(255,255,255,.012);
}

.impact-result-qualitative span {
  font-size: 16px;
}

.impact-context-note {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics > div {
    min-height: auto;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

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


/* About portrait */

.about-photo {
  width: min(100%, 220px);
  height: auto;
  display: block;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .24),
    0 0 26px rgba(125, 211, 252, .06);
}

@media (max-width: 900px) {
  .about-photo {
    width: min(100%, 190px);
    margin-top: 22px;
  }
}


/* Mobile first-screen refinement */

@media (max-width: 640px) {
  .hero {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
  }

  .hero-grid > div:first-child > .eyebrow {
    order: 1;
    margin-bottom: 10px;
  }

  .hero-grid > div:first-child > h1 {
    order: 2;
    margin-bottom: 16px;
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 1;
  }

  .hero-grid > div:first-child > .hero-metrics {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
  }

  .hero-metrics > div {
    min-height: 76px;
    padding: 10px 8px;
  }

  .hero-metrics strong {
    margin-bottom: 3px;
    font-size: 20px;
  }

  .hero-metrics span {
    font-size: 9px;
    line-height: 1.28;
  }

  .hero-grid > div:first-child > .hero-copy {
    order: 4;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-grid > div:first-child > .hero-actions {
    order: 5;
  }

  .hero-grid > div:first-child > .hero-proof {
    order: 6;
    margin-top: 16px;
    font-size: 10px;
  }
}


/* Mobile hero CTAs side by side */

@media (max-width: 640px) {
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 8px;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
}
