/* ============================================================
   HALOSTACK  —  cyber / techno-futurist
   stylesheet : css/style.css
   palette    : dark purple + violet + white + neon green
   ============================================================ */

/* ---------- 1. tokens ---------- */
:root{
  /* core palette */
  --purple-900:    #0d2530;          /* deepest */
  --purple-800:    #1a3c4c;          /* dark sections */
  --purple-700:    #264e62;
  --purple-600:    #356074;
  --violet-500:    #50c3cf;          /* primary brand */
  --violet-400:    #7dd5de;
  --violet-300:    #a8e3e8;          /* light accent on dark */
  --violet-100:    #e3f5f7;          /* tint on light */
  --violet-50:     #f0f9fa;          /* light section bg */
  --white:         #ffffff;
  --paper:         #f5fafb;          /* card on light bg */
  --ink:           #0d2530;
  --ink-2:         #1a3c4c;
  --ink-3:         #5a7480;          /* meta */
  --line:          rgba(26,60,76,.10);
  --line-2:        rgba(26,60,76,.18);

  /* neon accent */
  --neon: #11a58b;          /* signature */
  --neon-bright: #17c9a9;
  --neon-deep: #068b74;
  --neon-glow: 0 0 0 4px rgb(6 139 116 / 18%), 0 0 24px rgb(7 139 117 / 35%);

  /* dark theme helpers */
  --dark-line:     rgba(168,227,232,.14);
  --dark-line-2:   rgba(168,227,232,.28);
  --dark-text:     #e8f4f6;
  --dark-meta:     rgba(232,244,246,.62);

  /* type */
  --f-display: "Space Grotesk", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* radii / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(26,60,76,.05), 0 4px 14px rgba(26,60,76,.08);
  --shadow-md: 0 12px 30px -10px rgba(26,60,76,.2), 0 30px 60px -25px rgba(26,60,76,.3);
  --shadow-glow: 0 0 60px -10px rgba(125,213,222,.5);
}

/* ---------- 2. base ---------- */
*{ -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
a{ color:inherit; text-decoration:none; transition: color .25s, opacity .25s; }
img{ max-width:100%; }
::selection{ background: var(--neon); color: var(--purple-900); }

/* display utility */
.display-1{
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--white);
}
.display-1 .hl{
  color: var(--violet-500);
  position: relative;
  display: inline-block;
}
.display-1 .hl::after{
  content:""; position: absolute; left: 0; right: 0; bottom: 0.05em;
  height: 0.18em; background: var(--violet-500); opacity: .18; z-index: -1;
}
.display-1 .hl-out{
  font-style: italic;
  font-weight: 400;
  color: var(--violet-300);
}

.section-title{
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
}
.section-title--light{ color: var(--white); }
.section-title .hl{
  color: var(--neon-deep);
  position: relative;
  display: inline-block;
}
.section-title--light .hl{ color: var(--neon); }
.section-title .hl-d{
  color: var(--violet-500);
}

.section-sub{
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 46ch;
}
.section-sub--light{ color: var(--dark-meta); }

.lead-prose{
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--dark-meta);
  max-width: 52ch;
}

/* ---------- 3. eyebrow ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow.light{
  color: var(--violet-300);
}
.eyebrow-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 0 4px rgba(192,255,80,.18);
}
.eyebrow--light{ color: var(--dark-meta); }
.ey-tag{
  background: var(--neon);
  color: var(--purple-900);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .1em;
}

/* ---------- 4. buttons ---------- */
.btn{
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  padding: 0.85rem 1.6rem;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s;
  border: 1.5px solid transparent;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-lg{ padding: 1rem 1.9rem; font-size: 1rem; }

.btn-neon{
  background: var(--neon);
  color:var(--paper);
  border-color: var(--neon);
  box-shadow: var(--neon-glow);
}
.btn-neon:hover{
  background: var(--neon-bright);
  border-color: var(--neon-bright);
  color:var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgb(6 139 116 / 25%), 0 12px 30px -8px rgb(23 227 192 / 65%);
}

.btn-ghost{
  background: rgba(255,255,255,.05);
  color: var(--white);
  border: 1.5px solid var(--dark-line-2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.1);
  border-color: var(--violet-300);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-d{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-outline-d:hover{
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.link-quiet{
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-2);
  position: relative;
}
.link-quiet::after{
  content:""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.link-quiet:hover::after{ transform: scaleX(1); }

.section--dark .link-quiet{ color: var(--dark-text); }
.navbar-brand{
  max-width: 230px;
}
/* ---------- 5. announce + nav ---------- */
.announce{
  background: var(--purple-900);
  color: var(--dark-meta);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 0;
  position: relative;
  overflow: hidden;
}
.announce::before{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(192,255,80,.06), transparent);
  animation: announceSheen 8s linear infinite;
}
@keyframes announceSheen{ 0%{ transform: translateX(-100%); } 100%{ transform: translateX(100%); } }
.ann-pulse{ display: inline-flex; align-items: center; gap: 8px; color: var(--neon); }
.ann-pulse i{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: ann-pulse 1.6s ease-in-out infinite;
}
@keyframes ann-pulse{ 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }
.ann-link{
  color: var(--neon);
  border-bottom: 1px dashed rgba(192,255,80,.4);
}

.site-nav{
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .3s, padding .3s, background .3s;
}
.site-nav.scrolled{
  padding: 0.6rem 0;
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(13,37,48,.15);
}
.brand-mark{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--purple-900);
  color: var(--neon);
  border-radius: 10px;
  position: relative;
}
.brand-mark::after{
  content:""; position: absolute; inset: -2px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-500), var(--neon));
  opacity: 0; z-index: -1;
  transition: opacity .3s;
  filter: blur(8px);
}
.navbar-brand:hover .brand-mark::after{ opacity: .5; }

.brand-word{
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-word__alt{ color: var(--violet-500); font-weight: 700; }

.navbar-nav .nav-link{
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .94rem;
  color: var(--ink-2) !important;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color .25s;
}
.navbar-nav .nav-link:hover{ color: var(--violet-500) !important; }
.navbar-nav .nav-link::after{
  content:""; position: absolute; left: 1rem; right: 1rem; bottom: .35rem;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-500), var(--neon));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.navbar-nav .nav-link:hover::after{ transform: scaleX(1); }

