:root{
  --bg: #0b0f1a;
  --cream: #f6f1e6;
  --purple: #7b5cff;
  --purple2: #5a3dff;
  --line: rgba(246,241,230,.18);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 24px;

  --containerPad: 24px;
  --sectionY: 84px;
  --sectionYSm: 64px;
}

*{ box-sizing: border-box; }

html,body{
  margin: 0;
  height: 100%;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
}

/* One continuous, smooth gradient layer across the entire page */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(1100px 650px at 18% 8%, rgba(123,92,255,.28), transparent 62%),
    radial-gradient(900px 560px at 88% 24%, rgba(90,61,255,.22), transparent 62%),
    radial-gradient(850px 520px at 55% 92%, rgba(123,92,255,.16), transparent 62%),
    linear-gradient(180deg, rgba(11,15,26,1) 0%, rgba(11,15,26,.98) 35%, rgba(11,15,26,1) 100%);

  filter: saturate(1.05);
  transform: translateZ(0);

  animation: bgDrift 14s ease-in-out infinite alternate;
}

@keyframes bgDrift{
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.04) translate(-1.2%, 1.4%); }
}

/* Optional subtle grain so transitions feel smoother */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 2px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 2px);
  transform: translateZ(0);
}

/* Layout */
.container{
  width: min(1120px, calc(100% - (var(--containerPad) * 2)));
  margin: 0 auto;
}

/* Header */
.siteHeader{
  position: sticky;
  top: 16px;
  z-index: 80;
  padding: 10px 0; /* makes it feel floaty */
}

.headerWrap{
  display: flex;
  justify-content: center; /* centers the pill */
}

.headerInner{
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 999px;

  background: rgba(11,15,26,.42);
  border: 1px solid rgba(246,241,230,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 18px 50px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(246,241,230,.06);

  transition: background .2s ease, border-color .2s ease;
}

.headerInner::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(800px 220px at 50% -20%, rgba(123,92,255,.20), transparent 60%);
  opacity: .9;
}

.headerInner{ position: relative; }

.brandName{
  font-weight: 850;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
}

.brandTag{
  margin-top: 6px;
  font-size: 12px;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.nav{
  display: none;
  gap: 18px;
}

.navLink{
  text-decoration: none;
  color: rgba(246,241,230,.85);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.navLink.isActive{
  color: var(--purple);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
}

.btnPrimary{
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: var(--cream);
  box-shadow: 0 14px 34px rgba(123,92,255,.22);
}

.btnGhost{
  border: 1px solid rgba(246,241,230,.18);
  color: var(--cream);
  background: rgba(246,241,230,.04);
}

.btnFull{ width: 100%; }

/* Reset default heading margins so spacing is controlled */
h1,h2,h3,p{
  margin: 0;
}

/* Section spacing is consistent, so no random gaps */
section{
  padding: var(--sectionY) 0;
}

section.compact{
  padding: var(--sectionYSm) 0;
}

/* Hero */
.hero{
  padding-top: calc(var(--sectionY) + 12px);
  padding-bottom: var(--sectionY);
}

.heroInner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
  font-weight: 850;
}

.heroTitle{
  margin-top: 16px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.4px;
}

.heroSub{
  margin-top: 12px;
  max-width: 52ch;
  font-size: 18px;
  opacity: .9;
  line-height: 1.6;
}

.heroButtons{
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Visual */
.deviceCard{
  border-radius: 34px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.06);
  box-shadow: var(--shadow);
  padding: 24px;
}

.devicePlaceholder{
  height: 260px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 750;
  opacity: .7;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(246,241,230,.12);
}

/* Shared section head */
.sectionHead{
  text-align: left;
  margin-bottom: 28px;
}

.sectionTitle{
  margin-top: 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.sectionSub{
  margin-top: 10px;
  max-width: 62ch;
  opacity: .88;
  line-height: 1.6;
}

/* Selling points */
.sellingPoints{
  position: relative;
}

.pointsGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  margin-top: 32px; /* was 82px, this is the main gap culprit */
  position: relative;
  z-index: 2;
}

.pointCard{
  position: relative;
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.pointCard:hover{
  transform: translateY(-4px);
  border-color: rgba(123,92,255,.45);
}

.pointIcon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(123,92,255,.18);
  margin-bottom: 14px;
}

.pointCard h3{
  margin-bottom: 10px;
  font-size: 18px;
}

.pointCard p{
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  opacity: .9;
}

.pointLink{
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--purple);
  text-decoration: none;
}

