/* ─── RevOpsDev Brand Tokens ─── */
:root {
  --rev-bg:        #0A0E1A;   
  --rev-bg-2:      #131826;   
  --rev-panel:     rgba(20, 26, 44, 0.6);
  --rev-border:    rgba(255, 255, 255, 0.08);
  --rev-text:      #F2F4F8;   
  --rev-muted:     rgba(255, 255, 255, 0.58);
  --rev-accent:    #2563EB;   
  --rev-accent-2:  #60A5FA;   
  --rev-grad:      linear-gradient(135deg, var(--rev-accent), var(--rev-accent-2));
  --rev-max:       1200px;
  --rev-r:         16px;
}

/* Full-width body reset for custom template */
body.revopsdev-full-width {
  margin: 0;
  padding: 0 !important;
  padding-top: 0 !important;
  background: var(--rev-bg);
  color: var(--rev-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.75;
  width: 100vw;
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar .rev-nav {
  top: 32px;
}

body.admin-bar .rev-svc-scroll-prefix {
  top: calc(50vh + 16px);
}

body.revopsdev-full-width * {
  box-sizing: border-box;
}

/* Targeted margin/padding resets — avoid nuking layout containers */
body.revopsdev-full-width h1,
body.revopsdev-full-width h2,
body.revopsdev-full-width h3,
body.revopsdev-full-width h4,
body.revopsdev-full-width p,
body.revopsdev-full-width figure {
  margin: 0;
  padding: 0;
}

body.revopsdev-full-width a { text-decoration: none; color: inherit; margin: 0; }
body.revopsdev-full-width ul { list-style: none; margin: 0; padding: 0; }
body.revopsdev-full-width img { display: block; max-width: 100%; margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .r-rev,
  .hero-fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* ─── Shared Utilities ─── */
.rev-skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--rev-accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.rev-skip-link:focus-visible {
  top: 16px;
  outline: 2px solid var(--rev-text);
  outline-offset: 2px;
}

.r-wrap {
  max-width: var(--rev-max);
  margin: 0 auto;
  padding: 0 40px;
}

.r-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rev-muted);
  display: inline-block;
  margin-bottom: 24px;
}

.r-label.r-grad-text {
  background: var(--rev-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.r-heading {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--rev-text);
  margin-bottom: 24px;
}

.r-sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--rev-muted);
  line-height: 1.75;
}

/* ─── Scroll Reveal ─── */
.r-rev {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.r-rev.r-visible {
  opacity: 1;
  transform: translateY(0);
}
.r-d1 { transition-delay: 0.1s; }
.r-d2 { transition-delay: 0.2s; }
.r-d3 { transition-delay: 0.3s; }
.r-d4 { transition-delay: 0.4s; }

/* ─── Buttons ─── */
.r-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid transparent;
}
.r-btn-fill {
  background: var(--rev-accent);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}
.r-btn-fill:hover {
  background: var(--rev-accent-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.35);
}
.r-btn-ghost {
  background: transparent;
  color: var(--rev-text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.r-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.r-btn:focus-visible {
  outline: 2px solid var(--rev-accent-2);
  outline-offset: 3px;
}

/* ─── Nav ─── */
.rev-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rev-border);
  transition: background 0.3s ease;
}
.rev-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.rev-nav-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rev-text);
}
.rev-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.rev-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rev-muted);
  transition: color 0.2s ease;
}
.rev-nav-links a:hover {
  color: var(--rev-text);
}
.rev-nav-links a:focus-visible {
  color: var(--rev-text);
  outline: 2px solid var(--rev-accent-2);
  outline-offset: 4px;
  border-radius: 4px;
}
.rev-nav-links .r-btn {
  color: #fff;
  padding: 12px 32px;
  font-size: 0.9375rem;
}

/* ─── Mobile Menu ─── */
.rev-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
.rev-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--rev-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left center;
}
.rev-nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}
.rev-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.rev-nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}
.rev-nav-toggle:focus-visible {
  outline: 2px solid var(--rev-accent-2);
  outline-offset: 4px;
  border-radius: 2px;
}