.navbar-toggler{ border: 1.5px solid var(--line-2); padding: .35rem .55rem; }
.navbar-toggler:focus{ box-shadow: none; }

/* ---------- 6. HERO (dark) ---------- */
.hero{
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 7vw, 7rem);
  background: var(--purple-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-mesh{
  position: absolute; inset: 0;
  background:
  radial-gradient(900px 600px at 80% -10%, rgba(92,225,255,.55), transparent 60%),
  radial-gradient(700px 500px at -10% 80%, rgba(107,61,240,.45), transparent 60%),
  radial-gradient(500px 400px at 30% 50%, rgba(192,255,80,.08), transparent 60%);
  z-index: -2;
}
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(179,148,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,148,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: -1;
}
.hero-orb{
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: .5;
}
.hero-orb--1{ top: 10%; left: 5%; background: var(--violet-500); animation: orbFloat 14s ease-in-out infinite; }
.hero-orb--2{ bottom: 5%; right: 8%; background: var(--neon); opacity: .25; animation: orbFloat 18s ease-in-out infinite reverse; }
@keyframes orbFloat{
  0%, 100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(30px, -20px) scale(1.1); }
}
/* @media (min-width:1200px){
  .hero-img img{
    max-width: 700px;
    margin-left: -60px;
  }
} */

/* hero console strip */
.hero-console{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  font-family: var(--f-mono);
  font-size: 12px;
  max-width: 540px;
  backdrop-filter: blur(10px);
}
.hc-row{
  display: flex; justify-content: space-between; align-items: center;
  padding: .35rem .2rem;
  border-bottom: 1px dashed var(--dark-line);
}
.hc-row:nth-last-child(-n+2){ border-bottom: 0; }
.hc-row:nth-child(odd){ padding-right: 1rem; border-right: 1px dashed var(--dark-line); }
.hc-key{ color: var(--violet-300); }
.hc-val{ color: var(--white); font-weight: 600; }
.hc-val.ok{ color: var(--neon); }
.hc-val small{ color: var(--dark-meta); font-weight: 400; }

@media (max-width: 575.98px){
  .hero-console{ grid-template-columns: 1fr; }
  .hc-row:nth-child(odd){ padding-right: .2rem; border-right: 0; }
  .hc-row{ border-bottom: 1px dashed var(--dark-line); }
  .hc-row:last-child{ border-bottom: 0; }
}

/* hero stack mock */
.hero-stack{
  position: relative;
  padding: 1.2rem;
}
.up-card{
  background: linear-gradient(180deg, rgba(13,37,48,.65), rgba(16,6,36,.85));
  border: 1px solid var(--dark-line-2);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.4rem 1.2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.up-card::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,255,80,.06), transparent 40%);
  pointer-events: none;
}
.uc-head{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--dark-meta);
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--dark-line);
  margin-bottom: 1rem;
}
.uc-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--violet-300); }
.uc-dot--live{ background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: ann-pulse 1.4s ease-in-out infinite; }
.uc-title{ flex: 1; }
.uc-time{ color: var(--neon); }

.uc-file{
  display: flex; align-items: center; gap: 12px;
  margin-bottom: .8rem;
}
.uc-icon{
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-line);
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  color: var(--neon);
}
.uc-meta{ flex: 1; min-width: 0; }
.uc-meta strong{ display: block; color: var(--white); font-size: .95rem; font-weight: 600; }
.uc-meta span{ display: block; font-family: var(--f-mono); font-size: 11px; color: var(--dark-meta); margin-top: 1px; }
.uc-pct{
  font-family: var(--f-mono); font-size: 1.4rem; font-weight: 600;
  color: var(--neon);
}

.uc-bar{
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.uc-bar i{
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--violet-500), var(--neon));
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(192,255,80,.4);
  transition: width .8s ease;
}

.uc-route{
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 1rem;
}
.route-node{
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .1em;
  background: rgba(179,148,255,.12);
  color: var(--violet-300);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.route-node--mid{
  background: var(--neon);
  color: var(--purple-900);
  box-shadow: 0 0 10px rgba(192,255,80,.5);
}
.route-line{
  flex: 1; height: 1px; background: var(--dark-line-2);
  position: relative; overflow: hidden;
}
.route-line i{
  position: absolute; top: -1px;
  width: 30%; height: 3px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: routeFlow 2s linear infinite;
}
@keyframes routeFlow{ 0%{ left: -30%; } 100%{ left: 100%; } }

.uc-foot{
  display: flex; flex-wrap: wrap; gap: .8rem;
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--dark-meta);
  padding-top: .8rem;
  border-top: 1px solid var(--dark-line);
}
.uc-foot i{ color: var(--neon); margin-right: 4px; }

/* upload progress widget — bottom-right */
.ha-widget{
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 10px 24px -6px rgba(16,6,36,.35),
    0 28px 60px -12px rgba(16,6,36,.45);
  z-index: 3;
}
.ha-widget--upload{
  top: 4%;
  left: -3%;
  width: 270px;
  animation: floatA 7s ease-in-out infinite;
  animation-delay: -4s;
}
.ha-up-head{
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px;
}
.ha-up-icon{
  width: 36px;
  height: 36px;
  display: grid !important;
  place-items: center;
  background: var(--neon);
  color: var(--purple-900) ! IMPORTANT;
  border-radius: 10px;
  font-size: 17px !important;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(192, 255, 80, .4);
}
.ha-up-head strong{
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.ha-up-head span{
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
  margin-top: 2px;
}
.ha-up-bar{
  height: 5px;
  background: #ece6f7;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}
.ha-up-bar i{
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--violet-500), var(--neon));
  border-radius: 5px;
  width: 30%;
  animation: uploadProgress 4s ease-in-out infinite;
}
@keyframes uploadProgress{
  0%{ width: 18%; }
  60%{ width: 78%; }
  100%{ width: 18%; }
}
@keyframes floatA{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

.ha-up-foot{
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--ink-3);
}
.ha-up-foot i{ color: var(--violet-500); margin-right: 4px; }
.ha-up-speed{ color: var(--neon-deep); font-weight: 600; }


