/* ===========================================================
   EVERYDAY CYBER — Design System
   Palette derived from brand card: near-black + amber/orange
   beam stripes, bold condensed display type, script signature.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Dancing+Script:wght@600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root{
  /* Color */
  --bg:            #0a0908;
  --bg-alt:        #100e0b;
  --panel:         #16130f;
  --panel-line:    #2a231a;
  --stripe-1:      #d9480f;
  --stripe-2:      #ff8c2a;
  --accent:        #ff7a1a;
  --accent-glow:   #ffb765;
  --accent-dim:    #7a3d12;
  --ok:            #5fd0c0;      /* single cool accent — "secure/verified" only */
  --text:          #f5f1e8;
  --text-dim:      #a89f90;
  --text-faint:    #6e6659;

  /* Type */
  --f-display: 'Anton', sans-serif;
  --f-script:  'Dancing Script', cursive;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before {
  content: ""; position: fixed; top: -50vh; left: -50vw; width: 200vw; height: 200vh;
  background: radial-gradient(circle at 30% 70%, rgba(255, 122, 26, 0.12), transparent 45%), radial-gradient(circle at 70% 30%, rgba(217, 72, 15, 0.1), transparent 45%);
  filter: blur(100px); z-index: -3; pointer-events: none;
  animation: aurora-drift 25s infinite alternate ease-in-out;
}
@keyframes aurora-drift { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.4) rotate(15deg); } }
body::after { content: ""; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background-image: linear-gradient(rgba(255, 122, 26, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 122, 26, 0.04) 1px, transparent 1px); background-size: 50px 50px; z-index: -2; pointer-events: none; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ---------- Stripe background motif (from card) ---------- */
.stripes{
  position:absolute; inset:0;
  overflow:hidden;
  pointer-events:none;
  z-index:0;
}
.stripes::before{
  content:"";
  position:absolute;
  top:-10%; right:-15%;
  width:75%; height:130%;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0 40px,
      rgba(217,72,15,0.0) 40px 80px
    ),
    linear-gradient(100deg,
      transparent 0%,
      transparent 8%,
      #1c0f04 12%,
      #1c0f04 16%,
      transparent 19%,
      transparent 27%,
      var(--accent-dim) 31%,
      #7a3d12 36%,
      var(--stripe-1) 44%,
      var(--stripe-2) 55%,
      var(--accent-glow) 63%,
      var(--stripe-2) 70%,
      var(--stripe-1) 78%,
      #1c0f04 86%,
      transparent 92%,
      transparent 100%
    );
  filter: blur(0.5px);
  opacity:0.9;
  animation: stripe-drift 22s ease-in-out infinite alternate;
}
@keyframes stripe-drift{
  0%   { transform: translateX(0) scaleX(1); }
  100% { transform: translateX(-3%) scaleX(1.03); }
}
.stripes.subtle::before{ opacity:0.35; }

/* ---------- Container ---------- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding-left:var(--pad); padding-right:var(--pad); position:relative; z-index:1; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  font-family:var(--f-mono);
  font-size:0.78rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--accent-glow);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:18px; height:1px;
  background:var(--accent-glow);
  display:inline-block;
}

/* ---------- Header / Nav ---------- */
header.site{
  position:sticky; top:0; z-index:100;
  background:rgba(10,9,8,0.65);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255, 122, 26, 0.15); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px var(--pad);
  max-width:var(--maxw); margin:0 auto;
}
.logo{ display:flex; flex-direction:column; line-height:1; transition: transform 0.2s ease, text-shadow 0.2s ease; }
.logo:hover { transform: scale(1.05); }
.logo .script{
  font-family:var(--f-script);
  font-size:1.5rem;
  color:var(--accent-glow);
  font-weight:700;
  text-shadow: 0 0 12px rgba(255, 183, 101, 0.6);
}
.logo .word{
  font-family:var(--f-display);
  font-size:1.7rem;
  letter-spacing:0.03em;
  color:var(--text);
  text-transform:uppercase;
  text-shadow: 0 0 15px rgba(245, 241, 232, 0.4);
}
.nav-links{ display:flex; gap:20px; align-items:center; }
.nav-links a{
  font-size:0.86rem;
  font-weight:600;
  letter-spacing:0.03em;
  text-transform:uppercase;
  color:var(--text-dim);
  transition:color .2s;
  position:relative;
  padding:4px 0;
  white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--accent);
}
.nav-cta{
  padding:10px 20px !important;
  background:var(--bg);
  border:1px solid var(--accent);
  color:var(--text) !important;
  font-size:0.82rem !important;
  border-radius:var(--radius);
  transition: all .2s;
}
.nav-cta:hover{ background:var(--accent); color:var(--bg) !important; }
.nav-toggle{ display:none; background:none; border:none; color:var(--text); font-size:1.6rem; cursor:pointer; }

