@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap');

:root {
  --roh-bg-main: #050816;
  --roh-bg-alt: #0b1020;
  --roh-bg-soft: #101525;
  --roh-bg-light: #f7f5ee;
  --roh-text-main: #f5f5f7;
  --roh-text-muted: #aeb4c0;
  --roh-accent: #f5c46a;
  --roh-accent-strong: #d0901a;
  --roh-accent-soft: rgba(245, 196, 106, 0.2);
  --roh-border-soft: rgba(116, 126, 158, 0.55);
  --roh-success: #4ddbb1;
  --roh-logo-width: 160px;
}

html {
  background: #050816;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #111827 0, #050816 52%, #02010a 100%);
  color: var(--roh-text-main);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

a {
  color: var(--roh-accent);
  text-decoration: none;
}

a:hover {
  color: #ffd68b;
}

.roh-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

p {
  margin-top: 0;
  margin-bottom: 12px;
}

/* Header */

.roh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to right, rgba(5, 8, 22, 0.96), rgba(9, 11, 32, 0.96));
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(12px);
}

.roh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.roh-logo a {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roh-text-main);
  display: inline-flex;
  align-items: center;
}

.roh-logo img {
  max-width: var(--roh-logo-width);
  height: auto;
}

.roh-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.roh-nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.roh-nav-list a {
  color: var(--roh-text-muted);
}

.roh-nav-list a:hover,
.roh-nav-list .current-menu-item > a {
  color: var(--roh-accent);
}

.roh-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.4);
  cursor: pointer;
  padding: 10px 12px;
}

.roh-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--roh-text-main);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.roh-nav-toggle span + span {
  margin-top: 5px;
}

.roh-nav-toggle:focus-visible {
  outline: 2px solid var(--roh-accent);
  outline-offset: 2px;
}

.roh-nav.is-open .roh-nav-toggle {
  background: rgba(245, 196, 106, 0.12);
  border-color: rgba(245, 196, 106, 0.5);
}

.roh-nav-mobile-actions {
  display: none;
  width: 100%;
}

.roh-header-cta {
  display: flex;
  gap: 8px;
}

.roh-nav-mobile-actions a {
  width: 100%;
  text-align: center;
}

.roh-logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 26px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.roh-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(5, 8, 22, 0.8);
  color: var(--roh-text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Buttons */

.btn-primary-sm,
.btn-ghost-sm,
.btn-primary-lg,
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-primary-lg,
.btn-ghost-lg {
  padding: 12px 24px;
  font-size: 15px;
}

.btn-primary-sm,
.btn-primary-lg {
  background: var(--roh-accent);
  color: #151824;
}

.btn-primary-sm:hover,
.btn-primary-lg:hover {
  background: #ffd68b;
}

.btn-ghost-sm,
.btn-ghost-lg {
  background: transparent;
  border-color: var(--roh-accent-soft);
  color: var(--roh-accent);
}

.btn-ghost-sm:hover,
.btn-ghost-lg:hover {
  background: rgba(245, 196, 106, 0.08);
}

.btn-primary-sm:focus-visible,
.btn-primary-lg:focus-visible,
.btn-ghost-sm:focus-visible,
.btn-ghost-lg:focus-visible,
.roh-nav-list a:focus-visible,
.roh-footer-col a:focus-visible,
.roh-footer-links a:focus-visible {
  outline: 2px solid var(--roh-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(245, 196, 106, 0.2);
  border-radius: 10px;
}

.btn-primary-sm:hover,
.btn-primary-lg:hover,
.btn-ghost-sm:hover,
.btn-ghost-lg:hover {
  transform: translateY(-1px);
}

/* Hero */

.roh-main {
  min-height: 60vh;
}

.roh-hero {
  padding: 120px 0 90px;
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.18) 0, #050816 45%, #02010a 100%);
}

.roh-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.roh-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--roh-accent);
  margin-bottom: 10px;
}

.roh-hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.roh-hero-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--roh-text-muted);
}

.roh-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.roh-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 11, 32, 0.86);
  border: 1px solid var(--roh-accent-soft);
  font-size: 12px;
  color: var(--roh-text-muted);
}

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

.roh-hero-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--roh-text-muted);
}

.roh-hero-note i {
  color: var(--roh-success);
  margin-right: 6px;
}

.roh-hero-panel {
  display: flex;
  justify-content: flex-end;
}

.roh-hero-card {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.3) 0, #050816 45%);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 16px 16px 14px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.roh-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--roh-text-muted);
}

.roh-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.roh-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.roh-hero-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--roh-success);
}

.roh-hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  margin-bottom: 8px;
}

.roh-hero-metric .label {
  font-size: 12px;
  color: var(--roh-text-muted);
}

.roh-hero-metric .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--roh-accent);
}

/* Sections */

.roh-section {
  padding: 80px 0;
}

