:root{
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --line:rgba(255,255,255,.18);

  --brand:"Allura", cursive;
  --ui:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --drawer-bg: rgba(10,10,10,.92);
  --drawer-blur: 14px;

  --glass: rgba(255,255,255,.05);
  --glass-strong: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.12);

  /* extracted from your hero/video tones */
  --bg-a:#0e0e0e;
  --bg-b:#3f3f3f;
  --bg-c:#e1e1e1;
}

/* RESET */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--ui);
  background:#000;
  color: var(--text);
  overflow-x:hidden;
}
a{ color: inherit; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation: none !important; transition: none !important; scroll-behavior:auto !important; }
}

/* ===================== LOADER / BLUR EFFECT ===================== */
body.is-loading #appRoot{
  filter: none;
  transform: none;
}

body.is-loaded #appRoot{
  filter: none;
  transform: none;
}

.site-loader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 750ms ease;
}
body.is-loaded .site-loader{
  opacity: 0;
  pointer-events: none;
}
.loader-center{
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
}
.loader-icon{
  width: 92px;
  height: 92px;
  object-fit: contain;
  filter: hue-rotate(var(--hue, 0deg)) saturate(1.35) brightness(1.1);
  transition: filter 260ms ease, transform 750ms ease, opacity 750ms ease;
  will-change: filter, transform, opacity;
}
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
body.is-loading .loader-icon{ animation: breathe 1.6s ease-in-out infinite; }
body.is-loaded .loader-icon{ opacity: 0; transform: scale(0.96); animation: none; }
.loader-text{
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  user-select: none;
}

/* ===================== HERO ===================== */
.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

/* Background video */
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
}

/* Background snow (canvas) - replaces the video */
.hero-snow{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  pointer-events:none;
}

/* Film overlay + subtle motion */
.overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(255,255,255,.10), rgba(0,0,0,0) 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(255,255,255,.07), rgba(0,0,0,0) 62%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.20), rgba(0,0,0,.70));
  animation: overlayFloat 8s ease-in-out infinite;
}
@keyframes overlayFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* White shining laser line at bottom of video */
.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.95),
    rgba(255,255,255,0)
  );
  background-size: 220% 100%;
  box-shadow:
    0 0 18px rgba(255,255,255,0.55),
    0 0 55px rgba(255,255,255,0.25);
  opacity: .95;
  animation: laserSweep 2.3s linear infinite;
  z-index: 3;
  pointer-events:none;
}
.hero::before{
  content:"";
  position:absolute;
  left:-20%;
  right:-20%;
  bottom:-18px;
  height:48px;
  background: radial-gradient(closest-side, rgba(255,255,255,.22), rgba(255,255,255,0));
  filter: blur(10px);
  opacity: .55;
  z-index: 2;
  pointer-events:none;
}
@keyframes laserSweep{
  0%{ background-position: 0% 50%; filter: blur(0px); }
  50%{ background-position: 100% 50%; filter: blur(.25px); }
  100%{ background-position: 200% 50%; filter: blur(0px); }
}

/* ===================== HEADER ===================== */
.header{
  position:absolute;
  top:0;
  width:100%;
  z-index:10;
}

.header-inner{
  position:relative;
  max-width:1200px;
  margin:24px auto 0;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Desktop nav */
.nav{ display:flex; gap:18px; }
.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size:14px;
  white-space:nowrap;
  position:relative;
  padding:8px 10px;
  border-radius:999px;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.nav a:hover{
  color:#fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.nav a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:4px;
  height:1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.95), rgba(255,255,255,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
  opacity:.70;
}
.nav a:hover::after{ transform: scaleX(1); }

/* Perfect centered logo */
.logo-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-center img{
  width:42px;
  height:42px;
  object-fit:contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

/* Divider */
.divider{
  max-width:1200px;
  margin:14px auto 0;
  border-bottom:1px solid var(--line);
  opacity:.85;
}

/* ===================== ICONS (IMAGE-BASED) ===================== */
.icon-img{
  background:transparent;
  border:none;
  padding:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  text-decoration:none;
  border-radius: 12px;
  transition: background .18s ease, transform .18s ease;
}
.icon-img:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }
.icon-img:active{ transform: translateY(0); opacity:.9; }
.icon-img img{ width:24px; height:24px; display:block; }

.icon-plain{
  background:transparent;
  border:none;
  color:#fff;
  cursor:pointer;
  padding:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius: 12px;
  transition: background .18s ease;
}
.icon-plain:hover{ background: rgba(255,255,255,.08); }

/* ===================== MOBILE MENU ===================== */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index:9;
}

