/* Oculisto — dark neon / bright unusual design (desktop first) */

:root {
  --bg-dark: #0c0c0f;
  --bg-card: #141418;
  --bg-card-hover: #1a1a20;
  --text: #e8e8ec;
  --text-muted: #9ca3af;
  --accent-pink: #ff2d92;
  --accent-purple: #a855f7;
  --accent-blue: #3b82f6;
  --accent-cyan: #06b6d4;
  --accent-green: #22c55e;
  --gradient-neon: linear-gradient(135deg, #ff2d92 0%, #a855f7 35%, #3b82f6 70%, #06b6d4 100%);
  --gradient-cta: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --glow-pink: 0 0 20px rgba(255, 45, 146, 0.4);
  --glow-purple: 0 0 24px rgba(168, 85, 247, 0.4);
  --glow-border: 0 0 12px rgba(168, 85, 247, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-heading: "Outfit", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* Subtle hero gradient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.15), transparent),
              radial-gradient(ellipse 60% 40% at 100% 50%, rgba(59, 130, 246, 0.08), transparent),
              radial-gradient(ellipse 60% 40% at 0% 80%, rgba(255, 45, 146, 0.06), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ========== Advertorial ========== */
.advertorial {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  margin: 0 auto 3rem;
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  z-index: 1;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 45, 146, 0.08) 0%, transparent 45%, transparent 55%, rgba(6, 182, 212, 0.1) 100%),
              linear-gradient(180deg, rgba(168, 85, 247, 0.15) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 340px;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-content {
    align-items: center;
  }
}

.hero-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.08);
}

.hero-title {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 14ch;
}

@media (max-width: 768px) {
  .hero-title {
    max-width: none;
  }
}

.hero-sub {
  font-family: var(--font);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 32ch;
}

@media (max-width: 768px) {
  .hero-sub {
    max-width: none;
  }
}

.hero-cta {
  margin-top: 0.25rem;
}

.hero-btn {
  font-family: var(--font-heading);
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  background: var(--gradient-cta);
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(239, 68, 68, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.5);
}

.hero-payment {
  margin-top: 0.5rem;
  opacity: 0.85;
}

.hero-payment img {
  max-width: 260px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-payment img {
    margin: 0 auto;
  }
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.3), 0 0 70px rgba(255, 45, 146, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-self: end;
}

@media (max-width: 768px) {
  .hero-image-wrap {
    justify-self: center;
    max-width: 380px;
  }
}

.hero-image-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(168, 85, 247, 0.4), 0 0 90px rgba(255, 45, 146, 0.15);
}

.hero-image-wrap a {
  display: block;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* ========== Main layout ========== */
.cylo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  position: relative;
  z-index: 1;
}

.cylo-container {
  width: 100%;
}

/* ========== Header ========== */
.header {
  padding: 0.5rem 0;
}

.header-container-yellow {
  background: linear-gradient(135deg, rgba(255, 237, 130, 0.12) 0%, rgba(251, 191, 36, 0.08) 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: var(--radius);
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--glow-border);
}

.header-container-yellow-text p {
  margin: 0;
  font-size: 1rem;
  color: #fef08a;
}

.header-container-title {
  margin-top: 2rem;
}

.header-container-title h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-container-author {
  margin-top: 1rem;
}

.header-container-author-text-name {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== Content sections ========== */
.content {
  margin-top: 2rem;
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.content-section-image {
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: var(--glow-border);
}

.content-section-image a {
  display: block;
}

.content-section-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.article p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.article strong {
  color: #fff;
  font-weight: 600;
}

.article a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 182, 212, 0.5);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.article a:hover {
  color: #67e8f9;
  border-bottom-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

/* ========== Colored box (tip CTA) ========== */
.colored-box {
  background: linear-gradient(135deg, rgba(255, 45, 146, 0.12) 0%, rgba(168, 85, 247, 0.1) 100%) !important;
  border: 1px solid rgba(255, 45, 146, 0.35) !important;
  color: var(--text) !important;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: var(--glow-pink);
}

.colored-box h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #fff;
}

.colored-box p {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.colored-box a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 182, 212, 0.5);
}

.colored-box a:hover {
  color: #67e8f9;
}

/* ========== Primary CTA button ========== */
.button {
  margin: 2rem 0;
}

.button a {
  font-family: var(--font-heading);
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background: var(--gradient-cta);
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(239, 68, 68, 0.5);
}

/* ========== Page header (legal / info pages) ========== */
.page-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(168, 85, 247, 0.25);
  background: rgba(20, 20, 24, 0.85);
  backdrop-filter: blur(8px);
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s;
}

.page-header-brand:hover {
  opacity: 0.9;
}

.page-header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.25rem;
}

.page-header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.page-header-nav a:hover {
  color: var(--accent-cyan);
}

/* ========== Page content (legal / info pages) ========== */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.page-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.3);
}

.page-content p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.page-content a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.page-content a:hover {
  color: #67e8f9;
  text-decoration: underline;
}

.page-content ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--text);
}

.page-content li {
  margin-bottom: 0.35rem;
}

/* ========== Footer ========== */
.footer {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  background: var(--bg-card);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-container-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-container-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-container-links a:hover {
  color: #67e8f9;
  text-decoration: underline;
}

.footer-container-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-container-text .footer-note {
  margin-bottom: 0.5rem;
}

.footer-container-text a {
  color: var(--accent-cyan);
  text-decoration: none;
}

.footer-container-text a:hover {
  text-decoration: underline;
}

/* Hide old long disclaimer blocks; we use links only */
.footer-container-text-footer1,
.footer-container-text-footer2,
.footer-container-text-footer3,
.footer-container-text-footer4,
.footer-container-text-footer5 {
  display: none;
}

.testimonial {
  display: none;
}