.rev-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.rev-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.rev-mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.rev-mobile-menu a {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rev-muted);
  transition: color 0.2s ease, transform 0.4s ease;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
}
.rev-mobile-menu.is-open a {
  transform: translateY(0);
  opacity: 1;
}
.rev-mobile-menu a:hover,
.rev-mobile-menu a:focus-visible {
  color: var(--rev-text);
  outline: none;
}
.rev-mobile-menu li:nth-child(1) a { transition-delay: 0.1s; }
.rev-mobile-menu li:nth-child(2) a { transition-delay: 0.15s; }
.rev-mobile-menu li:nth-child(3) a { transition-delay: 0.2s; }

/* ─── Hero ─── */
.rev-svc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 100px;
}

.rev-svc-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--rev-border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--rev-border) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center top;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

.rev-svc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: rev-init-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-delay-1 { animation-delay: 0.1s; }
.hero-delay-2 { animation-delay: 0.3s; }
.hero-delay-3 { animation-delay: 0.5s; }

.rev-svc-hero-title {
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  color: var(--rev-text);
}

.rev-svc-hero-title .highlight {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: var(--rev-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.rev-svc-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--rev-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 80px;
}

.rev-svc-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
}

.rev-svc-hero-actions .r-btn {
  padding: 13px 38px;
  font-size: 0.9375rem;
}

.rev-svc-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: rev-init-fade-in 1s ease 1.2s forwards;
  z-index: 2;
}

.rev-svc-hero-scroll span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rev-muted);
}

.rev-svc-hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--rev-muted);
  animation: rev-bounce 2s infinite ease-in-out;
}

@keyframes rev-init-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rev-init-fade-in {
  to { opacity: 1; }
}
@keyframes rev-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ─── Scrolling Words Section ─── */
.rev-svc-scroll-seq {
  padding: 0 0 100px;
  background: var(--rev-bg);
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.rev-svc-scroll-inner {
  max-width: var(--rev-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
}

.rev-svc-scroll-prefix {
  position: sticky;
  top: calc(50vh - 0.5em);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--rev-muted);
  margin: 0;
  padding-right: 20px;
  height: fit-content;
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
  z-index: 2;
  opacity: 0;
}

.rev-svc-scroll-list {
  flex-grow: 1;
  margin: 0;
  padding: 0;
  font-size: clamp(2rem, 3.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  list-style-type: none;
  text-align: center;
}

.rev-svc-scroll-list li {
  padding: 14vh 0;
  margin: 0;
  opacity: 0.03;
  background: var(--rev-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  will-change: opacity;
}

.rev-svc-scroll-list li.rev-final-punch {
  color: var(--rev-text);
  background: none;
  -webkit-text-fill-color: initial;
}

.rev-svc-scroll-seq.rev-flipped .rev-svc-scroll-inner {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 40px;
}
.rev-svc-scroll-seq.rev-flipped .rev-svc-scroll-prefix {
  padding-right: 0;
}
.rev-svc-scroll-seq.rev-flipped .rev-svc-scroll-list {
  text-align: center;
}

.rev-svc-scroll-cta {
  text-align: center;
  padding: 80px 0 60px;
}

/* Astra admin bar offset */
body.admin-bar .rev-svc-scroll-prefix {
  top: calc(50vh - 0.5em + 16px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .rev-svc-scroll-prefix {
    top: 50vh;
  }
}

/* ─── Responsive Adjustments ─── */
@media (max-width: 800px) {
  .r-wrap {
    padding: 0 24px;
  }
  .rev-nav-links {
    display: none;
  }
  .rev-nav-toggle {
    display: flex;
  }
  .rev-svc-hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
  .rev-svc-hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .rev-svc-hero-actions .r-btn {
    width: 100%;
  }
  .rev-svc-scroll-inner {
    flex-direction: column;
    gap: 0;
  }
  .rev-svc-scroll-prefix {
    position: sticky;
    top: 80px;
    transform: none;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 24px;
    z-index: 10;
    background: linear-gradient(to bottom, var(--rev-bg) 70%, transparent);
    width: 100%;
  }
  .rev-svc-scroll-list li {
    padding: 6vh 0;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .rev-nav {
    top: 0;
  }
}

/* ─── Proof Strip ─── */
.rev-proof-strip {
  background: var(--rev-bg-2);
  border-top: 1px solid var(--rev-border);
  padding: 60px 0;
}
.rev-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
}
.rev-proof-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rev-proof-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--rev-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rev-proof-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rev-text);
}
a.rev-proof-value {
  color: var(--rev-accent-2);
  transition: color 0.2s ease;
}
a.rev-proof-value:hover {
  color: var(--rev-text);
}
.rev-proof-clients-placeholder {
  width: 120px;
  height: 40px;
  border: 1px dashed var(--rev-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--rev-muted);
  border-radius: 4px;
}

/* ─── How We Work ─── */
.rev-how-work {
  padding: 120px 0;
  background: var(--rev-bg);
}
.rev-steps-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 60px;
}
.rev-step {
  flex: 1;
  position: relative;
}
.rev-step-badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rev-accent-2);
  margin-bottom: 16px;
}
.rev-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--rev-text);
}
.rev-step-desc {
  font-size: 1rem;
  color: var(--rev-muted);
  line-height: 1.6;
}
.rev-step-arrow {
  display: none;
  color: var(--rev-border);
}
.rev-how-work-footer {
  margin-top: 60px;
}
.rev-how-work-link {
  color: var(--rev-accent-2);
  font-weight: 500;
  transition: color 0.2s ease;
}
.rev-how-work-link:hover {
  color: var(--rev-text);
}