.pointLink:hover{
  text-decoration: underline;
}

/* ================================
   Before / After Comparison
   ================================ */

.comparison{
  position: relative;
}

/* Header */
.comparisonHead{
  text-align: center;
  margin-bottom: 42px;
}

.comparisonTitle{
  margin-top: 12px;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
}

.comparisonSub{
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
  opacity: .85;
  line-height: 1.6;
}

/* Grid */
.comparisonGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Card */
.compareCard{
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(246,241,230,.14);
  background: linear-gradient(
    to bottom,
    rgba(246,241,230,.08),
    rgba(246,241,230,.04)
  );
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Labels */
.compareLabel{
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .75;
}

.compareLabel.after{
  color: var(--purple);
  opacity: 1;
}

/* Image wrapper ensures consistent crop */
.compareImageWrap{
  width: 100%;
  aspect-ratio: 16 / 10;   /* controls height consistency */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(246,241,230,.12);
  background: rgba(0,0,0,.25);
}

/* Image itself */
.compareImg{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* crop, not stretch */
  display: block;
}

/* Responsive */
@media (max-width: 980px){
  .comparisonGrid{
    grid-template-columns: 1fr;
  }

  .compareImageWrap{
    aspect-ratio: 16 / 11;
  }
}

/* Pricing */
.pricing{
  padding: var(--sectionYSm) 0;
}

.pricingGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
}

.priceCard{
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.06);
  box-shadow: var(--shadow);
  padding: 26px;
}

.priceTop{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.priceName{
  font-size: 18px;
  letter-spacing: .2px;
}

.priceAmount{
  text-align: right;
  line-height: 1;
}

.priceBig{
  display: block;
  font-weight: 900;
  font-size: 34px;
}

.priceSmall{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.priceList{
  margin-top: 16px;
  margin-bottom: 18px;
  padding-left: 18px;
  opacity: .92;
}

.priceList li{
  margin: 10px 0;
}

.isFeatured{
  background: rgba(123,92,255,.12);
  border-color: rgba(123,92,255,.35);
}

.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(246,241,230,.16);
}

/* Responsive */
@media (min-width: 980px){
  .nav{ display: flex; }
}

@media (max-width: 980px){
  .heroInner{ grid-template-columns: 1fr; }
  .comparisonGrid{ grid-template-columns: 1fr; }
  .pricingGrid{ grid-template-columns: 1fr; }
  .priceAmount{ text-align: left; }
  .pointsGrid{ grid-template-columns: 1fr; }
}
/* ================================
   Performance section
   ================================ */

.perf{
  position: relative;
}

.perfGrid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}

.perfEyebrow{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
  font-weight: 850;
}

.perfTitle{
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.4px;
}

.perfTitle span{
  color: var(--purple);
}

.perfIntro{
  margin-top: 12px;
  max-width: 56ch;
  font-size: 17px;
  opacity: .9;
  line-height: 1.7;
}

.perfList{
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.perfList li{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
}

.perfIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(123,92,255,.16);
  border: 1px solid rgba(123,92,255,.25);
}

.perfText strong{
  display: block;
  font-size: 15px;
  letter-spacing: .2px;
}

.perfText p{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
}

.perfButtons{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Right side */

.perfStats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.perfStat{
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(11,15,26,.45);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.perfStatBig{
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.perfStatSmall{
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  opacity: .75;
}

.perfMedia{
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.06);
  box-shadow: var(--shadow);
}

.perfMediaTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.perfMediaTag{
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .8;
}

.perfMediaLink{
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  opacity: .95;
}

.perfMediaLink:hover{
  text-decoration: underline;
}

.perfShot{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(246,241,230,.12);
}

/* Responsive */

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

  .perfStats{
    grid-template-columns: 1fr;
  }
}

/* ================================
   Automation section
   ================================ */

.automation{
  position: relative;
}

.automationGrid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}