.roh-section-alt {
  background: radial-gradient(circle at top left, #101827 0, #050816 54%);
}

.roh-section-light {
  background: var(--roh-bg-light);
  color: #111827;
}

.roh-section-light p,
.roh-section-light li {
  color: #374151;
}

.roh-section-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.roh-section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.roh-section-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.roh-proof-block {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.16) 0, #050816 60%);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.roh-proof-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.roh-proof-pill {
  border-radius: 14px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(245, 196, 106, 0.3);
  background: rgba(9, 11, 32, 0.85);
}

.roh-proof-pill .value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--roh-accent);
}

.roh-proof-pill .label {
  font-size: 13px;
  color: var(--roh-text-muted);
}

/* Grids and cards */

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

.roh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.roh-pill-card {
  border-radius: 16px;
  padding: 18px 16px 16px;
  background: rgba(9, 11, 32, 0.9);
  border: 1px solid var(--roh-border-soft);
}

.roh-section-light .roh-pill-card {
  background: #ffffff;
  border-color: #e5e7eb;
}

.roh-section-light a {
  color: var(--roh-accent-strong);
}

.roh-section-light a:hover {
  color: #9a5c00;
}

.roh-pill-card i {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--roh-accent);
}

.roh-pill-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.roh-pill-card p {
  font-size: 13px;
  color: var(--roh-text-muted);
}

.roh-section-light .roh-pill-card p {
  color: #4b5563;
}

.roh-highlight-card {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.24) 0, #020617 55%);
  border: 1px solid rgba(245, 196, 106, 0.5);
}

.roh-highlight-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.roh-highlight-card h3 i {
  margin-right: 8px;
  color: var(--roh-accent);
}

.roh-highlight-card p {
  font-size: 13px;
  color: var(--roh-text-muted);
}

.roh-highlight-card ul {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 13px;
  color: var(--roh-text-muted);
}

/* Two column layout */

.roh-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

/* Steps */

.roh-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.roh-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.roh-steps .step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--roh-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--roh-accent);
  font-weight: 600;
}

/* Studio card */

.roh-studio-card {
  border-radius: 18px;
  padding: 20px 18px 18px;
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.2) 0, #020617 55%);
  border: 1px solid rgba(245, 196, 106, 0.5);
}

/* Stats */

.roh-stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

.roh-stat {
  flex: 1 1 200px;
  border-radius: 16px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(75, 85, 99, 0.9);
}

.roh-stat .value {
  font-size: 22px;
  font-weight: 600;
  color: var(--roh-accent);
  display: block;
  margin-bottom: 6px;
}

.roh-stat .label {
  font-size: 12px;
  color: var(--roh-text-muted);
}

/* CTA band */

.roh-cta-band {
  margin-top: 40px;
  padding: 26px 22px;
  border-radius: 20px;
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.18) 0, #020617 55%);
  border: 1px solid rgba(245, 196, 106, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.roh-cta-band h3 {
  margin-bottom: 8px;
}

.roh-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.roh-mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.roh-mockup-card {
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.22), rgba(245, 196, 106, 0.15));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.roh-mockup-track {
  background: rgba(5, 8, 22, 0.85);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.roh-mockup-bar {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f5c46a, #60a5fa);
  margin-bottom: 6px;
}

.roh-mockup-bar.alt {
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
}

.roh-mockup-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--roh-text-muted);
}

/* Generic pages */

.roh-page-hero {
  padding: 96px 0 40px;
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.16) 0, #050816 60%);
}

.roh-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.roh-page-hero-inner h1 {
  font-size: 32px;
}

.roh-page-hero-inner p {
  font-size: 14px;
  color: var(--roh-text-muted);
}

.roh-generic-page {
  padding: 72px 0;
}

/* Lists and legal */

.roh-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 14px;
}

.roh-list li {
  margin-bottom: 6px;
}

.roh-section-light .roh-list {
  color: #374151;
}

.roh-legal h2 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.roh-legal p,
.roh-legal ul {
  font-size: 14px;
}

.roh-legal-note {
  margin-top: 20px;
  font-size: 13px;
  color: #6b7280;
}

/* Contact */

.roh-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 14px;
}

.roh-contact-list li {
  margin-bottom: 8px;
}

.roh-contact-list i {
  margin-right: 8px;
  color: var(--roh-accent);
}

.roh-contact-form .field-row {
  margin-bottom: 14px;
}

.roh-contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.roh-form-alert {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13px;
}

.roh-form-alert ul {
  margin: 0;
  padding-left: 18px;
}

.roh-form-alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #b91c1c;
}

.roh-form-alert-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #15803d;
}

.roh-contact-form input,
.roh-contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 14px;
  font-family: inherit;
}

.roh-contact-form textarea {
  resize: vertical;
}

.roh-form-note {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}

/* FAQ */

.roh-faq-list {
  max-width: 780px;
}

.roh-faq-item {
  margin-bottom: 18px;
}

.roh-faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.roh-faq-item h3 i {
  margin-right: 8px;
  color: var(--roh-accent);
}

/* Footer */