/* ─── Founder Credibility ─── */
.rev-founder-line {
  padding: 80px 0;
  background: var(--rev-bg);
  border-top: 1px solid var(--rev-border);
}
.rev-founder-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.rev-founder-photo-sm-placeholder {
  width: 56px;
  height: 56px;
  background: var(--rev-bg-2);
  border: 1px solid var(--rev-border);
  border-radius: 50%;
}
.rev-founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--rev-text);
}
.rev-founder-text {
  color: var(--rev-muted);
  margin-bottom: 16px;
}
.rev-founder-link {
  color: var(--rev-accent-2);
  font-weight: 500;
  font-size: 0.9375rem;
}

/* ─── Final CTA ─── */
.rev-final-cta {
  padding: 100px 0 140px;
  background: var(--rev-bg);
}
.rev-cta-panel {
  background: var(--rev-bg-2);
  border: 1px solid var(--rev-accent);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.rev-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.rev-cta-email {
  color: var(--rev-muted);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.rev-cta-email:hover {
  color: var(--rev-text);
}

.ast-scroll-top {
  display: none !important;
}

@media (min-width: 768px) {
  .rev-steps-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .rev-step-arrow {
    display: block;
    width: 24px;
    margin-top: 44px;
    flex-shrink: 0;
  }
  .rev-cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ─── About Page Specifics ─── */
.rev-about-hero {
  padding: 180px 0 100px;
  position: relative;
}
.rev-about-hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.rev-founder-photo-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--rev-panel);
  border: 1px solid var(--rev-border);
  flex-shrink: 0;
}
.rev-about-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--rev-text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.rev-about-title .highlight {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: var(--rev-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.rev-unicorn-sec {
  padding: 80px 0;
}
.rev-content-block {
  max-width: 720px;
}
.rev-lead {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--rev-text);
  line-height: 1.3;
  margin-bottom: 32px;
}
.rev-content-block p {
  font-size: 1.125rem;
  color: var(--rev-muted);
  margin-bottom: 24px;
}
.rev-content-block p:last-child {
  margin-bottom: 0;
}

.rev-beliefs-sec {
  padding: 100px 0;
}
.rev-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 64px;
}
.rev-belief-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rev-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.rev-belief-item p {
  font-size: 1rem;
  color: var(--rev-muted);
}

.rev-track-sec {
  padding: 100px 0;
  background: var(--rev-panel);
  border-top: 1px solid var(--rev-border);
  border-bottom: 1px solid var(--rev-border);
}
.rev-track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}
.rev-track-stat {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--rev-accent-2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.rev-track-desc {
  font-size: 1rem;
  color: var(--rev-muted);
}
.rev-track-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev-track-list li {
  font-size: 1rem;
  color: var(--rev-muted);
  position: relative;
  padding-left: 20px;
}
.rev-track-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rev-accent-2);
}

.rev-products-sec {
  padding: 100px 0;
}
.rev-products-inner {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.rev-product-block {
  max-width: 600px;
}
.rev-text-link {
  color: var(--rev-text);
  text-decoration: underline;
  text-decoration-color: var(--rev-accent-2);
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.rev-text-link:hover {
  color: var(--rev-accent-2);
}
.rev-links-block {
  min-width: 280px;
}
.rev-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rev-links-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--rev-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rev-border);
  transition: color 0.2s, border-color 0.2s;
}
.rev-links-list a:hover {
  color: var(--rev-text);
  border-color: var(--rev-muted);
}
.rev-links-list a span {
  font-size: 0.875rem;
  color: var(--rev-accent-2);
}