.automationEyebrow{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
  font-weight: 850;
}

.automationTitle{
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -.4px;
}

.automationIntro{
  margin-top: 12px;
  max-width: 56ch;
  font-size: 17px;
  opacity: .9;
  line-height: 1.7;
}

.automationList{
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.automationList li{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
}

.automationIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(123,92,255,.16);
  border: 1px solid rgba(123,92,255,.25);
}

.automationText strong{
  display: block;
  font-size: 15px;
  letter-spacing: .2px;
}

.automationText p{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
}

.automationButtons{
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Right side card */

.automationCard{
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(246,241,230,.16);
  background: rgba(246,241,230,.06);
  box-shadow: var(--shadow);
}

.automationCardTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.automationTag{
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .85;
}

.automationHint{
  font-size: 12px;
  opacity: .7;
}

.automationMedia{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(246,241,230,.12);
  background: rgba(0,0,0,.25);
}

.automationGif{
  width: 100%;
  height: auto;
  display: block;
}

.automationMini{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.automationMiniItem{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(11,15,26,.45);
  backdrop-filter: blur(10px);
}

.automationMiniBig{
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.automationMiniSmall{
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .7px;
  opacity: .75;
}

/* Responsive */

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

  .automationMini{
    grid-template-columns: 1fr;
  }
}
/* Pricing grid 3 columns */
.pricingGrid3{
  grid-template-columns: repeat(3, 1fr);
}

/* Checkmark list */
.priceChecks{
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 18px;
}

.priceChecks li{
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.priceChecks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--purple);
  opacity: .95;
}

/* Responsive */
@media (max-width: 980px){
  .pricingGrid3{
    grid-template-columns: 1fr;
  }
}

:root{
  --bg: #0b0f1a;
  --cream: #f6f1e6;
  --purple: #7b5cff;
  --purple2: #5a3dff;
  --line: rgba(246,241,230,.16);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 24px;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

body{
  position: relative;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--cream);
  background: var(--bg);
}

/* One global background only */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* soft purple glow top left */
    radial-gradient(1200px 700px at 12% 8%, rgba(123,92,255,.28), transparent 60%),
    /* soft purple glow top right */
    radial-gradient(1100px 650px at 90% 12%, rgba(90,61,255,.22), transparent 60%),
    /* gentle depth in the middle */
    radial-gradient(1000px 700px at 50% 55%, rgba(0,0,0,.35), transparent 60%),
    /* long smooth vertical flow */
    linear-gradient(
      180deg,
      rgba(123,92,255,.22) 0%,
      rgba(18,22,45,1) 18%,
      rgba(11,15,26,1) 42%,
      rgba(18,22,45,1) 68%,
      rgba(123,92,255,.18) 100%
    );
}

/* Layout */
.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.siteHeader{
  position: sticky;
  top: 16px;
  z-index: 50;
}

.headerInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 28px;
  background: rgba(11,15,26,.45);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  min-width: 0;
}

.brand{
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brandName{
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 14px;
}

.brandTag{
  font-size: 12px;
  opacity: .75;
  text-transform: uppercase;
}

.nav{
  display: none;
  gap: 18px;
  align-items: center;
}

.navLink{
  text-decoration: none;
  color: rgba(246,241,230,.85);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.navLink:hover{
  color: rgba(246,241,230,1);
}

.navActive{
  color: var(--purple);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
  flex: 0 0 auto;
  white-space: nowrap;
}

.btnPrimary{
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: var(--cream);
  box-shadow: 0 18px 45px rgba(123,92,255,.20);
}

.btnGhost{
  border-color: var(--line);
  background: rgba(0,0,0,.12);
  color: var(--cream);
}

/* Pricing Section */
.pricing2{
  position: relative;
  padding: 90px 0 110px;
  overflow: visible; /* do not clip background */
}

.pricing2Head{
  max-width: 980px;
  margin-bottom: 34px;
}

.pricing2Eyebrow{
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: .9;
}

.pricing2Title{
  margin: 14px 0 10px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
}

.pricing2Sub{
  margin: 0;
  font-size: 18px;
  opacity: .9;
}

.pricing2Grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* Cards */
.pCard{
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(246,241,230,.14);
  background: linear-gradient(180deg, rgba(246,241,230,.06), rgba(0,0,0,.18));
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}

.pCard::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 280px at 30% 0%, rgba(246,241,230,.08), transparent 55%);
  opacity: .85;
  pointer-events: none;
}