.drawer{
  position:fixed;
  left:0;
  right:0;
  top:0;
  transform: translateY(-110%);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
  z-index:10;
}
.drawer-inner{
  background: var(--drawer-bg);
  backdrop-filter: blur(var(--drawer-blur));
  -webkit-backdrop-filter: blur(var(--drawer-blur));
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding: 14px 16px 18px;
}
.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto;
  padding: 6px 0 10px;
}
.drawer-title{
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.72);
}
.drawer-close{
  font-size:18px;
  line-height:1;
  opacity:.95;
}
.drawer-links{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.drawer-links a{
  padding: 12px 10px;
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-size:16px;
  border-radius:14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.drawer-links a:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.drawer-sep{
  height:1px;
  background: rgba(255,255,255,.18);
  margin: 8px 0;
}
body.menu-open .menu-overlay{ opacity:1; visibility:visible; }
body.menu-open .drawer{ transform: translateY(0); }

/* ===================== HERO CONTENT ===================== */
.hero-content{
  position:relative;
  z-index:4;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 16px;
}

.kicker{
  letter-spacing:.24em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.78);
  margin-bottom:18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes popIn{
  from{ opacity:0; transform: translateY(10px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

.brand-title{
  font-family:var(--brand);
  font-weight:400;
  font-size:clamp(70px, 11vw, 170px);
  letter-spacing:.06em;
  line-height:1;
  margin-bottom:16px;
  text-shadow:0 18px 60px rgba(0,0,0,.55);
  animation: titleGlow 2.8s ease-in-out infinite;
}
@keyframes titleGlow{
  0%,100%{ filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50%{ filter: drop-shadow(0 0 14px rgba(255,255,255,.18)); }
}

.subtitle{
  max-width:600px;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
  margin-bottom:34px;
}

.cta{
  padding: 13px 28px;
  color:#0b0b0b;
  text-decoration:none;
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.85));
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 26px 80px rgba(0,0,0,.45);
}
.cta:active{ transform: translateY(0); filter: brightness(.96); }

/* ===================== PAGE SECTIONS ===================== */
.page{
  position: relative;
  background: #050505;
  isolation: isolate;
}

.page::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(120deg,
      color-mix(in srgb, var(--bg-a) 88%, #000 12%),
      color-mix(in srgb, var(--bg-b) 70%, #000 30%),
      color-mix(in srgb, var(--bg-a) 88%, #000 12%)
    );
  background-size: 220% 220%;
  animation: pageGradient 14s ease-in-out infinite;
  opacity:.92;
}

.page::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 18% 0%, rgba(225,225,225,.10), rgba(0,0,0,0) 60%),
    radial-gradient(900px 500px at 82% 22%, rgba(225,225,225,.08), rgba(0,0,0,0) 62%),
    radial-gradient(700px 420px at 50% 110%, rgba(225,225,225,.06), rgba(0,0,0,0) 60%);
  filter: blur(1px);
  opacity:.85;
}

@keyframes pageGradient{
  0%{ background-position: 0% 40%; }
  50%{ background-position: 100% 60%; }
  100%{ background-position: 0% 40%; }
}
.section{ padding: clamp(64px, 8vw, 110px) 0; position:relative; }
.container{ width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.section-head{
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}
.eyebrow{
  display: inline-block;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h2{
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 700;
}
.lead{
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.75;
}

/* About cards */
.about-grid{
  margin-top: 34px;
  display:grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.glass-card{
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 28px 90px rgba(0,0,0,.40);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  position:relative;
  overflow:hidden;
}
.glass-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 200px at 10% 0%, rgba(255,255,255,.14), rgba(255,255,255,0) 60%);
  opacity:.7;
  pointer-events:none;
}
.glass-card h3{
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  position:relative;
}
.glass-card p{
  color: rgba(255,255,255,.76);
  line-height: 1.65;
  position:relative;
}
.glass-card:hover{
  transform: translateY(-7px);
  border-color: rgba(255,255,255,.20);
  background: var(--glass-strong);
}

/* Features shell */
.feature-shell{
  margin-top: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 100px rgba(0,0,0,.50);
}
.feature-tabs{
	justify-content: center;
  position: relative;
  display:flex;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.ftab{
  appearance:none;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.85);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.ftab:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.ftab.is-active{
  color: #0b0b0b;
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.45);
}
.tab-underline{
  position:absolute;
  height: 2px;
  bottom: 8px;
  left: 14px;
  width: 40px;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.24));
  opacity: .9;
  transition: left .28s cubic-bezier(.2,1,.2,1), width .28s cubic-bezier(.2,1,.2,1);
  pointer-events:none;
}

.feature-panels{ padding: 22px; }
.panel{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease;
}
.panel.is-active{
  opacity: 1;
  transform: translateY(0);
}
.panel-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}
.panel-copy h3{
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.panel-copy p{
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
}
.bullets{
  list-style:none;
  display:grid;
  gap: 10px;
}
.bullets li{
  color: rgba(255,255,255,.78);
  line-height: 1.5;
  padding-left: 18px;
  position:relative;
}
.bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  box-shadow: 0 0 16px rgba(255,255,255,.18);
}

.panel-card{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.mock{
  width: 100%;
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.mock-row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.82);
}
.mock-actions{ display:flex; flex-wrap: wrap; gap: 10px; }
.mini{
  appearance:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.mini:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.mini:active{ transform: translateY(0); opacity: .9; }
.mini.ghost{ background: transparent; }
.mini.danger{ background: rgba(255,60,60,.20); border-color: rgba(255,60,60,.28); }

.pill{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
}
.pill.ok{ border-color: rgba(80,255,170,.25); background: rgba(80,255,170,.12); }
.mock-note{ color: rgba(255,255,255,.64); font-size: 12px; letter-spacing: .04em; }

/* =========================
   NEW FEATURES SHOWCASE (ABSTRACT PREVIEW)
   - Replaces old mock dashboard cards to avoid "this is the UI" look
   - Only affects the Features section
========================= */

.micro-note{
  margin-top: 12px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  letter-spacing: .02em;
}



.fs-art{
  position: relative;
  min-height: 210px;
  border-radius: 22px;
  background:
    radial-gradient(520px 260px at 18% 20%, rgba(255,255,255,.14), rgba(255,255,255,0) 60%),
    radial-gradient(420px 240px at 82% 32%, rgba(255,255,255,.10), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.20));
}

.fs-orb{
  position:absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.26), rgba(255,255,255,0) 62%);
  filter: blur(2px);
  opacity: .9;
  animation: fsDrift 10s ease-in-out infinite;
}
.fs-orb.a{ width: 220px; height: 220px; top: -70px; left: -55px; }
.fs-orb.b{ width: 170px; height: 170px; top: 35%; left: 56%; opacity:.72; animation-duration: 12s; }
.fs-orb.c{ width: 150px; height: 150px; top: 18%; left: 62%; opacity:.64; animation-duration: 13s; }
.fs-orb.d{ width: 120px; height: 120px; top: 60%; left: 12%; opacity:.55; animation-duration: 14s; }