.rev-cta-sec {
  padding: 40px 0 140px;
}
.rev-cta-inner {
  text-align: center;
  background: var(--rev-panel);
  border: 1px solid var(--rev-border);
  border-radius: 24px;
  padding: 80px 40px;
}
.rev-cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--rev-text);
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .rev-about-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .rev-track-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rev-products-inner {
    flex-direction: column;
  }
}

/* ─── Contact Page Specifics ─── */
.rev-contact-hero {
  padding: 180px 40px 60px;
  text-align: left;
}
.rev-contact-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--rev-text);
  line-height: 1.1;
  margin-bottom: 24px;
}
.rev-contact-title .highlight {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: var(--rev-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.rev-contact-hero .r-sub {
  max-width: 640px;
}

.rev-contact-grid-sec {
  padding: 0 40px 80px;
}
.rev-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.rev-contact-col-meetings h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rev-text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* ─── HubSpot Form Dark Theme Overrides ─── */
.hs-form fieldset { max-width: 100% !important; }
.hs-form .hs-form-field { margin-bottom: 20px; }
.hs-form label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--rev-muted);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.02em;
}
.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form select,
.hs-form textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--rev-border) !important;
  border-radius: 10px !important;
  color: var(--rev-text) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9375rem !important;
  padding: 12px 16px !important;
  transition: border-color 0.2s ease !important;
  outline: none !important;
}
.hs-form input:focus,
.hs-form textarea:focus {
  border-color: var(--rev-accent-2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
.hs-form .hs-button {
  background: var(--rev-accent) !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  padding: 14px 32px !important;
  border-radius: 40px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
  letter-spacing: 0.02em !important;
}
.hs-form .hs-button:hover {
  background: var(--rev-accent-2) !important;
  transform: translateY(-2px) !important;
}
.hs-form .hs-error-msg,
.hs-form .hs-main-font-element {
  color: #f87171 !important;
  font-size: 0.8125rem !important;
  font-family: 'Inter', sans-serif !important;
}
.hs-form .submitted-message {
  color: var(--rev-text) !important;
  font-family: 'Inter', sans-serif !important;
}
/* Meetings embed */
.meetings-iframe-container {
  min-height: 650px;
  width: 100%;
}
.meetings-iframe-container iframe {
  border-radius: var(--rev-r);
  border: 1px solid var(--rev-border) !important;
}

.rev-contact-footer {
  padding: 0 40px 140px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.rev-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rev-contact-details a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--rev-text);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--rev-border);
  padding-bottom: 4px;
}
.rev-contact-details a:hover {
  color: var(--rev-accent-2);
  border-color: var(--rev-accent-2);
}
.rev-contact-details a span {
  font-size: 0.875rem;
  color: var(--rev-accent-2);
}
.rev-contact-response {
  font-size: 1rem;
  color: var(--rev-muted);
  margin-top: 8px;
}

.rev-contact-callout {
  background: var(--rev-panel);
  border: 1px solid var(--rev-border);
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  font-size: 1.25rem;
  color: var(--rev-text);
  line-height: 1.6;
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}

@media (max-width: 768px) {
  .rev-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rev-contact-footer {
    flex-direction: column;
    gap: 48px;
  }
  .rev-contact-hero {
    padding: 160px 24px 48px;
  }
  .rev-contact-grid-sec,
  .rev-contact-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ─── Legal / Privacy Page ─── */
.rev-legal-sec {
  padding: 160px 0 120px;
}
.rev-legal {
  max-width: 760px;
}
.rev-legal-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--rev-text);
  line-height: 1.1;
  margin-bottom: 12px;
}
.rev-legal-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--rev-muted);
  margin-bottom: 40px;
}
.rev-legal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rev-text);
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.rev-legal p {
  font-size: 1.0625rem;
  color: var(--rev-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}
.rev-legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
  padding-left: 20px;
}
.rev-legal-list li {
  font-size: 1.0625rem;
  color: var(--rev-muted);
  line-height: 1.7;
  list-style: disc;
}
.rev-legal-list li strong {
  color: var(--rev-text);
  font-weight: 600;
}
.rev-legal-back {
  margin-top: 48px;
}
