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

:root {
  --bg-dark: #020b06;
  --bg-card: #07140d;
  --bg-card-hover: #0c1f14;
  --text: #e6f4ec;
  --text-muted: #9fb5a7;
  --accent-pink: #22c55e;
  --accent-purple: #16a34a;
  --accent-blue: #15803d;
  --accent-cyan: #22c55e;
  --accent-green: #4ade80;
  --gradient-neon: linear-gradient(135deg, #15803d 0%, #16a34a 35%, #22c55e 70%, #4ade80 100%);
  --gradient-cta: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  --glow-pink: 0 0 20px rgba(34, 197, 94, 0.4);
  --glow-purple: 0 0 24px rgba(22, 163, 74, 0.4);
  --glow-border: 0 0 12px rgba(34, 197, 94, 0.35);
  --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(34, 197, 94, 0.18), transparent),
              radial-gradient(ellipse 60% 40% at 100% 50%, rgba(21, 128, 61, 0.12), transparent),
              radial-gradient(ellipse 60% 40% at 0% 80%, rgba(15, 118, 110, 0.08), 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(22, 163, 74, 0.14) 0%, transparent 45%, transparent 55%, rgba(34, 197, 94, 0.16) 100%),
              linear-gradient(180deg, rgba(15, 118, 110, 0.18) 0%, rgba(21, 128, 61, 0.12) 50%, transparent 100%);
  border: 1px solid rgba(34, 197, 94, 0.4);
  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-green);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(74, 222, 128, 0.6);
  border-radius: 9999px;
  background: rgba(22, 163, 74, 0.15);
}

.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(34, 197, 94, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.6);
}

.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(34, 197, 94, 0.45);
  box-shadow: 0 0 35px rgba(34, 197, 94, 0.35), 0 0 70px rgba(15, 118, 110, 0.25);
  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(34, 197, 94, 0.5), 0 0 90px rgba(15, 118, 110, 0.3);
}

.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(74, 222, 128, 0.08) 0%, rgba(34, 197, 94, 0.18) 100%);
  border: 1px solid rgba(34, 197, 94, 0.45);
  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: #bbf7d0;
}

.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(34, 197, 94, 0.4);
}

.content-section-image {
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.35);
  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-green);
  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: #bbf7d0;
  border-bottom-color: var(--accent-green);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

/* ========== Colored box (tip CTA) ========== */
.colored-box {
  background: linear-gradient(135deg, rgba(6, 95, 70, 0.3) 0%, rgba(22, 163, 74, 0.35) 100%) !important;
  border: 1px solid rgba(34, 197, 94, 0.55) !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-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 182, 212, 0.5);
}

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

/* ========== 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(34, 197, 94, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.65);
}

/* ========== Page header (legal / info pages) ========== */
.page-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(3, 30, 16, 0.9);
  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-green);
}

/* ========== 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(34, 197, 94, 0.35);
}

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

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

.page-content a:hover {
  color: #bbf7d0;
  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(34, 197, 94, 0.25);
  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-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-container-links a:hover {
  color: #bbf7d0;
  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-green);
  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;
}
