/* ========================
   ANYAUGO — Website Styles
   ======================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #020b18;
  --bg2:       #030f1f;
  --bg3:       #061526;
  --card:      #071829;
  --card2:     #091f35;
  --border:    rgba(26, 108, 245, 0.15);
  --border2:   rgba(255, 255, 255, 0.06);
  --blue:      #1a6cf5;
  --blue2:     #0055cc;
  --cyan:      #00d4ff;
  --green:     #00c853;
  --green2:    #00e676;
  --amber:     #ffab00;
  --red:       #ff3d3d;
  --gold:      #e6b84a;
  --gold2:     #c9901a;
  --white:     #ffffff;
  --text:      #c8d8ec;
  --text2:     #7a94b8;
  --text3:     #3d5575;
  --glow-blue: 0 0 40px rgba(26, 108, 245, 0.25);
  --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.2);
  --glow-gold: 0 0 40px rgba(230, 184, 74, 0.3);
  --nav-h:     72px;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Container ────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Reveal ───────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 108, 245, 0.35);
}
.btn-primary:hover { background: var(--blue2); box-shadow: 0 6px 30px rgba(26,108,245,0.5); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid rgba(0, 212, 255, 0.3);
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(0,212,255,0.06); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(26, 108, 245, 0.35);
}
.btn-outline:hover { border-color: var(--blue); background: rgba(26,108,245,0.08); transform: translateY(-2px); }
.btn-elite {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #1a1008;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(230, 184, 74, 0.3);
}
.btn-elite:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(230,184,74,0.5); }

/* ── Section shared ──────────────── */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-desc { font-size: 1.05rem; color: var(--text2); max-width: 680px; margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-center.section-desc { margin-left: auto; margin-right: auto; }

/* ── NAV ──────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(2, 11, 24, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(26,108,245,0.12), 0 4px 20px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }

/* ── HERO ─────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26,108,245,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(0,212,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,108,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,108,245,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(26,108,245,0.3);
  background: rgba(26,108,245,0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-sub-line { color: var(--text2); font-weight: 700; }
.hero-gradient {
  background: linear-gradient(125deg, var(--cyan), var(--blue), #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc { font-size: 1.1rem; color: var(--text2); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-n { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.stat-l { display: block; font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-sep { width: 1px; height: 40px; background: var(--border2); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3rem; }
.scroll-arrow { color: var(--text3); animation: scrollDown 2s ease-in-out infinite; width: 24px; }
.scroll-arrow svg { width: 24px; height: 24px; }
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ── BREAK SECTION ───────────────── */
.break-section {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.break-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.break-points { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 10px; }
.break-points li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 0.95rem; }
.break-points li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ── RINGS DIAGRAM ───────────────── */
.rings-container {
  position: relative;
  width: 420px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.ring-outer {
  width: 380px; height: 380px;
  border-width: 1px;
  border-color: rgba(26, 108, 245, 0.2);
  animation: spin 22s linear infinite;
}
.ring-mid {
  width: 280px; height: 280px;
  border-width: 1.5px;
  border-color: rgba(0, 212, 255, 0.3);
  animation: spinR 15s linear infinite;
}
.ring-inner {
  width: 180px; height: 180px;
  border-width: 2px;
  border-color: rgba(230, 184, 74, 0.4);
  animation: spin 10s linear infinite;
}
@keyframes spin  { to { transform: rotate(360deg); } }
@keyframes spinR { to { transform: rotate(-360deg); } }
.ring-core {
  position: relative;
  z-index: 2;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,184,74,0.15) 0%, rgba(26,108,245,0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-gold);
}
.ring-core svg { width: 60px; height: 60px; filter: drop-shadow(0 0 12px rgba(230,184,74,0.6)); }

/* ── PLATFORM PILLARS ────────────── */
.platform-section { padding: 120px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pcard {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.pcard:hover { border-color: rgba(26,108,245,0.3); box-shadow: var(--glow-blue); transform: translateY(-4px); }
.pcard-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.pcard h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.pcard p { font-size: 0.9rem; color: var(--text2); line-height: 1.65; }

/* ── PRICING ─────────────────────── */
.pricing-section {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trial-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 3rem;
}
.trial-icon { font-size: 1.5rem; flex-shrink: 0; }
.trial-banner strong { display: block; color: var(--cyan); margin-bottom: 4px; font-size: 0.95rem; }
.trial-banner span { font-size: 0.85rem; color: var(--text2); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.pcard.pcard-featured {
  position: relative;
  border-color: rgba(26,108,245,0.5);
  box-shadow: var(--glow-blue), 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-10px);
  background: var(--card2);
}
.pcard.pcard-featured:hover { transform: translateY(-14px); }
.featured-badge {
  position: absolute;
  top: -1px; right: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}
.pcard.pcard-elite {
  border-color: rgba(230,184,74,0.3);
  background: linear-gradient(160deg, var(--card2), rgba(230,184,74,0.04));
}
.pcard.pcard-elite:hover { border-color: rgba(230,184,74,0.6); box-shadow: var(--glow-gold); }
.ptier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text3);
  margin-bottom: 0.5rem;
}
.pcard-featured .ptier { color: var(--blue); }
.pcard-elite .ptier    { color: var(--gold); }
.pprice { font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 1.5rem; }
.pprice span { font-size: 0.9rem; font-weight: 400; color: var(--text3); }
.pcard-elite .pprice { color: var(--gold); }
.pcard-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pcard-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--text2); }
.pcard-features li.yes { color: var(--text); }
.pcard-features li.no  { color: var(--text3); }
.pcard-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
}
.pcard-features li.yes::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%2300c853' opacity='0.15'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='%2300c853' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pcard-features li.no::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%233d5575' opacity='0.3'/%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='%233d5575' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.pricing-grid .pcard .btn { width: 100%; }