@keyframes fsDrift{
  0%,100%{ transform: translate(0,0); }
  50%{ transform: translate(14px, -10px); }
}

.fs-grid{
  position:absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, rgba(255,255,255,0) 1px),
    linear-gradient(0deg, rgba(255,255,255,.08) 1px, rgba(255,255,255,0) 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,0));
  pointer-events:none;
}

.fs-pulse{
  position:absolute;
  inset: 0;
  background: radial-gradient(280px 140px at 52% 55%, rgba(255,255,255,.12), rgba(255,255,255,0) 70%);
  opacity: .9;
  pointer-events:none;
}

.fs-lines{
  position:absolute;
  inset: 0;
  display:grid;
  align-content:end;
  padding: 14px;
  gap: 10px;
}
.fs-lines span{
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.85), rgba(255,255,255,0));
  opacity: .55;
  transform-origin: left;
  animation: fsPulse 3.2s ease-in-out infinite;
}
.fs-lines span:nth-child(2){ animation-delay: .25s; opacity:.44; }
.fs-lines span:nth-child(3){ animation-delay: .5s; opacity:.36; }
.fs-lines span:nth-child(4){ animation-delay: .75s; opacity:.30; }

@keyframes fsPulse{
  0%,100%{ transform: scaleX(.85); }
  50%{ transform: scaleX(1); }
}

