:root {
  --oh-bg-main: #0b0f19;
  --oh-bg-surface: #151c2c;
  --oh-bg-surface-alt: #1a2336;
  --oh-accent-vivid: #ff3b5c;
  --oh-accent-hover: #e02e4c;
  --oh-accent-light: rgba(255, 59, 92, 0.15);
  --oh-text-heading: #f8fafc;
  --oh-text-body: #cbd5e1;
  --oh-text-muted: #94a3b8;
  --oh-border-subtle: rgba(255, 255, 255, 0.08);
  --oh-border-highlight: rgba(255, 59, 92, 0.35);
  --oh-shadow-deep: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 20px 0 rgba(255, 59, 92, 0.12);
  --oh-max-width: 1180px;
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
  --oh-radius-soft: 16px;
  --oh-radius-pill: 999px;
}

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

body.oh-body-root {
  margin: 0;
  padding: 0;
  background-color: var(--oh-bg-main);
  color: var(--oh-text-body);
  font-family: var(--font-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.oh-main-area {
  flex: 1;
  position: relative;
  z-index: 10;
}

.oh-content-frame {
  width: 100%;
  max-width: var(--oh-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Background Pattern */
.oh-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  color: var(--oh-accent-vivid);
}

/* Header */
.oh-top-header {
  width: 100%;
  background-color: var(--oh-bg-surface);
  border-bottom: 1px solid var(--oh-border-subtle);
  z-index: 20;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.oh-header-inner {
  width: 100%;
  max-width: var(--oh-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.oh-brand-logo {
  display: inline-flex;
  items-center;
  gap: 0.6rem;
  color: var(--oh-text-heading);
  text-decoration: none;
}

.oh-logo-svg {
  width: 2rem;
  height: 2rem;
  color: var(--oh-accent-vivid);
}

.oh-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

/* Section Shells */
.oh-stage-shell {
  position: relative;
  z-index: 10;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.oh-sticky-aside {
  position: relative;
}

@media (min-width: 768px) {
  .oh-sticky-aside {
    position: sticky;
    top: 2rem;
  }
}

/* Typography Headings */
.oh-heading-primary {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--oh-text-heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .oh-heading-primary {
    font-size: 1.75rem;
  }
}

.oh-heading-secondary {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--oh-text-heading);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.oh-lead-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--oh-text-muted);
}

/* Feature Pills */
.oh-pill-item {
  background-color: var(--oh-bg-surface-alt);
  color: var(--oh-text-heading);
  border: 1px solid var(--oh-border-subtle);
  border-radius: var(--oh-radius-pill);
}

.oh-pill-item svg {
  color: var(--oh-accent-vivid);
}

/* Copy Card */
.oh-copy-card {
  background-color: var(--oh-bg-surface);
  border: 1px solid var(--oh-border-subtle);
  border-radius: var(--oh-radius-soft);
  box-shadow: var(--oh-shadow-deep);
}

/* Trust Shield Guarantee */
.oh-trust-shield {
  background-color: rgba(21, 28, 44, 0.7);
  border: 1px solid var(--oh-border-highlight);
  border-radius: var(--oh-radius-soft);
}

.oh-shield-icon {
  color: var(--oh-accent-vivid);
}

.oh-shield-heading {
  color: var(--oh-text-heading);
}

.oh-shield-sub {
  color: var(--oh-text-muted);
}

/* Action CTA Zone & Badge */
.oh-action-zone {
  background-color: var(--oh-bg-surface);
  border: 1px solid var(--oh-border-subtle);
  border-radius: var(--oh-radius-soft);
  box-shadow: var(--oh-shadow-deep);
}

.oh-price-badge {
  background-color: var(--oh-accent-vivid);
  color: #ffffff;
  border-radius: var(--oh-radius-soft);
}

.oh-price-label {
  opacity: 0.9;
}

.oh-submit-btn {
  background-color: var(--oh-accent-vivid);
  color: #ffffff;
  border-radius: var(--oh-radius-soft);
  text-decoration: none;
  box-shadow: 0 10px 20px -5px rgba(255, 59, 92, 0.4);
}

.oh-submit-btn:hover {
  background-color: var(--oh-accent-hover);
  transform: translateY(-1px);
}

/* Product Media */
.oh-media-stage {
  position: relative;
}

.oh-product-image {
  max-height: 480px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

/* Features Highlights Section */
.oh-highlights-shell {
  background-color: var(--oh-bg-surface);
  border-top: 1px solid var(--oh-border-subtle);
  border-bottom: 1px solid var(--oh-border-subtle);
  position: relative;
  z-index: 10;
}

.oh-feature-card {
  background-color: var(--oh-bg-main);
  border: 1px solid var(--oh-border-subtle);
  border-radius: var(--oh-radius-soft);
}

.oh-icon-circle {
  background-color: var(--oh-accent-light);
  color: var(--oh-accent-vivid);
}

.oh-feature-title {
  color: var(--oh-text-heading);
  font-family: var(--font-heading);
}

.oh-feature-desc {
  color: var(--oh-text-muted);
}

/* Feedback / Testimonials */
.oh-feedback-shell {
  position: relative;
  z-index: 10;
}

.oh-testimonial-item {
  background-color: var(--oh-bg-surface-alt);
  border: 1px solid var(--oh-border-subtle);
  border-radius: var(--oh-radius-soft);
  box-shadow: var(--oh-shadow-deep);
}

.oh-quote-mark {
  color: var(--oh-accent-vivid);
}

.oh-quote-text {
  color: var(--oh-text-heading);
  font-style: italic;
}

.oh-avatar-circle {
  background-color: var(--oh-accent-light);
  color: var(--oh-accent-vivid);
  border: 1px solid var(--oh-border-highlight);
}

.oh-author-name {
  color: var(--oh-text-heading);
}

.oh-stars-row {
  color: #ffb800;
  letter-spacing: 2px;
}

/* Footer */
.oh-bottom-footer {
  width: 100%;
  background-color: var(--oh-bg-surface);
  border-top: 1px solid var(--oh-border-subtle);
  color: var(--oh-text-muted);
  position: relative;
  z-index: 20;
}

.oh-footer-links a {
  color: var(--oh-text-muted);
}

.oh-footer-links a:hover {
  color: var(--oh-text-heading);
}