@media (max-width: 1050px){
  .nav-links{
    position:fixed; top:64px; left:0; right:0; bottom:0;
    background:var(--bg); flex-direction:column; justify-content:flex-start;
    padding:40px var(--pad); gap:26px;
    transform:translateX(100%); transition:transform .3s ease;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:block; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 28px;
  font-family:var(--f-body); font-weight:700; font-size:0.92rem;
  letter-spacing:0.02em;
  border-radius:var(--radius);
  cursor:pointer; border:1px solid transparent;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn-primary{
  background:linear-gradient(95deg, var(--stripe-1), var(--accent));
  color:#0a0908;
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 12px 35px -8px rgba(255,122,26,0.75); }
.btn-outline{
  background:transparent;
  border-color:var(--panel-line);
  color:var(--text);
}
.btn-outline:hover{ border-color:var(--accent); color:var(--accent-glow); background:var(--bg-alt); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:110px 0 90px;
  overflow:hidden;
  border-bottom:1px solid var(--panel-line);
}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
  position:relative; z-index:1;
}
.hero h1{
  font-family:var(--f-display);
  font-size:clamp(2.6rem, 6vw, 4.6rem);
  line-height:0.98;
  text-transform:uppercase;
  letter-spacing:0.01em;
  margin:18px 0 22px;
}
.hero h1 .accent{
  background:linear-gradient(95deg,var(--stripe-1),var(--accent-glow));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero .lede{
  font-size:1.08rem; color:var(--text-dim); max-width:46ch; margin-bottom:34px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-script{
  font-family:var(--f-script); color:var(--accent-glow); font-size:1.3rem;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns:1fr; }
}

/* ---------- Terminal / signature scan panel ---------- */
.terminal-wrapper {
  perspective: 1000px;
}
.terminal{
  background:var(--panel);
  border:1px solid var(--panel-line);
  border-radius:6px;
  overflow:hidden;
  transform: rotateY(-15deg) rotateX(5deg);
  transform-style: preserve-3d;
  box-shadow: -20px 30px 60px -10px rgba(0,0,0,0.8), -5px 10px 30px rgba(255,122,26,0.25);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float-terminal 8s ease-in-out infinite;
}
@keyframes float-terminal {
  0% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(-10deg) rotateX(7deg) translateY(-15px); }
  100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
}
.terminal:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-5px);
}
.terminal-bar{
  display:flex; align-items:center; gap:8px;
  padding:10px 14px;
  background:#1c1712;
  border-bottom:1px solid var(--panel-line);
}
.terminal-bar span:not(.t-label){ width:10px; height:10px; border-radius:50%; background:#3a332a; }
.terminal-bar .t-label{
  margin-left:10px; font-family:var(--f-mono); font-size:0.72rem; color:var(--text-faint);
  letter-spacing:0.05em;
}
.terminal-body{
  padding:20px 18px 24px;
  font-family:var(--f-mono);
  font-size:0.84rem;
  min-height:230px;
  color:#d8cdb8;
}
.terminal-body .line{ margin-bottom:9px; opacity:0; animation: line-in .4s forwards; }
.terminal-body .prompt{ color:var(--accent-glow); }
.terminal-body .warn{ color:var(--stripe-2); }
.terminal-body .ok{ color:var(--ok); }
.terminal-body .dim{ color:var(--text-faint); }
.cursor{ display:inline-block; width:7px; height:14px; background:var(--accent-glow); vertical-align:middle; animation:blink 1s step-end infinite; }
@keyframes line-in{ to{ opacity:1; } }
@keyframes blink{ 50%{ opacity:0; } }

/* ---------- Section scaffolding ---------- */
section{ position:relative; padding:88px 0; }
.section-alt{ background:var(--bg-alt); border-top:1px solid var(--panel-line); border-bottom:1px solid var(--panel-line); }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{
  font-family:var(--f-display);
  font-size:clamp(1.9rem, 3.6vw, 2.9rem);
  text-transform:uppercase;
  margin-top:14px;
  line-height:1.04;
}
.section-head p{ color:var(--text-dim); margin-top:16px; font-size:1.02rem; max-width:56ch; }

/* ---------- Cards ---------- */
.grid{ display:grid; gap:24px; }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:980px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; } }