/* You wanted price under name */
.pTop{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.pName{
  font-size: 22px;
  font-weight: 800;
  opacity: .95;
}

.pPrice{
  text-align: left;
  line-height: 1.05;
  max-width: 100%;
}

.pBig{
  font-size: 56px;
  font-weight: 900;
  letter-spacing: .2px;
}

.pBigCustom{
  font-size: 46px;
  letter-spacing: .4px;
}

.pSmall{
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .75;
}

.pList{
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
  display: grid;
  gap: 14px;
}

.pList li{
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  opacity: .92;
  line-height: 1.35;
}

.pList li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--purple);
  opacity: .95;
}

.pBtn{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 100%;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: 18px;
  border: 1px solid rgba(246,241,230,.18);
}

.pBtnPrimary{
  border: 0;
  color: var(--cream);
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 18px 45px rgba(123,92,255,.25);
}

.pBtnGhost{
  color: rgba(246,241,230,.92);
  background: rgba(0,0,0,.10);
}

/* Featured card */
.pFeatured{
  border-color: rgba(123,92,255,.40);
  background: linear-gradient(180deg, rgba(123,92,255,.16), rgba(0,0,0,.18));
}

/* Responsive */
@media (min-width: 980px){
  .nav{ display: flex; }
}

@media (max-width: 980px){
  .pricing2Grid{ grid-template-columns: 1fr; }
  .pBig{ font-size: 52px; }
  .pBigCustom{ font-size: 44px; }
}

:root{
  --bg: #0b0f1a;
  --cream: #f6f1e6;
  --purple: #7b5cff;
  --purple2: #5a3dff;
  --line: rgba(246,241,230,.16);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 24px;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  height: 100%;
  overflow-x: hidden;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--cream);
  background: var(--bg);
  position: relative;
}

/* One global flowing background (no section seams) */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 12% 8%, rgba(123,92,255,.28), transparent 60%),
    radial-gradient(1100px 650px at 90% 12%, rgba(90,61,255,.22), transparent 60%),
    radial-gradient(1000px 760px at 50% 55%, rgba(0,0,0,.40), transparent 62%),
    linear-gradient(
      180deg,
      rgba(123,92,255,.20) 0%,
      rgba(18,22,45,1) 18%,
      rgba(11,15,26,1) 42%,
      rgba(18,22,45,1) 68%,
      rgba(123,92,255,.16) 100%
    );
  transform: translateZ(0);
}

/* Layout */
.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 520px){
  .container{
    width: min(1120px, calc(100% - 28px));
  }
}

/* Links */
a{ color: inherit; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
  flex: 0 0 auto;
}

.btnPrimary{
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: var(--cream);
  box-shadow: 0 18px 45px rgba(123,92,255,.20);
}

.btnGhost{
  border-color: var(--line);
  background: rgba(246,241,230,.06);
  color: var(--cream);
}

/* Header (glassy floating pill) */
.siteHeader{
  position: sticky;
  top: 16px;
  z-index: 80;
  padding: 10px 0;
}

.headerWrap{
  display: flex;
  justify-content: center;
}