/* ── SLA ─────────────────────────── */
.sla-section { padding: 120px 0; }
.sla-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.sla-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.sla-table thead { background: var(--card2); }
.sla-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text3);
  border-bottom: 1px solid var(--border);
}
.sla-table td { padding: 16px 20px; color: var(--text); border-bottom: 1px solid var(--border2); transition: background 0.2s; }
.sla-table tbody tr:last-child td { border-bottom: none; }
.sla-table td:first-child { font-weight: 600; color: var(--white); }
.sla-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}
.sla-slow    { background: rgba(255,61,61,0.12);  color: var(--red);   border: 1px solid rgba(255,61,61,0.25); }
.sla-medium  { background: rgba(255,171,0,0.12);  color: var(--amber); border: 1px solid rgba(255,171,0,0.25); }
.sla-fast    { background: rgba(0,212,255,0.10);  color: var(--cyan);  border: 1px solid rgba(0,212,255,0.25); }
.sla-instant { background: rgba(0,200,83,0.10);   color: var(--green); border: 1px solid rgba(0,200,83,0.25); }
.sla-note { margin-top: 2rem; color: var(--text3); font-size: 0.85rem; font-style: italic; max-width: 700px; margin-left: auto; margin-right: auto; text-align: center; }

/* ── RECOVERY ────────────────────── */
.recovery-section {
  padding: 120px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 2rem; }
.path-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.25s;
}
.path-card:hover { border-color: rgba(26,108,245,0.25); }
.path-num { font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; }
.path-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.path-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.7; margin-bottom: 1rem; }
.path-instruction {
  background: rgba(26,108,245,0.07);
  border-left: 3px solid var(--blue);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1rem 0;
  font-size: 0.875rem;
  color: var(--text);
}
.loss-policy {
  background: rgba(255,61,61,0.05);
  border: 1px solid rgba(255,61,61,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 2rem;
}
.loss-policy h3 { font-size: 1.15rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.loss-policy p { font-size: 0.9rem; color: var(--text2); line-height: 1.7; margin-bottom: 1rem; }
.loss-policy .btn { margin-top: 0.5rem; }

/* ── CONTACT ─────────────────────── */
.contact-section { padding: 120px 0; }
.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.contact-label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 0.75rem; }
.contact-email { display: block; font-size: 1.1rem; font-weight: 700; color: var(--cyan); text-decoration: none; word-break: break-all; margin-bottom: 0.5rem; transition: color 0.2s; }
.contact-email:hover { color: var(--white); }
.contact-sub { font-size: 0.8rem; color: var(--text3); }
.contact-divider { background: var(--border2); }
.contact-info p { font-size: 0.9rem; color: var(--text); margin-bottom: 0.75rem; }
.contact-checklist { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.contact-checklist li { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text2); }
.contact-checklist li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

/* ── FOOTER ──────────────────────── */
.footer { padding: 40px 0; border-top: 1px solid var(--border2); background: var(--bg3); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-copy p { font-size: 0.85rem; color: var(--text3); line-height: 1.6; }
.footer-legal a { color: var(--text3); text-decoration: none; }
.footer-legal a:hover { color: var(--text2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 1060px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pcard.pcard-featured { transform: none; }
  .pcard.pcard-featured:hover { transform: translateY(-4px); }
  .break-inner { grid-template-columns: 1fr; }
  .rings-container { display: none; }
}
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(2,11,24,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .paths-grid    { grid-template-columns: 1fr; }
  .contact-box   { grid-template-columns: 1fr; padding: 28px; }
  .contact-divider { display: none; }
  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-links  { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-sep   { display: none; }
  .hero-cta   { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}


/* Tricking scrapers by forcing the browser to render text backward */
.email-scramble {
    unicode-bidi: bidi-override;
    direction: rtl;
    cursor: pointer;
}

/* Preserves your original link styling now that it's a secure span */
.contact-email.email-scramble {
    display: inline-block;
    text-decoration: underline;
}