.roh-footer {
  background: linear-gradient(180deg, #05060b 0%, #04050a 100%);
  padding: 52px 0 16px;
  border-top: 1px solid rgba(75, 85, 99, 0.8);
}

.roh-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 22px;
  color: var(--roh-text-muted);
  font-size: 13px;
}

.roh-footer-logo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--roh-text-main);
}

.roh-footer-address p {
  margin: 3px 0;
}

.roh-footer-address i {
  margin-right: 6px;
  color: var(--roh-accent);
}

.roh-footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  color: var(--roh-text-main);
}

.roh-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roh-footer-col li {
  margin-bottom: 6px;
}

.roh-footer-col a {
  color: var(--roh-text-muted);
}

.roh-footer-col a:hover {
  color: var(--roh-accent);
}

.roh-footer-bottom {
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  padding-top: 10px;
  margin-top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--roh-text-muted);
  text-align: center;
}

.roh-footer-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 404 */

.roh-404 .center {
  text-align: center;
}

/* Responsive */

@media (max-width: 1040px) {
  .roh-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .roh-hero-panel {
    justify-content: flex-start;
    margin-top: 24px;
  }
  .roh-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .roh-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .roh-two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .roh-page-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .roh-footer-main {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  /* Header adjustments */
  .roh-header {
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  
  .roh-header-inner {
    gap: 12px;
    height: auto;
    padding: 10px 0;
  }
  
  .roh-nav {
    order: 1;
  }
  
  .roh-logo {
    order: 2;
    flex: 1;
    text-align: center;
  }
  
  .roh-header-cta {
    order: 3;
  }
  
  .roh-header-cta .btn-primary-sm {
    display: none;
  }
  
  /* Hamburger toggle */
  .roh-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 10001;
  }
  
  .roh-nav.is-open .roh-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .roh-nav.is-open .roh-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .roh-nav.is-open .roh-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Mobile menu overlay */
  .roh-nav-list {
    display: none;
  }
  
  .roh-nav.is-open .roh-nav-list {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(10px);
    padding: 100px 24px 40px;
    overflow-y: auto;
    z-index: 10000;
  }
  
  .roh-nav-list > li {
    list-style: none;
    margin: 0 0 12px 0;
    padding: 0;
  }
  
  .roh-nav-list a {
    display: block;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
  }
  
  .roh-nav-list a:hover,
  .roh-nav-list .current-menu-item > a {
    background: var(--roh-accent);
    border-color: var(--roh-accent);
    color: #ffffff;
  }
  
  /* Mobile action buttons - hidden */
  .roh-nav-mobile-actions {
    display: none !important;
  }
  
  /* Lock body when menu is open */
  body.roh-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  
  .roh-nav.is-open + .roh-header-cta {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Other mobile adjustments */
  .roh-hero {
    padding: 96px 0 72px;
  }
  
  .roh-hero-copy h1 {
    font-size: 30px;
  }
  
  .roh-section {
    padding: 60px 0;
  }
  
  .roh-grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .roh-proof-block {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .roh-footer-main {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .roh-footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}


/* Logo text when no image logo is set */
.roh-logo-text {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Reveal animation */
.roh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* FAQ visual tweaks */
.roh-faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.roh-faq-item {
  margin-bottom: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.roh-section-light .roh-faq-item {
  border-color: #e5e7eb;
}

.roh-faq-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roh-faq-item h3 i {
  font-size: 12px;
  color: #f59e0b;
}

@media (prefers-reduced-motion: reduce) {
  .roh-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Legal page styling to match theme */
.roh-section-light.roh-legal-section {
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  color: var(--roh-text-main);
}

.roh-section-light.roh-legal-section p,
.roh-section-light.roh-legal-section li {
  color: var(--roh-text-muted);
}

.roh-legal-card {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 22px 22px 20px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* Small hover / motion touches */
.roh-pill-card,
.roh-highlight-card,
.roh-stat,
.roh-hero-card,
.roh-studio-card,
.roh-cta-band {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.roh-pill-card:hover,
.roh-highlight-card:hover,
.roh-stat:hover,
.roh-hero-card:hover,
.roh-studio-card:hover,
.roh-cta-band:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(245, 196, 106, 0.7);
}

/* Resources */
.roh-resource-grid {
  align-items: stretch;
}

.roh-resource-card {
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.14) 0, #020617 55%);
  border: 1px solid rgba(96, 165, 250, 0.45);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roh-section-light .roh-resource-card {
  background: #ffffff;
  border-color: #dbeafe;
}

.roh-resource-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roh-resource-card h3 {
  margin: 0;
}

.roh-resource-link {
  margin-top: auto;
  color: var(--roh-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.roh-resource-link::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.18s ease-out;
}

.roh-resource-link:hover::after {
  transform: translateX(3px);
}

.roh-resource-stats .roh-stat {
  min-width: 200px;
}

/* Thank you page */
.roh-thankyou-section {
  background: radial-gradient(circle at top left, rgba(245, 196, 106, 0.12) 0, #050816 60%);
  color: var(--roh-text-main);
}

.roh-thankyou-section .roh-section-header p {
  color: var(--roh-text-muted);
}