/* mini cards */
.mini-card{
  position: absolute;
  display: flex; align-items: flex-start; gap: 10px;
  background: rgb(17 41 49 / 50%);
  border: 1px solid var(--dark-line-2);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.6);
  font-size: 12px;
  max-width: 220px;
  animation: chipFloat 6s ease-in-out infinite;
}
.mini-card strong{ display: block; color: var(--white); font-weight: 600; font-size: 12.5px; }
.mini-card small{ display: block; font-family: var(--f-mono); font-size: 10px; color: var(--dark-meta); margin-top: 2px; }
.mc-glyph{
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--neon);
  color: var(--purple-900);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(192,255,80,.4);
}
.mini-card--1{ top: -10px; left: -20px; animation-delay: 0s; }
.mini-card--2{     bottom: 50px;
  right: 33%; 
  animation-delay: 1.5s; }
.mini-card--2 .mc-glyph{ background: var(--violet-400); color: var(--white); box-shadow: 0 0 12px rgba(140,92,255,.5); }

@keyframes chipFloat{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.frame-tick{
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--neon);
}
.frame-tick--tl{ top: 0; left: 0; border-right: 0; border-bottom: 0; }
.frame-tick--tr{ top: 0; right: 0; border-left: 0; border-bottom: 0; }
.frame-tick--bl{ bottom: 0; left: 0; border-right: 0; border-top: 0; }
.frame-tick--br{ bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* trust bar */
.trust-bar{
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.5rem;
  justify-content: center;
}
@media (min-width: 1200px){
  .trust-bar{
    flex-wrap: nowrap;
  }
}
.tb-label{
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet-300);
}
.tb-marks{
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--dark-text);
  align-items: center;
}
.tb-marks .sep{ color: var(--neon); font-size: .55rem; opacity: .8; }

/* ---------- 7. SECTION HELPERS ---------- */
.section{ padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--light{ background: var(--white); }
.section--dark{
  background: var(--purple-900);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   ABOUT US — editorial light section
   ============================================================ */
  .section--about .mb-6{ margin-bottom: 4.5rem; }

  /* principles cards */
.about-principles{
  position: relative;
}
.about-principles::before{
  content:"";
  position: absolute;
  top: -2.5rem; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.ap-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.ap-card:hover{
  transform: translateY(-4px);
  border-color: var(--violet-500);
  box-shadow: var(--shadow-md);
}
.ap-num{
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--purple-900);
  background: var(--neon);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}
.ap-card h3{
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: .6rem;
}
.ap-card p{
  font-size: .96rem;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
}


/* ---------- 8. FEATURES ---------- */
.feat-grid{
  --feat-gap: 0.5rem;
}
.feat{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem 2rem;
  height: 100%;
  position: relative;
  transition: transform .35s, box-shadow .35s, border-color .35s, background .35s;
  overflow: hidden;
}
.feat::before{
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet-500), var(--neon));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.feat:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet-100);
  background: var(--white);
}
.feat:hover::before{ transform: scaleX(1); }
.feat:hover .feat-glyph{
  background: var(--violet-500);
  color: var(--white);
  border-color: var(--violet-500);
  transform: rotate(-6deg);
}
.feat--featured{
  background: var(--purple-900);
  color: var(--white);
  border-color: var(--purple-900);
}
.feat--featured::before{ transform: scaleX(1); }
.feat--featured .feat-num{ color: var(--violet-300); }
.feat--featured .feat-glyph{ background: var(--neon); color: var(--purple-900); border-color: var(--neon); }
.feat--featured h3{ color: var(--white); }
.feat--featured p{ color: var(--dark-meta); }
.feat--featured code{ background: rgba(255,255,255,.08); color: var(--neon); }
.feat--featured .feat-more{ color: var(--neon); }

.feat-num{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.feat-glyph{
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  font-size: 1.6rem;
  color: var(--violet-500);
  margin-bottom: 1.4rem;
  transition: all .3s ease;
}
.feat h3{
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: .6rem;
  color: var(--ink);
}
.feat p{
  font-size: .96rem;
  color: var(--ink-3);
  margin-bottom: 1rem;
}
.feat code{
  font-family: var(--f-mono);
  font-size: .82em;
  background: var(--violet-100);
  color: var(--violet-500);
  padding: 1px 6px;
  border-radius: 4px;
}
.feat-more{
  display: inline-flex;
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--violet-500);
  font-weight: 600;
}
.feat-more:hover{ color: var(--neon-deep); }