.card{
  background:rgba(22, 19, 15, 0.35); backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255, 122, 26, 0.1); border-top:1px solid rgba(255, 122, 26, 0.35);
  border-radius:8px;
  padding:30px 26px;
  position:relative;
  transition: border-color .4s cubic-bezier(0.34, 1.56, 0.64, 1), transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float-card 6s ease-in-out infinite;
}
.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 1.5s; }
.card:nth-child(3) { animation-delay: 3.0s; }
.card:nth-child(4) { animation-delay: 4.5s; }

@keyframes float-card {
  0% { transform: translateY(0); box-shadow: 0 15px 35px -10px rgba(0,0,0,0.6), 0 0 0px rgba(255,122,26,0); }
  50% { transform: translateY(-10px); box-shadow: 0 25px 45px -10px rgba(0,0,0,0.8), 0 0 15px rgba(255,122,26,0.15); }
  100% { transform: translateY(0); box-shadow: 0 15px 35px -10px rgba(0,0,0,0.6), 0 0 0px rgba(255,122,26,0); }
}

.card:hover{ 
  border-color:var(--accent); 
  animation-play-state: paused;
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 30px 50px -10px rgba(0,0,0,0.9), 0 0 30px rgba(255,122,26,0.4) !important; 
}
.card .tag{
  font-family:var(--f-mono); font-size:0.72rem; letter-spacing:0.08em;
  color:var(--accent-glow); text-transform:uppercase; display:block; margin-bottom:14px;
}
.card h3{ font-family:var(--f-body); font-weight:800; font-size:1.2rem; text-transform:uppercase; letter-spacing:0.02em; margin-bottom:12px; }
.card p{ color:var(--text-dim); font-size:0.95rem; }
.card a.more{ display:inline-block; margin-top:16px; font-size:0.85rem; font-weight:700; color:var(--accent-glow); border-bottom:1px solid var(--accent-dim); }

/* ---------- Stat strip ---------- */
.stats{ display:flex; gap:0; border:1px solid var(--panel-line); border-radius:4px; overflow:hidden; }
.stat{ flex:1; padding:30px 20px; text-align:center; border-right:1px solid var(--panel-line); }
.stat:last-child{ border-right:none; }
.stat .num{ font-family:var(--f-display); font-size:2.4rem; color:var(--accent-glow); }
.stat .lbl{ font-size:0.8rem; color:var(--text-dim); text-transform:uppercase; letter-spacing:0.04em; margin-top:6px; }
@media (max-width:700px){ .stats{ flex-wrap:wrap; } .stat{ flex:1 1 50%; border-bottom:1px solid var(--panel-line); } }

