/* CUSTOM VARIABLE DECLARATIONS */
:root {
  /* Site Theme: DARK */
  --oh-back: #0a0b10;
  --oh-panel: #131622;
  --oh-panel-highlight: #1c2135;
  --oh-accent: #ff3366; /* Vibrant Red-pink Pulse */
  --oh-accent-hover: #ff0044;
  --oh-accent-glow: rgba(255, 51, 102, 0.45);
  --oh-border: rgba(255, 255, 255, 0.08);
  
  /* Typography Colors */
  --oh-text-main: #ffffff;
  --oh-text-muted: #9ca3af;
  
  /* Fonts chosen dynamically */
  --oh-font-display: 'Montserrat', sans-serif;
  --oh-font-body: 'Poppins', sans-serif;
  
  /* Configured Random Settings */
  --oh-frame-width: 1200px;
  --oh-radius: 16px; /* Soft Style */
  
  /* Deep Shadow + Spread */
  --oh-shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 
                    0 0 25px rgba(255, 51, 102, 0.15);
}

/* BASE STYLING */
body.oh-viewport {
  background-color: var(--oh-back);
  color: var(--oh-text-main);
  font-family: var(--oh-font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* CONTAINER RULE Only applied to main content bounds */
.oh-frame-max {
  width: 100%;
  max-width: var(--oh-frame-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* BACKGROUND ABSTRACT ELEMS */
.oh-abstract-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* HEADER */
.oh-header-belt {
  background-color: var(--oh-panel);
  border-bottom: 1px solid var(--oh-border);
  height: 80px;
  position: relative;
  z-index: 20;
  width: 100%;
}

.oh-brand-pack {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.oh-brand-symbol {
  width: 2rem;
  height: 2rem;
  color: var(--oh-accent);
}

.oh-brand-word {
  font-family: var(--oh-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: var(--oh-text-main);
}

.oh-desktop-deco {
  display: none;
}

@media (min-width: 1024px) {
  .oh-desktop-deco {
    display: block;
  }
}

/* MAIN WRAPPER */
.oh-main-pane {
  flex: 1;
  position: relative;
  z-index: 10;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

/* PRODUCT MAIN SHOWCASE (Preset B: Content Left 55% + Image Right 45%) */
.oh-main-showcase {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (min-width: 1024px) {
  .oh-main-showcase {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Content Left Hand Side */
.oh-info-wing {
  width: 100%;
}

@media (min-width: 1024px) {
  .oh-info-wing {
    width: 55%;
  }
}

.oh-pitch-head {
  font-family: var(--oh-font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase; /* Heading-case Configured */
  margin-bottom: 1rem;
  color: var(--oh-text-main);
}

@media (min-width: 640px) {
  .oh-pitch-head {
    font-size: 3rem;
  }
}

.oh-pitch-sub {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--oh-text-muted);
  margin-bottom: 1.5rem;
}

/* Benefit Pills Cluster */
.oh-pills-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.oh-pill-tag {
  background-color: var(--oh-panel-highlight);
  color: var(--oh-text-main);
  border: 1px solid var(--oh-border);
  padding: 0.5rem 1rem;
  border-radius: 999px; /* Pill shape standard for secondary tags */
  font-size: 0.85rem;
  font-weight: 500;
}

.oh-narrative-copy {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--oh-text-muted);
  margin-bottom: 2rem;
}

/* Mini Features Icons Row */
.oh-mini-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  border-top: 1px dashed var(--oh-border);
  border-bottom: 1px dashed var(--oh-border);
  padding: 1.25rem 0;
}

.oh-perk-node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--oh-text-main);
}

.oh-node-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 51, 102, 0.1);
  color: var(--oh-accent);
}

.oh-node-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Guarantee Strip (Icon-Left) */
.oh-guarantee-strip {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--oh-panel-highlight);
  padding: 1rem;
  border-radius: var(--oh-radius);
  border-left: 4px solid var(--oh-accent);
  margin-bottom: 2.5rem;
}

.oh-guarantee-strip svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--oh-accent);
  flex-shrink: 0;
}

.oh-guarantee-strip p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--oh-text-muted);
}

/* Purchase Floating Dock (Sticky on Desktop) */
.oh-purchase-dock {
  background-color: var(--oh-panel);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius);
  padding: 1.5rem;
  box-shadow: var(--oh-shadow-deep);
}

@media (min-width: 1024px) {
  .oh-purchase-dock {
    position: sticky;
    bottom: 2rem;
    z-index: 30;
  }
}

/* Price Display (Badge Accent Background) */
.oh-badge-price {
  background-color: var(--oh-accent);
  color: #ffffff;
  font-family: var(--oh-font-display);
  font-weight: 800;
  font-size: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: -0.03em;
  box-shadow: 0 4px 14px var(--oh-accent-glow);
}

/* CTA Action Button Link */
.oh-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--oh-accent);
  color: #ffffff;
  font-family: var(--oh-font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1.125rem 2.5rem;
  border-radius: var(--oh-radius);
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px var(--oh-accent-glow);
  text-align: center;
  width: 100%;
}

@media (min-width: 640px) {
  .oh-action-link {
    width: auto;
  }
}

.oh-action-link:hover {
  background-color: var(--oh-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--oh-accent-glow);
}

/* Image Right Hand Side */
.oh-media-wing {
  width: 100%;
}

@media (min-width: 1024px) {
  .oh-media-wing {
    width: 45%;
    position: sticky;
    top: 2rem;
  }
}

.oh-image-wrapper {
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, rgba(9, 10, 15, 0) 70%);
  border-radius: var(--oh-radius);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oh-image-wrapper img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

/* FEATURES SECTION */
.oh-perks-assembly {
  background-color: var(--oh-panel);
  border-top: 1px solid var(--oh-border);
  border-bottom: 1px solid var(--oh-border);
  padding: 5rem 0;
  margin-bottom: 6rem;
}

.oh-perks-matrix {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .oh-perks-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oh-perk-plate {
  background-color: var(--oh-panel-highlight);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.oh-perk-plate:hover {
  transform: translateY(-4px);
}

.oh-plate-icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 51, 102, 0.1);
  color: var(--oh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 12px rgba(255, 51, 102, 0.15);
}

.oh-plate-icon-container svg {
  width: 2rem;
  height: 2rem;
}

.oh-plate-header {
  font-family: var(--oh-font-display);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--oh-text-main);
}

.oh-plate-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--oh-text-muted);
}

/* TESTIMONIALS SECTION (Preset B: Horizontal cards, darker/lighter theme background, big quotes) */
.oh-social-wall {
  padding-bottom: 6rem;
}

.oh-quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .oh-quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.oh-quote-panel {
  background-color: var(--oh-panel);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-radius);
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.oh-quote-decor {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 6rem;
  font-family: var(--oh-font-display);
  color: rgba(255, 51, 102, 0.08);
  line-height: 1;
  pointer-events: none;
}

.oh-quote-body {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--oh-text-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 5;
}

.oh-client-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-style: normal;
}

.oh-client-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--oh-accent);
  color: #ffffff;
  font-family: var(--oh-font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px var(--oh-accent-glow);
}

.oh-stars-row {
  color: #ffb020;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  display: block;
  margin-top: 0.25rem;
}

/* FOOTER */
.oh-terminal-belt {
  background-color: #050609;
  border-top: 1px solid var(--oh-border);
  padding: 4rem 0 2rem 0;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 20;
}