:root {
  --hy-bg-dark: #161d30;
  --hy-bg-card: #0e1321;
  --hy-bg-card-alt: #1a233a;
  --hy-bg-accent: #00f2fe;
  --hy-bg-accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --hy-text-light: #f9fafb;
  --hy-text-dim: #9ca3af;
  --hy-text-accent: #00f2fe;
  --hy-max-width: 1120px;
  --hy-radius: 12px;
  --hy-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

body {
  background-color: var(--hy-bg-dark);
  color: var(--hy-text-light);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

/* Page container */
.hy-stage-wrap {
  max-width: var(--hy-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Product Section - Preset B Layout */
.hy-main-show {
  display: flex;
  flex-direction: column-reverse; /* For mobile: image sits on top, text details below */
  gap: 3rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hy-main-show {
    flex-direction: row; /* Desktop: Content left, Image right */
    align-items: flex-start;
  }
  .hy-hero-details {
    width: 55%;
  }
  .hy-hero-media {
    width: 45%;
    position: sticky;
    top: 7rem;
    align-self: flex-start;
  }
}

/* Typography styles */
.hy-main-heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  background: var(--hy-bg-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .hy-main-heading {
    font-size: 1.85rem;
  }
}

.hy-sub-heading {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--hy-text-dim);
  margin-bottom: 2rem;
}

.hy-pills-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hy-pill-item {
  background: var(--hy-bg-card);
  border: 1px solid rgba(0, 242, 254, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hy-text-light);
}

.hy-text-paragraph {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--hy-text-dim);
  margin-bottom: 2rem;
}

/* Inline Perks Row inside hero details */
.hy-inline-perks {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hy-inline-perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hy-inline-perk-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--hy-text-accent);
  flex-shrink: 0;
}

/* Guarantee/Shield Block */
.hy-shield-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--hy-text-dim);
  border-left: 2px solid var(--hy-text-accent);
  padding-left: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* CTA Card Block */
.hy-floating-action {
  background: var(--hy-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--hy-radius);
  box-shadow: var(--hy-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hy-floating-action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Badge Price Style */
.hy-price-tag {
  background: var(--hy-bg-accent-gradient);
  color: #060a12;
  font-weight: 900;
  font-family: var(--font-display);
  padding: 0.5rem 1.5rem;
  border-radius: var(--hy-radius);
  font-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.4);
}

/* CTA Action Trigger */
.hy-action-trigger {
  background: var(--hy-text-light);
  color: var(--hy-bg-dark);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: var(--hy-radius);
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  flex-grow: 1;
}

.hy-action-trigger:hover {
  background: var(--hy-text-accent);
  color: #060a12;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
}

/* Features Block - 2 columns */
.hy-perks-outer {
  background: var(--hy-bg-card);
  padding: 5rem 0;
  margin: 4rem 0 0 0;
}

.hy-perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .hy-perks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hy-perk-node {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.hy-perk-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(0, 242, 254, 0.1);
  border: 2px solid var(--hy-text-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hy-perk-circle svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--hy-text-accent);
}

.hy-perk-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--hy-text-light);
}

.hy-perk-desc {
  color: var(--hy-text-dim);
  line-height: 1.6;
}

/* Testimonials (Stories) Section */
.hy-stories-section {
  padding: 5rem 0;
}

.hy-stories-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Cards are slightly darker than the body background */
.hy-story-node {
  background: #090c15;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--hy-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hy-story-node {
    flex-direction: row;
    align-items: flex-start;
  }
}

.hy-story-quote-decor {
  position: absolute;
  top: -1.5rem;
  right: 1.5rem;
  font-size: 10rem;
  line-height: 1;
  font-family: serif;
  color: rgba(0, 242, 254, 0.04);
  font-style: italic;
  user-select: none;
  pointer-events: none;
}

.hy-story-content {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  max-width: 80%;
}

@media (max-width: 640px) {
  .hy-story-content {
    max-width: 100%;
  }
}

.hy-story-rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.hy-story-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--hy-text-light);
  font-style: italic;
}

.hy-story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hy-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: var(--hy-bg-accent-gradient);
  color: #060a12;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hy-author-info {
  display: flex;
  flex-direction: column;
}

.hy-author-name {
  font-weight: 700;
  color: var(--hy-text-light);
}

.hy-author-loc {
  font-size: 0.875rem;
  color: var(--hy-text-dim);
}

/* Header Styles */
.hy-site-header {
  width: 100%;
  background: var(--hy-bg-card);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hy-header-inner {
  max-width: var(--hy-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hy-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.hy-brand-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--hy-bg-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hy-header-decor {
  display: none;
}

@media (min-width: 1024px) {
  .hy-header-decor {
    display: block;
    opacity: 0.6;
  }
}

/* Footer Styles */
.hy-site-footer {
  background: #07090f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem 0;
  margin-top: auto;
}

.hy-footer-inner {
  max-width: var(--hy-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hy-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.hy-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hy-footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

.hy-footer-link {
  color: var(--hy-text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.25s ease;
}

.hy-footer-link:hover {
  color: var(--hy-text-accent);
}