/* ---------- Process / numbered (real sequence use) ---------- */
.process{ display:grid; grid-template-columns:repeat(5,1fr); gap:18px; }
@media (max-width:980px){ .process{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .process{ grid-template-columns:1fr; } }
.pstep{ border-left:2px solid var(--accent-dim); padding-left:16px; }
.pstep .pn{ font-family:var(--f-mono); color:var(--accent-glow); font-size:0.8rem; }
.pstep h4{ font-family:var(--f-body); font-weight:800; font-size:1.05rem; text-transform:uppercase; margin:8px 0 8px; }
.pstep p{ color:var(--text-dim); font-size:0.88rem; }

/* ---------- CTA banner ---------- */
.cta-banner{
  position:relative;
  border-top:1px solid var(--panel-line);
  padding:80px 0;
  text-align:center;
  overflow:hidden;
}
.cta-banner h2{ font-family:var(--f-display); font-size:clamp(1.8rem,4vw,3rem); text-transform:uppercase; margin-bottom:18px; }
.cta-banner p{ color:var(--text-dim); max-width:52ch; margin:0 auto 32px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer.site{
  border-top:1px solid var(--panel-line);
  padding:56px 0 28px;
  background:var(--bg-alt);
}
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
@media (max-width:800px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .foot-grid{ grid-template-columns:1fr; } }
.foot-grid h5{ font-family:var(--f-mono); font-size:0.76rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-faint); margin-bottom:16px; }
.foot-grid a, .foot-grid li{ color:var(--text-dim); font-size:0.9rem; margin-bottom:10px; display:block; }
.foot-grid a:hover{ color:var(--accent-glow); }
.foot-bottom{
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid var(--panel-line); padding-top:22px;
  font-size:0.8rem; color:var(--text-faint); flex-wrap:wrap; gap:12px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ padding:70px 0 60px; border-bottom:1px solid var(--panel-line); position:relative; }
.page-hero h1{ font-family:var(--f-display); font-size:clamp(2.2rem,5vw,3.4rem); text-transform:uppercase; margin-top:14px; }
.page-hero p{ color:var(--text-dim); max-width:60ch; margin-top:16px; font-size:1.02rem; }
.breadcrumb{ font-family:var(--f-mono); font-size:0.78rem; color:var(--text-faint); margin-bottom:8px; }
.breadcrumb .accent-glow{ color:var(--accent-glow); }

/* ---------- Forms ---------- */
.form-panel{
  background:var(--panel); border:1px solid var(--panel-line); border-radius:4px; padding:36px;
}
.field{ margin-bottom:20px; }
.field label{ display:block; font-family:var(--f-mono); font-size:0.76rem; letter-spacing:0.05em; text-transform:uppercase; color:var(--text-dim); margin-bottom:8px; }
.field input, .field textarea, .field select{
  width:100%; background:var(--bg); border:1px solid var(--panel-line); color:var(--text);
  padding:12px 14px; font-family:var(--f-body); font-size:0.95rem; border-radius:3px;
  transition:border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color:var(--accent);
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:0.8rem; color:var(--text-faint); margin-top:6px; }

/* Password Toggle Eye Icon */
.pwd-wrap { position: relative; display: block; }
.pwd-wrap input { padding-right: 40px; }
.pwd-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-dim); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 4px; outline: none; transition: color 0.2s;
}
.pwd-toggle:hover { color: var(--accent-glow); }

/* Visible keyboard focus for a11y */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--accent-glow); outline-offset:2px;
}

/* ---------- List check ---------- */
.checklist li{ position:relative; padding-left:26px; color:var(--text-dim); margin-bottom:12px; font-size:0.96rem; }
.checklist li::before{ content:"›"; position:absolute; left:0; color:var(--accent-glow); font-family:var(--f-mono); font-weight:700; }
.checklist li strong{ color:var(--text); font-weight:600; }

/* ---------- Divider tag (structural, echoes card stripe rhythm) ---------- */
.divider-tag{
  display:flex; align-items:center; gap:14px; margin:0 0 40px;
  font-family:var(--f-mono); font-size:0.72rem; letter-spacing:0.12em; color:var(--text-faint); text-transform:uppercase;
}
.divider-tag::after{ content:""; flex:1; height:1px; background:var(--panel-line); }