/* ---------- 9. NETWORK SECTION (UNIQUE 1) ---------- */
.net-grid-bg{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(179,148,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,148,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.net-map{
  background: linear-gradient(180deg, rgba(13,37,48,.6), rgba(16,6,36,.9));
  border: 1px solid var(--dark-line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
}
.net-map-head{
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid var(--dark-line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
}
.nm-status{ display: inline-flex; align-items: center; gap: 8px; color: var(--neon); }
.nm-pulse{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 8px var(--neon);
  animation: ann-pulse 1.6s ease-in-out infinite;
}
.nm-tz{ color: var(--dark-meta); }
.nm-tz span{ color: var(--white); }

.net-map-body{ position: relative; }
.net-map-svg{ width: 100%; height: auto; display: block; }

/* nodes */
.net-node circle{ fill: var(--neon); }
.net-node .ring{ fill: none; stroke: var(--neon); stroke-width: 1; opacity: .4; animation: ringPulse 2.4s ease-out infinite; }
.net-node--hot .ring{ animation-duration: 1.6s; stroke-width: 1.5; }
@keyframes ringPulse{
  0%{ transform: scale(.5); opacity: .8; }
  100%{ transform: scale(2.4); opacity: 0; }
}
.net-node{ transform-origin: center; transform-box: fill-box; }
.net-node .ring{ transform-origin: center; transform-box: fill-box; }

/* arcs draw animation */
.net-arcs path{
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: .6;
  animation: arcDraw 4s ease-in-out infinite;
}
.arc--1{ animation-delay: 0s; }
.arc--2{ animation-delay: .6s; }
.arc--3{ animation-delay: 1.2s; }
.arc--4{ animation-delay: 1.8s; }
.arc--5{ animation-delay: 2.4s; }
@keyframes arcDraw{
  0%{ stroke-dashoffset: 200; opacity: 0; }
  20%{ opacity: .8; }
  60%{ stroke-dashoffset: 0; opacity: .8; }
  100%{ stroke-dashoffset: -200; opacity: 0; }
}

.net-ticker{
  background: rgba(0,0,0,.3);
  border-top: 1px solid var(--dark-line);
  padding: 10px 0;
  overflow: hidden;
}
.net-ticker-track{
  display: flex; gap: 3rem;
  font-family: var(--f-mono); font-size: 11.5px;
  color: var(--dark-meta);
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  padding-left: 100%;
}
.net-ticker-track span{ display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.net-ticker-track i.ok{
  width: 6px; height: 6px; border-radius: 50%; background: var(--neon);
  display: inline-block;
}
@keyframes tickerScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-100%); }
}

.net-stat{
  background: rgba(13,37,48,.45);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.net-stat--accent{
  background: linear-gradient(135deg, var(--neon), var(--neon-deep));
  border-color: var(--neon);
  color: var(--purple-900);
}
.net-stat--accent .ns-num,
.net-stat--accent .ns-unit{ color: var(--purple-900); }
.net-stat--accent .ns-label{ color: rgba(16,6,36,.7); }
.net-stat--accent .ns-label a{ color: var(--purple-900); border-bottom: 1px solid currentColor; }

.ns-num{
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1;
}
.ns-unit{
  font-size: 0.75em;
  color: var(--neon);
  margin-left: 0;
  font-weight: 500;
}
.ns-label{
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dark-meta);
  margin-top: .6rem;
}
.ns-label a{ color: var(--violet-300); }

/* ---------- 10. HOW IT WORKS (light) ---------- */
.how-rail{ position: relative; }
.how-step{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem 1.8rem;
  height: 100%;
  position: relative;
  transition: transform .35s, border-color .35s, background .35s;
}
.how-step:hover, .how-step.is-active{
  transform: translateY(-6px);
  border-color: var(--violet-500);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.hs-num{
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .18em;
  color: var(--violet-500);
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.hs-arrow{
  position: absolute;
  top: 1.7rem; right: 1.5rem;
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--line-2);
  transition: color .3s, transform .3s;
}
.how-step:hover .hs-arrow, .how-step.is-active{ .hs-arrow color: var(--neon-deep); transform: translateX(4px); }
.how-step--last .hs-arrow{ display: none; }

.hs-glyph{
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  font-size: 1.6rem;
  color: var(--violet-500);
  margin-bottom: 1.4rem;
  transition: all .3s;
}
.how-step:hover .hs-glyph, .how-step.is-active .hs-glyph{
  background: var(--purple-900);
  color: var(--neon);
  border-color: var(--purple-900);
}
.how-step h4{
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: .5rem;
  color: var(--ink);
}
.how-step p{ font-size: .94rem; color: var(--ink-3); margin: 0; }

/* ---------- 11. ENCRYPTION THEATER (UNIQUE 2) ---------- */
.section--vault{ background: var(--purple-900); }
.section--vault::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 70% 50%, rgba(107,61,240,.3), transparent 60%),
    radial-gradient(600px 400px at 20% 30%, rgba(192,255,80,.06), transparent 60%);
  pointer-events: none;
}

.theater{
  background: linear-gradient(180deg, rgba(13,37,48,.5), rgba(16,6,36,.85));
  border: 1px solid var(--dark-line-2);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
}

.theater-steps{
  display: flex; gap: .5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--dark-line);
  flex-wrap: wrap;
}
.ts-btn{
  flex: 1;
  min-width: 130px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: .9rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
  display: flex; flex-direction: column; gap: 4px;
}
.ts-btn:hover{ background: rgba(255,255,255,.06); border-color: var(--dark-line-2); }
.ts-btn.is-active{
  background: var(--neon);
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(192,255,80,.3);
}
.ts-btn.is-active .ts-num,
.ts-btn.is-active .ts-name,
.ts-btn.is-active .ts-time{ color: var(--purple-900); }
.ts-num{
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .15em;
  color: var(--violet-300);
  font-weight: 600;
}
.ts-name{
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.ts-time{
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--neon);
}

.theater-canvas{
  position: relative;
  height: 360px;
  background:
    radial-gradient(circle at center, rgba(139,92,255,.15), transparent 70%);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(179,148,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,148,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* file element */
.th-file{
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--purple-900);
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-weight: 600;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: all .6s cubic-bezier(.5,.1,.2,1);
  z-index: 5;
}
.th-file i{ font-size: 1.6rem; color: var(--violet-500); }
.th-file span{ font-size: .85rem; }
.th-file small{ font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); }

/* chunks */
.th-chunks{
  position: absolute;
  top: 130px; left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(8, 26px);
  gap: 6px;
  opacity: 0;
  transition: opacity .5s;
}
.th-chunks span{
  width: 26px; height: 26px;
  background: var(--violet-400);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(140,92,255,.4);
  animation: chunkBlink 1.4s ease-in-out infinite;
}
.th-chunks span:nth-child(1){ animation-delay: 0s; }
.th-chunks span:nth-child(2){ animation-delay: .1s; }
.th-chunks span:nth-child(3){ animation-delay: .2s; }
.th-chunks span:nth-child(4){ animation-delay: .3s; }
.th-chunks span:nth-child(5){ animation-delay: .4s; }
.th-chunks span:nth-child(6){ animation-delay: .5s; }
.th-chunks span:nth-child(7){ animation-delay: .6s; }
.th-chunks span:nth-child(8){ animation-delay: .7s; }
@keyframes chunkBlink{ 0%, 100%{ opacity: .6; } 50%{ opacity: 1; } }