.headerInner{
  position: relative;
  width: min(1120px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 999px;

  background: rgba(11,15,26,.42);
  border: 1px solid rgba(246,241,230,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 18px 50px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(246,241,230,.06);
}

.headerInner::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(800px 220px at 50% -20%, rgba(123,92,255,.18), transparent 60%);
  opacity: .95;
}

.brand{
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.brandName{
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 14px;
}

.brandTag{
  font-size: 12px;
  opacity: .75;
  text-transform: uppercase;
}

.nav{
  display: none;
  gap: 18px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.navLink{
  text-decoration: none;
  color: rgba(246,241,230,.85);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.navLink:hover{
  color: rgba(246,241,230,1);
}

.navActive{
  color: var(--purple);
}

/* Mobile menu button */
.menuBtn{
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(246,241,230,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
}


.menuBtn span{
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: rgba(246,241,230,.92);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform .25s ease, opacity .2s ease;
}
.menuBtn span:nth-child(1){
  top: 16px;
}

.menuBtn span:nth-child(2){
  top: 23px;
  width: 16px; /* shorter middle line */
}

.menuBtn span:nth-child(3){
  top: 30px;
}

.menuBtn:hover span{
  background: rgba(246,241,230,1);
}


/* Mobile overlay menu */
.mobileMenu{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 18px;
}

body.menuOpen .mobileMenu{
  display: block;
}

body.menuOpen{
  overflow: hidden;
}

.mobileMenuInner{
  position: relative;
  width: min(520px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(11,15,26,.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  padding: 28px 22px 22px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.menuClose{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(246,241,230,.06);
  color: rgba(246,241,230,.92);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.mobileLink{
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(246,241,230,.92);
  font-size: 18px;
  padding: 10px 0;
}

.mobileLink:hover{
  color: var(--purple);
}

.mobileCta{
  margin-top: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: var(--cream);
  font-weight: 900;
}

/* Hero */
.hero{
  padding: 80px 0;
}

.heroInner{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
  font-weight: 900;
}

.heroTitle{
  margin: 16px 0 12px;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.05;
}

.heroSub{
  max-width: 52ch;
  font-size: 18px;
  opacity: .9;
}

.heroButtons{
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

/* Visual card */
.deviceCard{
  border-radius: 34px;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(246,241,230,.06);
  box-shadow: var(--shadow);
  padding: 24px;
}

.devicePlaceholder{
  height: 260px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 800;
  opacity: .7;
  background: rgba(0,0,0,.35);
}

/* Selling points */
.sellingPoints{
  padding: 80px 0 100px;
}

.sectionHead{
  margin: 0 0 28px;
}

.sectionTitle{
  margin: 14px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.sectionSub{
  margin: 0;
  max-width: 62ch;
  opacity: .88;
}

.pointsGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.pointCard{
  position: relative;
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.pointCard:hover{
  transform: translateY(-4px);
  border-color: rgba(123,92,255,.45);
}

.pointIcon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(123,92,255,.18);
  margin-bottom: 14px;
}

.pointCard h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.pointCard p{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  opacity: .9;
}

.pointLink{
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--purple);
  text-decoration: none;
}

.pointLink:hover{
  text-decoration: underline;
}

/* Pricing page section */
.pricing2{
  padding: 90px 0 110px;
}

.pricing2Head{
  max-width: 980px;
  margin-bottom: 34px;
}

.pricing2Eyebrow{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: .9;
}

.pricing2Title{
  margin: 14px 0 10px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
}

.pricing2Sub{
  margin: 0;
  font-size: 18px;
  opacity: .9;
}

.pricing2Grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pCard{
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(246,241,230,.14);
  background: linear-gradient(180deg, rgba(246,241,230,.06), rgba(0,0,0,.18));
  box-shadow: var(--shadow);
  padding: 28px;
  overflow: hidden;
}

.pCard::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px 280px at 30% 0%, rgba(246,241,230,.08), transparent 55%);
  opacity: .85;
  pointer-events: none;
}

.pTop{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.pName{
  font-size: 22px;
  font-weight: 900;
  opacity: .95;
}

.pPrice{
  text-align: left;
  line-height: 1.05;
}

.pBig{
  font-size: 56px;
  font-weight: 900;
  letter-spacing: .2px;
}

.pBigCustom{
  font-size: 46px;
  letter-spacing: .4px;
}

.pSmall{
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .75;
}

.pList{
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
  display: grid;
  gap: 14px;
}

.pList li{
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  opacity: .92;
  line-height: 1.35;
}

.pList li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--purple);
  opacity: .95;
}

.pBtn{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 100%;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  border: 1px solid rgba(246,241,230,.18);
}

.pBtnPrimary{
  border: 0;
  color: var(--cream);
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 18px 45px rgba(123,92,255,.25);
}

.pBtnGhost{
  color: rgba(246,241,230,.92);
  background: rgba(0,0,0,.10);
}

.pFeatured{
  border-color: rgba(123,92,255,.40);
  background: linear-gradient(180deg, rgba(123,92,255,.16), rgba(0,0,0,.18));
}

/* Responsive */
@media (min-width: 980px){
  .nav{ display: flex; }
}

@media (max-width: 980px){
  .heroInner{ grid-template-columns: 1fr; }
  .pointsGrid{ grid-template-columns: 1fr; }
  .pricing2Grid{ grid-template-columns: 1fr; }
  .headerCta{ display: none; }
  .menuBtn{ display: inline-flex; }
  .pBig{ font-size: 52px; }
  .pBigCustom{ font-size: 44px; }
}

@media (max-width: 700px){
  .siteHeader{
    top: 10px;
    padding: 10px 0;
  }
  .headerInner{
    padding: 14px 16px;
    border-radius: 22px;
  }
  .btn{
    padding: 10px 14px;
    font-size: 14px;
  }
}

/* about section */

:root{
  --bg: #0b0f1a;
  --cream: #f6f1e6;
  --purple: #7b5cff;
  --purple2: #5a3dff;
  --line: rgba(246,241,230,.16);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius: 26px;
}

*{ box-sizing: border-box; }

html,body{
  margin: 0;
  height: 100%;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(1100px 640px at 16% 10%, rgba(123,92,255,.26), transparent 60%),
    radial-gradient(980px 620px at 88% 26%, rgba(90,61,255,.22), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(123,92,255,.12), transparent 60%),
    var(--bg);
}

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.aboutPage{
  padding: 0px 0 110px;
}

.eyebrow{
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 850;
  opacity: .9;
}

.heroGrid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}

.heroTitle{
  margin: 14px 0 12px;
  font-size: clamp(40px, 5.2vw, 70px);
  line-height: 1.03;
}

.heroSub{
  margin: 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.6;
  opacity: .92;
}

.heroProof{
  margin-top: 22px;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}

.proofItem{
  border: 1px solid var(--line);
  background: rgba(246,241,230,.05);
  border-radius: 18px;
  padding: 12px 14px;
  display: grid;
  gap: 6px;
}

.proofLabel{
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .75;
  font-weight: 850;
}

.proofValue{
  font-size: 15px;
  opacity: .92;
}

.heroCtas{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  font-size: 15px;
  border: 1px solid rgba(246,241,230,.18);
}

.btnPrimary{
  border: 0;
  color: var(--cream);
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  box-shadow: 0 18px 45px rgba(123,92,255,.22);
}

.btnGhost{
  color: rgba(246,241,230,.92);
  background: rgba(0,0,0,.10);
}

.heroPanel{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 320px;
}

.panelGlow{
  position: absolute;
  inset: -120px -120px;
  background:
    radial-gradient(520px 420px at 20% 10%, rgba(123,92,255,.26), transparent 60%),
    radial-gradient(520px 420px at 80% 30%, rgba(90,61,255,.18), transparent 60%);
  filter: blur(10px);
  opacity: .9;
}

.panelInner{
  position: relative;
  padding: 22px;
}

.panelTitle{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 12px;
  font-size: 16px;
}

.panelList{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  opacity: .92;
}

.panelNote{
  margin-top: 14px;
  font-size: 13px;
  opacity: .72;
  line-height: 1.5;
}

.founders{
  padding-top: 0px;
}

.sectionHead{
  margin-bottom: 22px;
  max-width: 70ch;
}

.sectionTitle{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.sectionSub{
  margin: 0;
  opacity: .88;
  line-height: 1.6;
}

.foundersGrid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.founderCard{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
  padding: 22px;
}

.founderTop{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.avatarWrap{
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(246,241,230,.14);
  background: rgba(0,0,0,.22);
  flex: 0 0 auto;
}

.avatar{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease, filter .25s ease;
}

.avatarOverlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11,15,26,.55);
  opacity: 0;
  transition: opacity .2s ease;
}

.socialBtn{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--cream);
  border: 1px solid rgba(246,241,230,.18);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.avatarWrap:hover .avatarOverlay{
  opacity: 1;
}

.avatarWrap:hover .avatar{
  transform: scale(1.06);
  filter: saturate(1.05);
}

.founderMeta{
  display: grid;
  gap: 4px;
}

.founderName{
  font-size: 20px;
  font-weight: 900;
}

.founderRole{
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .72;
  font-weight: 850;
}

.founderBio{
  margin: 0;
  opacity: .9;
  line-height: 1.6;
  font-size: 15px;
}

.founderFoot{
  margin-top: 14px;
}

.textLink{
  color: var(--cream);
  text-decoration: none;
  font-weight: 850;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9;
}

.textLink:hover{
  color: var(--purple);
}

.aboutCta{
  padding-top: 0px;
}

.ctaCard{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  background: rgba(246,241,230,.05);
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ctaTitle{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 950;
}

.ctaSub{
  margin: 0;
  opacity: .86;
  line-height: 1.6;
}

.ctaActions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .aboutPage{
    padding: 72px 0 96px;
  }

  .heroGrid{
    grid-template-columns: 1fr;
  }

  .heroPanel{
    min-height: auto;
  }

  .foundersGrid{
    grid-template-columns: 1fr;
  }

  .ctaCard{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px){
  .container{
    width: min(1120px, calc(100% - 32px));
  }

  .avatarWrap{
    width: 116px;
    height: 116px;
  }
}

.tallyEmbed{
  margin-top: 32px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,.15);
  border: 1px solid rgba(246,241,230,.14);
}

.siteFooter{
  background: #000;
  color: rgba(255,255,255,.9);
  padding: 80px 0 28px;
}

.footerInner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footerBrand{
  max-width: 420px;
}

.footerLogo{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .5px;
}

.footerTag{
  font-size: 12px;
  letter-spacing: 1.6px;
  opacity: .7;
  margin-top: 2px;
}

.footerText{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  opacity: .75;
}

.footerCTA{
  display: flex;
  align-items: center;
}

.footerBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.footerBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255,255,255,.15);
}

.footerBottom{
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 22px 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: .65;
}

.footerLinks{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerLinks a{
  color: inherit;
  text-decoration: none;
}

.footerLinks a:hover{
  opacity: 1;
}

@media (max-width: 800px){
  .footerInner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footerBottom{
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

.legalPage{
  padding: 80px 0 120px;
}

.legalSection{
  max-width: 720px;
  margin-bottom: 64px;
}

.legalSection h1{
  font-size: 28px;
  margin-bottom: 16px;
}

.legalSection p{
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 14px;
}

.heroImage {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.privacy {
  padding: 120px 20px;
}

.privacyContainer {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 48px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #e5e7eb;
}

/* Headings */
.privacy h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.privacyUpdated {
  font-size: 0.9rem;
  color: rgba(229, 231, 235, 0.6);
  margin-bottom: 32px;
}

.privacy h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

/* Body text */
.privacy p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(229, 231, 235, 0.85);
}

/* Lists */
.privacy ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy li {
  margin-bottom: 8px;
  color: rgba(229, 231, 235, 0.85);
}

/* CONTACT SECTION */
.contact {
  padding: 140px 20px;
  display: flex;
  justify-content: center;
}

.contactContainer {
  max-width: 640px;
  width: 100%;
  text-align: left;
  color: #e5e7eb;
}

/* Headings */
.contactContainer h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
}

.contactSub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.75);
  margin-bottom: 56px;
}

/* FORM */
.contactForm {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Fields */
.formGroup label {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: rgba(229, 231, 235, 0.85);
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #e5e7eb;
  transition: border 0.2s ease, background 0.2s ease;
}

.formGroup textarea {
  min-height: 120px;
  resize: vertical;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.9);
}

/* BUTTON – MATCHES YOUR SITE CTA */
.submitBtn {
  margin-top: 20px;
  align-self: flex-start;

  background: linear-gradient(135deg, #7c5cff, #9f8cff);
  color: #fff;

  border: none;
  padding: 14px 32px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.submitBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(124, 92, 255, 0.45);
}

.contactForm {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  padding: 48px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