/* ---------- 3D Floating Element ---------- */
.floating-3d {
  position: absolute;
  top: 5%;
  right: -15%;
  width: 500px;
  max-width: 55vw;
  opacity: 0.8;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-25px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@media (max-width: 900px) {
  .floating-3d { top: 5%; right: -20%; opacity: 0.35; width: 350px; }
}

/* ---------- Authentication Page ---------- */
.auth-section { display:flex; justify-content:center; align-items:center; min-height:85vh; padding:60px 0; }
.auth-wrap { width:100%; display:flex; justify-content:center; position:relative; z-index:2; }
.auth-card {
  width:100%; max-width:440px; background:rgba(22, 19, 15, 0.45); border:1px solid rgba(255, 122, 26, 0.2); border-top:1px solid rgba(255, 122, 26, 0.6); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border-radius:12px; padding:45px 40px; box-shadow:0 30px 60px -20px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.05);
  position:relative; overflow:hidden;
}
.auth-form { transition: opacity 0.3s ease, transform 0.3s ease; }
.auth-form.hidden { display:none; opacity:0; transform:translateX(20px); }
.auth-form h2 { font-family:var(--f-display); font-size:2.2rem; text-transform:uppercase; margin-bottom:8px; line-height:1.1; }
.auth-subtitle { color:var(--text-dim); font-size:0.95rem; margin-bottom:28px; line-height:1.5; }
.btn-block { width:100%; justify-content:center; padding:14px; font-size:1rem; margin-top:10px; }
.auth-divider {
  text-align:center; margin:28px 0; position:relative;
}
.auth-divider::before {
  content:""; position:absolute; top:50%; left:0; right:0; height:1px; background:var(--panel-line); z-index:1;
}
.auth-divider span {
  background:var(--panel); padding:0 14px; color:var(--text-faint); font-size:0.8rem; font-family:var(--f-mono);
  text-transform:uppercase; letter-spacing:0.05em; position:relative; z-index:2;
}
.sso-buttons { display:flex; gap:16px; margin-bottom:28px; }
.btn-sso {
  flex:1; display:flex; align-items:center; justify-content:center; gap:10px;
  background:var(--bg); border:1px solid var(--panel-line); color:var(--text);
  padding:12px; border-radius:4px; font-family:var(--f-body); font-weight:600; font-size:0.9rem;
  cursor:pointer; transition:background 0.2s, border-color 0.2s;
}
.btn-sso:hover { background:var(--bg-alt); border-color:var(--text-dim); }
.btn-sso svg { width:20px; height:20px; }
.auth-toggle-text { text-align:center; font-size:0.9rem; color:var(--text-dim); margin:0; }
.auth-toggle-text a { color:var(--accent-glow); font-weight:600; text-decoration:underline; text-decoration-color:transparent; transition:text-decoration-color 0.2s; }
.auth-toggle-text a:hover { text-decoration-color:var(--accent-glow); }

/* Password Rules Checklist */
.pwd-rules {
  list-style: none; padding: 0; margin: 0 0 24px 0;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg); padding: 16px; border-radius: 6px; border: 1px solid var(--panel-line);
}
.pwd-rules li {
  font-size: 0.85rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.pwd-rules li span {
  display: inline-block; width: 16px; height: 16px; border-radius: 50%;
  background: var(--panel-line); position: relative; transition: background 0.2s;
}
.pwd-rules li.valid { color: #5fd0c0; }
.pwd-rules li.valid span { background: #5fd0c0; }
.pwd-rules li.valid span::after {
  content: ""; position: absolute; left: 5px; top: 3px; width: 4px; height: 8px;
  border: solid var(--bg); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.pwd-rules li.invalid span::after {
  content: "×"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  color: var(--text-faint); font-size: 14px; font-weight: bold; line-height: 1;
}
button:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }


/* ---------- Dropdown Navigation ---------- */
.nav-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(18, 18, 18, 0.95);
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 1000;
  backdrop-filter: blur(10px);
  padding: 8px 0;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: var(--text);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-glow);
}

/* =========================================
   Custom Cursor & Floating Actions
========================================= */

/* Hide default cursor */
body, a, button, input, select, textarea {
    cursor: none !important;
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 999999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-glow);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent-glow);
    transition: width 0.15s, height 0.15s, background-color 0.15s;
}

/* Enlarge outline when hovering over clickable items */
.cursor-hover .cursor-outline {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 122, 26, 0.1);
}

/* Floating Actions Container */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    align-items: flex-end;
}

.float-whatsapp {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

.float-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.float-contact {
    background: linear-gradient(135deg, #ff8c2a 0%, #ff5c00 100%);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--f-display);
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 122, 26, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 122, 26, 0.7);
}