.fs-route{
  position:absolute;
  left: 16px;
  right: 16px;
  top: 54%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.45), rgba(255,255,255,0));
  opacity: .6;
}
.fs-route .dot{
  position:absolute;
  top: -6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 18px rgba(255,255,255,.16);
}
.fs-route .dot:nth-child(1){ left: 8%; }
.fs-route .dot:nth-child(2){ left: 50%; transform: translateX(-50%); }
.fs-route .dot:nth-child(3){ right: 8%; }

.fs-label{
  position:absolute;
  left: 14px;
  bottom: 14px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fs-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.fs-tag{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
}

.features-footnote{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing: .04em;
}
.features-footnote .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  box-shadow: 0 0 18px rgba(255,255,255,.16);
}

/* Make sure the right column doesn't look like "real UI cards" */

.fs-tag,
.fs-label{
  user-select: none;
}


/* Footer */
.footer{
  padding: 40px 0 58px;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align:center;
  color: rgba(255,255,255,.68);
}

/* Reveal animations (scroll) */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
.desktop-only{ display:flex; }
.mobile-only{ display:none; }

@media(max-width:860px){
  .desktop-only{ display:none; }
  .mobile-only{ display:inline-flex; }
  .divider{ margin-top:16px; margin-bottom:18px; }
}

@media(min-width:861px){
  .menu-overlay, .drawer{ display:none; }
}

@media(max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .panel-grid{ grid-template-columns: 1fr; }
  .feature-tabs{ flex-wrap: wrap; }
  .tab-underline{ display:none; }
}

/* =========================================================
   NO ENTRANCE/FADE FOR HERO + HEADER (BUT KEEP HOVERS)
   - removes ONLY "fade in" behavior (opacity/transform)
   - does NOT kill hover transitions
========================================================= */

/* Safety: if any JS/class tries to hide these during loading, force them visible */
body.is-loading .brand-title,
body.is-loading .subtitle,
body.is-loading .kicker,
body.is-loading .nav a,
body.is-loading .logo-center img,
body.is-loading .icon-img,
body.is-loading .icon-img img{
  opacity: 1 !important;
  transform: none !important;
}

/* Remove any entrance animations from these only */
.brand-title,
.subtitle,
.kicker{
  opacity: 1;
  transform: none;
  /* keep titleGlow on brand-title below */
}

/* Keep glow exactly as you had it */
.brand-title{
  animation: titleGlow 2.8s ease-in-out infinite !important;
}

/* IMPORTANT: do NOT nuke transitions globally; keep your hover effects working */
.nav a,
.icon-img{
  /* your hover transitions already defined above, so no override here */
}

/* If you ever add "reveal" to header/hero by accident, prevent it from fading them */
.header .reveal,
.hero-content .reveal{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* =========================
   Pricing Section
========================= */

.pricing{
  padding: 120px 6%;
  text-align: center;
}

.pricing-header h2{
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.pricing-header p{
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 60px;
}

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}

.price-card{
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 34px 28px;
  text-align: left;
  transition: transform .35s ease, box-shadow .35s ease;
}

.price-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.price-card h3{
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.price{
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.price .amount{
  font-size: 2.6rem;
  font-weight: 700;
}

.price .period{
  color: rgba(255,255,255,.55);
  font-size: .95rem;
}

.price-card ul{
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-card ul li{
  margin-bottom: 10px;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
}

.price-btn{
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: .95rem;
  transition: background .25s ease, transform .25s ease;
}

.price-btn:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

/* Featured plan */
.price-card.featured{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.02)
  );
  border-color: rgba(255,255,255,.25);
}

.price-card .badge{
  position: absolute;
  top: -12px;
  right: 18px;
  background: #fff;
  color: #000;
  font-size: .7rem;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .05em;
}