/* key */
.th-key{
  position: absolute;
  top: 50%; left: 30px;
  transform: translateY(-50%);
  display: flex; align-items: center; gap: 10px;
  background: var(--neon);
  color: var(--purple-900);
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 600;
  box-shadow: 0 0 24px rgba(192,255,80,.5);
  opacity: 0;
  transition: opacity .5s;
}
.th-key i{ font-size: 1rem; }
.th-key code{ background: transparent; color: var(--purple-900); }

/* cipher */
.th-cipher{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.5);
  border: 1px solid var(--neon);
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--neon);
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transition: opacity .5s;
  box-shadow: 0 0 30px rgba(192,255,80,.3);
}

/* shards */
.th-shards{
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 14px;
  opacity: 0;
  transition: opacity .5s;
}
.th-shards span{
  background: var(--violet-400);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--f-mono); font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  box-shadow: 0 0 16px rgba(140,92,255,.5);
}

/* replica */
.th-replica{
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 30px;
  opacity: 0;
  transition: opacity .5s;
}
.th-replica i{
  display: block;
  width: 14px; height: 14px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon);
  animation: ann-pulse 1.6s ease-in-out infinite;
}
.th-replica i:nth-child(2){ animation-delay: .3s; }
.th-replica i:nth-child(3){ animation-delay: .6s; }

/* stage activations */
.theater[data-stage="1"] .th-chunks{ opacity: 1; }
.theater[data-stage="2"] .th-chunks{ opacity: .5; }
.theater[data-stage="2"] .th-key{ opacity: 1; }
.theater[data-stage="3"] .th-cipher{ opacity: 1; }
.theater[data-stage="3"] .th-chunks{ opacity: .3; }
.theater[data-stage="3"] .th-key{ opacity: .6; }
.theater[data-stage="4"] .th-shards{ opacity: 1; }
.theater[data-stage="4"] .th-cipher{ opacity: .3; }
.theater[data-stage="5"] .th-shards{ opacity: 1; }
.theater[data-stage="5"] .th-replica{ opacity: 1; }
.theater[data-stage="5"] .th-cipher{ opacity: .2; }

.theater-desc h4{
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: .8rem;
}
.theater-desc p{
  color: var(--dark-meta);
  margin-bottom: 1rem;
  max-width: 40ch;
}
.td-code{
  display: inline-block;
  font-family: var(--f-mono); font-size: 12px;
  background: rgba(192,255,80,.1);
  color: var(--neon);
  border: 1px dashed rgba(192,255,80,.4);
  padding: 8px 14px;
  border-radius: 6px;
  line-height: 1.6;
}

/* ---------- 12. MIGRATION LAB (UNIQUE 3) ---------- */
.section--lab{ background: var(--violet-50); }
.lab-shell{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.lab-tabs{
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.lt-btn{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .55rem .9rem .55rem .55rem;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-2);
  transition: all .25s;
}
.lt-btn:hover{ border-color: var(--violet-500); color: var(--violet-500); }
.lt-btn.is-active{
  background: var(--purple-900);
  border-color: var(--purple-900);
  color: var(--white);
}
.lt-mark{
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--f-display);
  font-size: .85rem;
  font-weight: 700;
}

.lab-board{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.lab-side{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.4rem;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.lab-side--to{
  background: var(--purple-900);
  color: var(--white);
  border-color: var(--purple-900);
}

.ls-head{
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: .8rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.lab-side--to .ls-head{ border-color: var(--dark-line); }
.ls-pill{
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .15em; font-weight: 700;
  background: var(--ink);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
}
.ls-pill--neon{
  background: var(--neon);
  color: var(--purple-900);
}
.ls-meta{
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
}
.lab-side--to .ls-meta{ color: var(--dark-meta); }

.ls-list{
  list-style: none; padding: 0; margin: 0;
  flex-grow: 1;
}
.ls-list li{
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: .9rem;
  color: var(--ink-2);
  margin-bottom: 4px;
  transition: background .2s;
}
.lab-side--to .ls-list li{ color: var(--dark-text); }
.ls-list li i{ color: var(--violet-500); }
.lab-side--to .ls-list li i{ color: var(--neon); }
.ls-list li.ls-li--ok{ background: rgba(192,255,80,.1); color: var(--neon); margin-top: 8px; }

.ls-foot{
  font-family: var(--f-mono); font-size: 11px;
  color: var(--ink-3);
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  margin-top: 1rem;
}
.lab-side--to .ls-foot{ border-color: var(--dark-line); color: var(--dark-meta); }
.ls-foot--ok{
  color: var(--neon) !important;
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
}

.lab-mid{
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 0;
  min-width: 200px;
}
.lab-arrow{
  color: var(--violet-500);
  position: relative;
  margin-bottom: 1rem;
}
.lab-arrow svg{ animation: spin 12s linear infinite; }
@keyframes spin{ to{ transform: rotate(360deg); } }
.lab-arrow path{ animation: pulseArrow 2s ease-in-out infinite; }
@keyframes pulseArrow{ 0%,100%{ opacity: .5; } 50%{ opacity: 1; } }
.lab-arrow-label{
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--violet-500);
  white-space: nowrap;
}

.lab-checks{
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.lab-checks li{
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .05em;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 6px;
}
.lab-checks li i{
  color: var(--neon-deep);
  background: rgba(192,255,80,.15);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px;
}

.lab-fine{
  text-align: center;
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-3);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}

@media (max-width: 991.98px){
  .lab-board{ grid-template-columns: 1fr; }
  .lab-mid{ flex-direction: row; gap: 1.5rem; padding: 0; min-height: auto; min-width: 0; }
  .lab-checks{ margin-top: 0; flex: 1; }
}

/* ---------- 13. QUOTE BAND ---------- */
.section--quote{
  background: linear-gradient(180deg, var(--purple-900) 0%, var(--purple-800) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.section--quote::before{
  content:""; position: absolute;
  top: -20%; left: -10%; width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(139,92,255,.3), transparent 50%);
  pointer-events: none;
}
.section--quote figure{ max-width: 920px; margin: 0 auto; position: relative; text-align: center; }
.qmark{
  font-family: var(--f-display);
  font-size: 10rem;
  line-height: 0.8;
  color: var(--neon-glow);
  opacity: .5;
  margin-bottom: -2.5rem;
  text-align: center;
}
.section--quote blockquote{
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 2rem;
  margin-left: auto; margin-right: auto;
}
.section--quote blockquote .hl{
  color: var(--violet-500);
  background: linear-gradient(transparent 60%, rgba(80, 195,207,.25) 60%);
}
.section--quote figcaption{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
}
.qf-avatar{
  width: 44px; height: 44px;
  background: var(--neon);
  color: var(--purple-900);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0;
}
.qf-name{ display: block; color: var(--white); font-weight: 600; }
.qf-role{ display: block; color: var(--dark-meta); margin-top: 2px; }
.section--quote figcaption > div{ text-align: left; }

/* ---------- 14. PRICING ---------- */

/* tier accent colors */
:root{
  --tier-silver: #b8b9c2;
  --tier-silver-deep: #8d8f9a;
  --tier-gold: #e6b54a;
  --tier-gold-deep: #b8861f;
  --tier-platinum: #6b3df0;
  --tier-vip: #c0ff50;
}

/* ---- DAY PASS (wide one-off card) ---- */
.day-pass{
  display: grid;
  grid-template-columns: 1fr auto 320px;
  gap: 0;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-800));
  border-radius: var(--r-lg);
  padding: 0;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.day-pass::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 110% 50%, rgba(192,255,80,.18), transparent 50%),
    radial-gradient(400px 300px at -10% 30%, rgba(139,92,255,.3), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.day-pass::after{
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(179,148,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,148,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at right, black 20%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.dp-side{
  padding: 2.2rem 2.4rem;
  color: var(--white);
}
.dp-tag{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  background: rgba(192,255,80,.12);
  color: var(--neon);
  border: 1px solid rgba(192,255,80,.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.dp-name{
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: .6rem;
}
.dp-sub{
  color: var(--dark-meta);
  font-size: 1rem;
  max-width: 50ch;
  margin-bottom: 1.4rem;
}
.dp-list{
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .55rem 1.5rem;
}
.dp-list li{
    font-size: 14px;
    color: var(--dark-text);
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.dp-list i{ color: var(--neon); }

.dp-divide{
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}
.dp-divide span{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(192,255,80,.4);
  display: block;
  flex-shrink: 0;
}
.dp-divide::before{
  content:""; position: absolute;
  top: 1.5rem; bottom: 1.5rem;
  left: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(192,255,80,.25), transparent);
  z-index: -1;
}

.dp-buy{
  padding: 2.2rem 2.4rem;
  background: rgba(0,0,0,.25);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px dashed rgba(192,255,80,.2);
}
.dp-price{
  display: flex; align-items: flex-start; gap: 4px;
  margin-bottom: 1.4rem;
}
.dp-cur{
  font-family: var(--f-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--neon);
  margin-top: .4rem;
}
.dp-amt{
  font-family: var(--f-display);
  font-size: 4.2rem; line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
}
.dp-per{
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--neon);
  margin-top: .5rem; margin-left: .5rem;
  line-height: 1.4;
}
.dp-fine{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--dark-meta);
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}
.dp-fine i{ color: var(--neon); }

@media (max-width: 991.98px){
  .day-pass{ grid-template-columns: 1fr; }
  .dp-divide{ flex-direction: row; padding: 0 2rem; height: 30px; }
  .dp-divide::before{ top: 50%; bottom: auto; left: 1.5rem; right: 1.5rem; width: auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(192,255,80,.25), transparent); }
  .dp-buy{ border-left: 0; border-top: 1px dashed rgba(192,255,80,.2); }
}
@media (max-width: 575.98px){
  .dp-side, .dp-buy{ padding: 1.6rem 1.4rem; }
  .dp-list{ grid-template-columns: 1fr; }
  .dp-amt{ font-size: 3.4rem; }
}

/* ---- divider between day-pass and subscription tiers ---- */
.pricing-divider{
  display: flex; align-items: center; gap: 1rem;
  margin: 0 0 2rem;
}
.pd-line{
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.pd-text{
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ---- billing toggle ---- */
.bill-toggle{
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
}
.bt-opt{
  background: transparent; border: 0;
  font-family: var(--f-body); font-weight: 600; font-size: .9rem;
  padding: .55rem 1.2rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.bt-opt.is-active{ background: var(--purple-900); color: var(--white); }
.bt-save{
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--neon); color: var(--purple-900);
  padding: 2px 7px; border-radius: 999px;
  font-weight: 700;
}

/* ---- 4-tier subscription cards ---- */
.plan-row{ position: relative; }

.plan{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem 1.9rem;
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.plan:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* tier rim — top accent stripe per tier */
.pl-rim{
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--line-2);
}
.plan--silver .pl-rim{ background: linear-gradient(90deg, var(--tier-silver), var(--tier-silver-deep)); }
.plan--gold .pl-rim{ background: linear-gradient(90deg, var(--tier-gold), var(--tier-gold-deep)); }
.plan--platinum .pl-rim{ background: linear-gradient(90deg, var(--violet-500), var(--neon)); }
.pl-rim--vip{ background: linear-gradient(90deg, var(--neon), var(--violet-500), var(--neon)); background-size: 200% 100%; animation: vipShine 4s linear infinite; }
@keyframes vipShine{ to{ background-position: 200% 0; } }

/* tier badge */
.pl-tier{
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem;
}
.pl-mark{
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.05rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.plan--silver .pl-mark{ color: var(--tier-silver-deep); background: linear-gradient(135deg, #f1f1f4, #d8d9df); }
.plan--gold .pl-mark{ color: var(--white); background: linear-gradient(135deg, var(--tier-gold), var(--tier-gold-deep)); border-color: var(--tier-gold-deep); box-shadow: 0 0 12px rgba(230,181,74,.35); }
.plan--platinum .pl-mark{ color: var(--neon); background: var(--purple-900); border-color: var(--purple-900); box-shadow: 0 0 12px rgba(107,61,240,.4); }
.pl-mark--vip{ color: var(--purple-900); background: var(--neon); border-color: var(--neon); box-shadow: 0 0 16px rgba(192,255,80,.6); }

.pl-tier-name{
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* head */
.pl-head p{
  color: var(--ink-3);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  min-height: 2.7em;
}

/* price */
.pl-price{
  display: flex; align-items: flex-start; gap: 4px;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.pp-cur{
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 600;
  margin-top: .35rem; color: var(--ink);
}
.pp-amt{
  font-family: var(--f-display);
  font-size: 3.2rem; line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.pp-per{
  font-family: var(--f-mono);
  font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-3);
  margin-top: .55rem; margin-left: .35rem;
  line-height: 1.3;
}

/* feature list */
.pl-list{
  list-style: none; padding: 0; margin: 0 0 1.6rem;
  flex-grow: 1;
}
.pl-list li{
  display: flex; align-items: flex-start; gap: 10px;
  padding: .58rem 0;
  font-size: .9rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.pl-list li:last-child{ border-bottom: 0; }
.pl-list li strong{ font-weight: 700; color: var(--ink); }
.pl-list i{ color: var(--violet-500); font-size: .95rem; margin-top: 3px; flex-shrink: 0; }
.plan--silver .pl-list i{ color: var(--tier-silver-deep); }
.plan--gold .pl-list i{ color: var(--tier-gold-deep); }
.pl-list li.muted{ color: var(--ink-3); }
.pl-list li.muted i{ color: var(--ink-3); }
.pl-list li.muted strong{ color: var(--ink-3); font-weight: 500; }

/* "most picked" badge on platinum */
.pl-tag{
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--neon);
  color: var(--purple-900);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(192,255,80,.5);
  z-index: 2;
}

/* PLATINUM (featured / dark inverted) */
.plan--featured{
  background: var(--purple-900);
  color: var(--white);
  border-color: var(--purple-900);
}
.plan--featured:hover{ transform: translateY(-14px); }
.plan--featured .pl-tier-name,
.plan--featured .pp-amt,
.plan--featured .pp-cur,
.plan--featured .pl-list li strong{ color: var(--white); }
.plan--featured .pl-head p,
.plan--featured .pp-per{ color: var(--dark-meta); }
.plan--featured .pl-list li{ color: var(--dark-text); border-color: var(--dark-line); }
.plan--featured .pl-list i{ color: var(--neon); }
.plan--featured .pl-list li.muted{ color: var(--dark-meta); }
.plan--featured .pl-price{ border-color: var(--dark-line); }

/* VIP — premium dark with neon trim */
.plan--vip{
  background: linear-gradient(160deg, #1f0e4a 0%, var(--purple-900) 70%);
  color: var(--white);
  border-color: var(--neon);
  box-shadow: 0 0 0 1px rgba(192,255,80,.15), var(--shadow-md);
}
.plan--vip:hover{
  box-shadow: 0 0 0 1px rgba(192,255,80,.4), 0 18px 40px -10px rgba(192,255,80,.25), var(--shadow-md);
}
.plan--vip .pl-vip-glow{
  position: absolute;
  top: -40%; right: -40%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(192,255,80,.18), transparent 50%);
  pointer-events: none;
  animation: vipGlow 8s ease-in-out infinite;
}
@keyframes vipGlow{
  0%, 100%{ opacity: .6; transform: scale(1); }
  50%{ opacity: 1; transform: scale(1.1); }
}
.plan--vip .pl-tier-name,
.plan--vip .pp-amt,
.plan--vip .pp-cur,
.plan--vip .pl-list li strong{ color: var(--white); }
.plan--vip .pl-head p,
.plan--vip .pp-per{ color: var(--dark-meta); }
.plan--vip .pl-list li{ color: var(--dark-text); border-color: var(--dark-line); }
.plan--vip .pl-list i{ color: var(--neon); }
.plan--vip .pl-price{ border-color: var(--dark-line); }

/* VIP CTA button */
.btn-vip{
  background: transparent;
  color: var(--neon);
  border: 1.5px solid var(--neon);
}
.btn-vip:hover{
  background: var(--neon);
  color: var(--purple-900);
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 0 0 4px rgba(192,255,80,.2), 0 10px 24px -8px rgba(192,255,80,.55);
}

.pricing-fine{
  font-family: var(--f-mono); font-size: 12px;
  color: var(--ink-3);
  margin-top: 2rem;
  text-align: center;
}
.pricing-fine a{ color: var(--violet-500); border-bottom: 1px solid var(--neon); }

/* ---- responsive: 4 cards behavior ---- */
@media (max-width: 991.98px){
  .plan--featured{ transform: none; }
  .plan--featured:hover{ transform: translateY(-6px); }
  .pp-amt{ font-size: 2.8rem; }
}

/* ---------- 15. FAQ ---------- */
.section--faq{ background: var(--violet-50); }
.faq-aside{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  position: relative;
}
.fa-mark{
  width: 36px; height: 36px;
  background: var(--neon);
  color: var(--purple-900);
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 1.1rem;
  margin-bottom: .8rem;
}
.faq-aside p{
  font-family: var(--f-display);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: .8rem;
  color: var(--ink);
}
.faq-aside span{
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
}

.faq-acc .accordion-item{
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}
.faq-acc .accordion-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-acc .accordion-button{
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  background: transparent;
  padding: 1.4rem 1rem 1.4rem 0;
  box-shadow: none;
  display: flex; align-items: flex-start; gap: 1rem;
}
.faq-acc .accordion-button em{ color: var(--violet-500); font-style: italic; }
.faq-acc .accordion-button:not(.collapsed){
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}
.faq-acc .accordion-button:focus{ box-shadow: none; }
.faq-acc .accordion-button::after{
  background-image: none;
  content: "+";
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.8rem;
  width: 32px; height: 32px;
  background: transparent;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-3);
  transition: all .35s;
  margin-top: -2px;
}
.faq-acc .accordion-button:not(.collapsed)::after{
  content: "−";
  background: var(--neon);
  border-color: var(--neon);
  color: var(--purple-900);
  transform: none;
}
.fq-num{
  font-family: var(--f-mono);
  font-size: 14px; letter-spacing: .15em;
  color: var(--violet-500);
  font-weight: 600;
  margin-top: .25rem;
  min-width: 28px;
  flex-shrink: 0;
}
.faq-acc .accordion-body{
  padding: 0 0 1.5rem 44px;
  font-size: .98rem;
  color: var(--ink-2);
  max-width: 60ch;
}

/* ---------- 16. CTA ---------- */
.section--cta{ padding: clamp(3rem, 5vw, 5rem) 0; }
.cta-card{
  background: radial-gradient(700px 400px at 80% 0%, rgb(92 225 255 / 40%), transparent 60%), linear-gradient(180deg, var(--purple-800), var(--purple-900));
  border: 1px solid var(--dark-line-2);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.cta-grid-bg{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(179,148,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,148,255,.06) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 80%);
}
.cta-card::after{
  content: "◉";
  position: absolute;
  bottom: -2rem; right: -2rem;
  font-size: 14rem; color: var(--neon); opacity: .12;
  line-height: 1;
}
.cta-or{
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .1em;
  color: var(--dark-meta);
  margin-top: 1rem;
}
.cta-or a{ color: var(--neon); border-bottom: 1px solid rgba(192,255,80,.4); }

/* ---------- 17. FOOTER ---------- */
.site-foot{
  background: var(--purple-900);
  color: var(--dark-text);
  padding: 4.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-foot::before{
  content:""; position: absolute;
  bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 100%; height: 60%;
  background: radial-gradient(ellipse, rgba(139,92,255,.15), transparent 60%);
  pointer-events: none;
}
.brand-foot{ color: var(--white); }
.foot-tag{
  color: var(--dark-meta);
  max-width: 38ch;
  font-size: .96rem;
}
.foot-news label{
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet-300);
}
.fn-row{ flex-wrap: wrap; }
.foot-news input{
  flex: 1;
  min-width: 200px;
  border: 1.5px solid var(--dark-line-2);
  background: rgba(255,255,255,.05);
  border-radius: var(--r-pill);
  padding: .8rem 1.2rem;
  font-size: .95rem;
  font-family: var(--f-body);
  color: var(--white);
  outline: none;
  transition: border-color .25s, background .25s;
}
.foot-news input::placeholder{ color: var(--dark-meta); }
.foot-news input:focus{ border-color: var(--neon); background: rgba(255,255,255,.08); }

.site-foot h6{
  font-family: var(--f-mono); font-size: 14px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--violet-300);
  margin-bottom: 1.2rem;
}
.site-foot ul{ list-style: none; padding: 0; margin: 0; }
.site-foot ul li{ margin-bottom: .65rem; }
.site-foot ul li a{ color: var(--dark-text); font-size: .95rem; }
.site-foot ul li a:hover{ color: var(--neon); }
.foot-meta li{ color: var(--dark-meta); font-size: .92rem; display: flex; gap: 8px; align-items: baseline; }
.foot-meta i{ color: var(--neon); }

.foot-socials{ display: flex; gap: .6rem; flex-wrap: wrap; }
.foot-socials a{
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--dark-line);
  border-radius: 50%;
  color: var(--white);
  transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.foot-socials a:hover{ background: var(--neon); color: var(--purple-900); border-color: var(--neon); transform: translateY(-2px); }

.foot-bar{
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--dark-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--dark-meta);
  position: relative;
}
.foot-bar ul{ display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-bar ul li{ margin: 0; }
.foot-bar a{ color: var(--dark-meta); }
.foot-bar a:hover{ color: var(--neon); }
.dot-live{
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); margin: 0 4px;
  box-shadow: 0 0 6px var(--neon);
  animation: ann-pulse 1.6s ease-in-out infinite;
}

/* ---------- 18. BACK TO TOP ---------- */
.to-top{
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--neon); color: var(--purple-900);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 0 20px rgba(192,255,80,.5);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .25s;
  z-index: 90;
}
.to-top.is-visible{ opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover{ background: var(--neon-bright); transform: translateY(-2px); }

/* ---------- 19. RESPONSIVE TWEAKS ---------- */
@media (max-width: 991.98px){
  .site-nav .navbar-collapse{
    background: var(--white);
    border-top: 1px solid var(--line);
    margin-top: 1rem;
    padding: 1rem 0 .5rem;
  }
  .navbar-nav .nav-link{ padding: .8rem 0 !important; }
  .nav-actions{ flex-direction: column; align-items: stretch !important; padding-top: 1rem; border-top: 1px solid var(--line); }
  .hero-stack{ margin-top: 3rem; }
  .mini-card--2 {
    bottom: -24px;
    right: 20%;}
    .hero-img{
      margin-top: 30px;
    }
  .frame-tick{ display: none; }
}

@media (max-width: 767.98px){
  body{ font-size: 15px; }
  .display-1{ font-size: 2.4rem; }
  .pp-amt{ font-size: 3rem; }
  .theater-canvas{ height: 320px; }
  .th-chunks{ grid-template-columns: repeat(4, 24px); }
  .faq-acc .accordion-button{ font-size: 1.05rem; padding-right: 0; gap: .5rem; }
  .faq-acc .accordion-body{ padding-left: 0; }
  .theater{ padding: 1.2rem; }
  .ts-btn{ min-width: calc(50% - .25rem); }
  .qmark{ font-size: 7rem; }
  .cta-card{ text-align: center; }
  .cta-card .text-lg-end{ text-align: center !important; }
}

@media (max-width: 575.98px){
  .lab-shell{ padding: 1.2rem; }
  .ts-btn{ min-width: 100%; }
}

/* General Pages */

.hero-area {
  background: var(--paper);
  background-size: cover;
  padding: 80px 0;
}
.hero-area h1 {
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.order-summary {
  padding: 27px !important;
  border-radius: 16px;
  background: var(--dark-text);
  border: 1px solid #d1d1d1;
}

.checkout_area select {
  padding: 12px;
  border-radius: 5px;
  box-shadow: none;
  outline: none;
  appearance: auto;
  width: 100%;
  border: var(--bs-border-width) solid var(--bs-border-color);
  margin-bottom: 15px;
  min-height: 50px;
}
.checkout_area .form-control {
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  box-shadow: none;
  outline: none;
}

.contact_info_section .contact_info_box {
  background: var(--grad4);
  background-color: var(--e-global-color-primary);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  display: flex;
}