:root{
  --bg:#040913;
  --bg2:#081226;
  --panel:#0a1222;
  --panel2:#0e1a31;
  --line:rgba(120,168,255,.22);
  --line-strong:rgba(167,208,255,.42);
  --text:#eef5ff;
  --muted:#c3d4ed;
  --accent:#4f95ff;
  --accent2:#2d6fff;
  --shadow:0 22px 70px rgba(0,0,0,.45);
  --radius:24px;
  --container:1220px;
}



*{box-sizing:border-box}
html{scroll-behavior:smooth;
  background:#030812;}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(89,142,255,.12), transparent 28%),
    linear-gradient(180deg, #030812 0%, #07101d 35%, #081425 100%);
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea{font:inherit}

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

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(16px);
  background:rgba(5,11,22,.72);
  border-bottom:1px solid rgba(144,186,255,.08);
}

.nav{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg, rgba(11,18,33,.94), rgba(10,15,27,.82));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), var(--shadow);
}

.brand-icon{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand-wordmark{
  font-size:1.08rem;
  font-weight:800;
  letter-spacing:.08em;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
}

.feature-band-media{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:20px;
  padding:12px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(8,14,26,.92), rgba(8,14,26,.88));
}

.feature-band-img-wrap{
  width:50%;
  max-width:50%;
  flex:0 0 50%;
  border-radius:20px;
  overflow:hidden;
}

.feature-band-img{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:16px;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  border:1px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn-sm{
  min-height:46px;
  padding:0 16px;
}
.btn-primary{
  color:#fff;
  background:linear-gradient(180deg, var(--accent) 0%, var(--accent2) 100%);
  box-shadow:0 12px 28px rgba(45,111,255,.28), 0 0 24px rgba(79,149,255,.18);
}
.btn-outline{
  color:var(--text);
  border:1px solid var(--line-strong);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  position:relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after{
  content:"";
  position:absolute;
  left:50%;
  width:18px;
  height:2px;
  background:#fff;
  transform:translateX(-50%);
}
.menu-toggle span{top:22px}
.menu-toggle span::before{top:-6px}
.menu-toggle span::after{top:6px}

.mobile-menu{
  display:none;
  padding:0 20px 16px;
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;
  color:var(--muted);
  padding:12px 0;
  border-top:1px solid rgba(144,186,255,.08);
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero-image,
.hero-overlay{
  position:absolute;
  inset:0;
}
.hero-content,
.hero-access-grid{
  position:relative;
  z-index:1;
}

.hero-home{
  min-height:720px;
  display:flex;
  align-items:center;
}
.hero-image-home{
  background: url("assets/Anatomy2.webp") center center / cover no-repeat;
}
.hero-overlay-home{
  background:
    linear-gradient(90deg, rgba(4,9,19,.92) 0%, rgba(4,9,19,.84) 22%, rgba(4,9,19,.54) 50%, rgba(4,9,19,.28) 100%),
    linear-gradient(180deg, rgba(4,9,19,.12) 0%, rgba(4,9,19,.26) 100%);
}
.hero-content-left{
  display:flex;
  justify-content:flex-start;
}
.hero-copy-home{
  max-width:620px;
  padding:44px 0;
  margin-left:2.5%;
}
.hero-copy-home h1{
  margin:0 0 18px;
  font-size:clamp(2.1rem, 4.5vw, 3.75rem);
  line-height:.98;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.hero-copy-home h2{
  margin:0 0 28px;
  font-size:clamp(1.08rem, 1.9vw, 1.42rem);
  line-height:1.6;
  font-weight:500;
  color:var(--muted);
  max-width:42ch;
}
.hero-btn{
  min-width:180px;
}

.section{
  padding:64px 0;
}

.section-title{
  margin:0 0 20px;
  text-align:center;
  font-size:clamp(2rem, 3.4vw, 3rem);
  letter-spacing:-.04em;
}
.section-lead{
  margin:0 auto 26px;
  text-align:center;
  color:var(--muted);
  max-width:760px;
  line-height:1.7;
  font-size:1.04rem;
}
.section-lead.wide{
  max-width:900px;
}

.echo-sections{
  padding-top:40px;
  padding-bottom:12px;
}

.education-section{
  padding-top:12px;
  padding-bottom:12px;
}

.feature-band{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line-strong);
  box-shadow:var(--shadow);
  margin-bottom:26px;
  background:linear-gradient(180deg, rgba(10,18,34,.96), rgba(8,14,26,.94));
}

.feature-band-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(280px, 32%) minmax(0, 68%);
  align-items:stretch;
  gap:0;
  padding:0;
}

.feature-band-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:34px 24px 34px 28px;
  max-width:none;
  background:linear-gradient(180deg, rgba(10,18,34,.985), rgba(8,14,26,.965));
  position:relative;
  z-index:2;
}

.feature-band-media{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:20px;
  padding:12px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(8,14,26,.92), rgba(8,14,26,.88));
}



.band-label{
  margin:0 0 10px;
  color:#9ec4ff;
  font-size:.88rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.feature-band-copy h3{
  margin:0 0 12px;
  font-size:clamp(1.6rem, 2.8vw, 2.4rem);
  line-height:1.1;
  letter-spacing:-.03em;
}

.feature-band-copy p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.65;
  max-width:30ch;
}

.privacy-section{
  padding-top:10px;
  padding-bottom:20px;
}
.privacy-panel{
  border:1px solid var(--line-strong);
  border-radius:28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(83,145,255,.14), transparent 28%),
    linear-gradient(180deg, rgba(10,18,34,.96), rgba(8,14,26,.94));
  box-shadow:var(--shadow);

  padding:34px;

  max-width:900px;
  margin:0 auto;
}
.privacy-copy{
  max-width:860px;
  margin:0 auto;
  text-align:left;
}
.privacy-copy h3{
  margin:0 0 14px;
  font-size:clamp(2rem, 3.4vw, 3rem);
  line-height:1.06;
  letter-spacing:-.04em;
}
.privacy-copy p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.8;
}
.privacy-copy p:last-child{
  margin-bottom:0;
}

.request-info{
  text-align:center;
  margin:20px 0 26px;
}

.request-info p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.7;
}

.privacy-intro{
  margin-bottom:24px;
}

.privacy-policy-details{
  margin-top:28px;
  padding:28px;
  border:1px solid rgba(167,208,255,.14);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
}

.privacy-policy-header{
  margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(167,208,255,.12);
}

.privacy-policy-header h4{
  margin:0 0 8px;
  font-size:1.35rem;
  line-height:1.2;
  letter-spacing:-.03em;
  color:var(--text);
}

.privacy-policy-header p{
  margin:0;
  color:#dce8fb;
  font-size:.98rem;
}

.privacy-policy-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.policy-item{
  padding:18px 18px 16px;
  border:1px solid rgba(167,208,255,.12);
  border-radius:18px;
  background:rgba(255,255,255,.02);
}

.policy-item h5{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.25;
  letter-spacing:-.02em;
  color:var(--text);
}

.review-card{
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(10,18,34,.92), rgba(8,14,26,.92));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.policy-item p{
  margin:0;
  font-size:.97rem;
  line-height:1.7;
  color:var(--muted);
}

.policy-item-contact{
  grid-column:1 / -1;
}

.store-button-row{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin:18px 0 20px;
}

/* THIS is what forces left alignment */
.store-button-row.left-aligned{
  justify-content:flex-start;
}

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

  .feature-band-img-wrap{
    width:calc(50% - 6px);
    max-width:calc(50% - 6px);
    flex:0 0 calc(50% - 6px);
  }

  .policy-item-contact{
    grid-column:auto;
  }
}

@media (max-width: 640px){
  .privacy-policy-details{
    margin-top:22px;
    padding:20px;
    border-radius:18px;
  }

  .policy-item{
    padding:16px;
    border-radius:16px;
  }

  .privacy-policy-header h4{
    font-size:1.15rem;
  }

  .policy-item h5{
    font-size:.96rem;
  }

  .policy-item p{
    font-size:.92rem;
    line-height:1.6;
  }
}

.cta-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
}
.cta-copy h3{
  margin:0 0 16px;
  font-size:clamp(2.2rem, 4vw, 3.6rem);
  line-height:1.02;
  letter-spacing:-.05em;
  text-transform:uppercase;
}
.cta-subtitle,
.access-subtitle{
  margin:0 0 20px;
  color:var(--text);
  font-size:1.3rem;
  font-weight:500;
}
.check-list,
.access-bullets{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}
.check-list li,
.access-bullets li{
  position:relative;
  padding-left:26px;
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.6;
  font-size:1.05rem;
}
.check-list li::before,
.access-bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(180deg, #8bc5ff, #2d6fff);
  box-shadow:0 0 18px rgba(79,149,255,.5);
}
.buy-btn{
  margin-top:8px;
  min-width:220px;
}
.platform-icons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}
.platform-icons span{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  background:rgba(255,255,255,.03);
}

.cta-visual{
  position:relative;
  min-height:620px;
}
.ring{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  border-radius:50%;
  border:1px solid rgba(135,190,255,.2);
  box-shadow:0 0 50px rgba(72,138,255,.08);
}
.ring-1{
  bottom:42px;
  width:460px;
  height:100px;
}
.ring-2{
  bottom:112px;
  width:360px;
  height:74px;
}
.unified-platform{
  padding-top:40px;
  padding-bottom:18px;
}

.unified-platform-panel{
  border:1px solid var(--line-strong);
  border-radius:28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(83,145,255,.14), transparent 28%),
    linear-gradient(180deg, rgba(10,18,34,.96), rgba(8,14,26,.94));
  box-shadow:var(--shadow);
  padding:36px 32px;
  text-align:center;
  max-width:980px;
  margin:0 auto;
}

.unified-platform-title{
  margin-bottom:14px;
}

.unified-platform-lead{
  max-width:760px;
  margin:0 auto;
  font-size:1.08rem;
  line-height:1.8;
}

@media (max-width: 640px){
  .unified-platform-panel{
    padding:24px 20px;
    border-radius:22px;
  }

  .unified-platform-lead{
    font-size:.98rem;
    line-height:1.7;
  }
}
.device-panel{
  position:absolute;
  left:50%;
  top:30px;
  transform:translateX(-50%);
  width:min(620px, 80%);
  aspect-ratio: 1.432 / 1; /* or whatever your image is */
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line-strong);
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(11,20,36,.95), rgba(8,14,24,.9));
}
.device-panel img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.floating-phone{
  position:absolute;
  top:130px;
  width:112px;
  height:210px;
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,20,36,.95), rgba(8,14,24,.9));
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
}
.floating-phone img{
  width:72px;
  height:72px;
  object-fit:contain;
}
.phone-left{left:24px}
.phone-right{right:24px}
.funnel-core{
  position:absolute;
  left:50%;
  bottom:70px;
  transform:translateX(-50%);
  width:150px;
  height:150px;
  border-radius:34px;
  border:1px solid var(--line-strong);
  background:linear-gradient(180deg, rgba(12,24,42,.98), rgba(10,16,28,.92));
  box-shadow:0 0 55px rgba(77,149,255,.2), var(--shadow);
  display:grid;
  place-items:center;
}
.funnel-core img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.funnel-core img{
  border-radius:inherit;
}

.hero-access{
  min-height:760px;
  display:flex;
  align-items:center;
}
.hero-image-access{
  background:url("assets/access_mockup.webp") center center / cover no-repeat;
}
.hero-overlay-access{
  background:
    linear-gradient(90deg, rgba(4,9,19,.90) 0%, rgba(4,9,19,.82) 26%, rgba(4,9,19,.42) 58%, rgba(4,9,19,.28) 100%),
    linear-gradient(180deg, rgba(4,9,19,.18) 0%, rgba(4,9,19,.34) 100%);
}
.hero-access-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:center;
  width:100%;
}
.hero-access-grid-left{
  justify-items:start;
}
.hero-copy-access{
  max-width:560px;
  margin-left:2.5%;
}
.hero-copy-access-centered{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:520px;
}
.hero-copy-access h1{
  margin:0 0 14px;
  font-size:clamp(2.6rem, 5vw, 4.4rem);
  line-height:1.02;
  letter-spacing:-.05em;
  max-width:10ch;
}
.os-request-note{
  color:#dce8fb;
  font-size:1rem;
  margin-top:6px;
}

.store-button-row{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.left-aligned{
  justify-content:flex-start;
}
.image-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:260px;
  height:78px;
  padding:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line-strong);
  box-shadow:var(--shadow);
  position:relative;
  background-color:#09152a;
}
.image-button img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.image-button::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  pointer-events:none;
}
.image-button span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%);
}

.access-hero-visual{
  position:relative;
  min-height:520px;
}
.access-hero-ring{
  position:absolute;
  left:50%;
  bottom:92px;
  transform:translateX(-50%);
  width:520px;
  height:120px;
  border-radius:50%;
  border:1px solid rgba(143,201,255,.22);
  box-shadow:0 0 50px rgba(70,132,255,.08);
}
.access-phone{
  position:absolute;
  left:50%;
  top:18px;
  transform:translateX(-50%) rotate(-1deg);
  width:270px;
  height:520px;
  border-radius:38px;
  overflow:hidden;
  border:1px solid var(--line-strong);
  background:linear-gradient(180deg, rgba(11,20,36,.95), rgba(8,14,24,.9));
  box-shadow:var(--shadow);
}
.access-phone img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.access-heart-card{
  position:absolute;
  top:92px;
  width:180px;
  height:220px;
  border-radius:34px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(12,24,42,.92), rgba(8,14,24,.86));
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
}
.access-heart-card.left{left:30px}
.access-heart-card.right{right:30px; top:150px}
.access-heart-card img{
  width:120px;
  height:120px;
  object-fit:contain;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:26px;
}
.review-card,
.value-card{
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(10,18,34,.92), rgba(8,14,26,.92));
  box-shadow:var(--shadow);
}
.review-image{
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-bottom:1px solid rgba(167,208,255,.16);
}
.review-image img{
  width:100%;
  height:100%;
  object-fit:fill;
}
.review-copy{
  padding:22px;
}
.review-copy h3,
.value-card h3{
  margin:0 0 10px;
  font-size:1.45rem;
  letter-spacing:-.03em;
}
.review-copy p,
.value-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.value-card{
  padding:24px;
}

.conversion-panel{
  border:1px solid var(--line-strong);
  border-radius:28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(83,145,255,.14), transparent 28%),
    linear-gradient(180deg, rgba(10,18,34,.96), rgba(8,14,26,.94));
  box-shadow:var(--shadow);
  padding:30px;
}
.conversion-copy h2{
  margin:0 0 10px;
  text-align:center;
  font-size:clamp(2rem, 3.4vw, 3rem);
  letter-spacing:-.04em;
}
.conversion-copy p{
  margin:0 auto 24px;
  text-align:center;
  color:var(--muted);
  max-width:780px;
  line-height:1.7;
}
.request-buttons{
  display:flex;
  gap:14px;
  justify-content:flex-start;
}
.btn-cta{
  font-size:1.55rem;
  min-height:64px;
  padding:0 32px;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(45,111,255,.35), 0 0 30px rgba(79,149,255,.25);
}

.individual-access-note{
  margin-top:26px;
}

.store-secondary{
  margin-top:12px;
}

.store-secondary .image-button{
  width:200px;
  height:60px;
  border-radius:14px;
  opacity:.92;
}

.store-secondary .image-button:hover{
  opacity:1;
}
.contact-form{
  max-width:840px;
  margin:0 auto;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form label{
  display:block;
  margin-bottom:16px;
}
.contact-form span{
  display:block;
  margin-bottom:8px;
  color:#dce8fb;
  font-weight:600;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(167,208,255,.18);
  background:rgba(255,255,255,.04);
  color:var(--text);
  padding:14px 16px;
  outline:none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#9eb4d6;
}
.submit-btn{
  min-width:180px;
}

.site-footer{
  border-top:1px solid rgba(144,186,255,.10);
  background:rgba(5,11,22,.55);
  padding:26px 0 34px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer-left p{
  margin:6px 0 0;
  color:var(--muted);
}
.footer-brand{
  font-size:1.1rem;
  font-weight:800;
  letter-spacing:.02em;
}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
}
.footer-links a:hover{
  color:var(--text);
}

@media (max-width: 1080px){
  .cta-grid,
  .hero-access-grid,
  .value-grid{
    grid-template-columns:1fr;
  }

  .cta-visual{
    min-height:560px;
  }

  .access-hero-visual{
    min-height:560px;
  }
}

@media (max-width: 900px){
  .nav-links{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .hero-overlay-home,
  .hero-overlay-access{
    background:linear-gradient(180deg, rgba(4,9,19,.72) 0%, rgba(4,9,19,.78) 42%, rgba(4,9,19,.84) 100%);
  }

  .hero-copy-home,
  .hero-copy-access{
    margin-left:0;
    max-width:100%;
  }

  .feature-band-inner,
  .review-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .feature-band-copy{
    order:1;
    padding:26px 24px;
  }

  .feature-band-media{
    order:2;
  }



  .hero-copy-access-centered{
    min-height:auto;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .nav{
    min-height:78px;
  }

  .brand{
    padding:8px 12px;
    gap:10px;
  }

  .brand-icon{
    width:34px;
    height:34px;
  }

  .brand-wordmark{
    font-size:.88rem;
  }

  .hero-home,
  .hero-access{
    min-height:620px;
  }

  .hero-copy-home h1,
  .hero-copy-access h1{
    font-size:clamp(2.2rem, 11vw, 3.6rem);
    max-width:none;
  }

  .hero-copy-home h2{
    font-size:1rem;
  }

  .section{
    padding:48px 0;
  }

  .feature-band-copy h3{
    font-size:clamp(1.9rem, 8vw, 2.8rem);
  }

  .feature-band-copy p{
    font-size:.95rem;
  }

  .privacy-panel{
    padding:24px;
  }

  .privacy-copy h3{
    font-size:clamp(1.8rem, 8vw, 2.5rem);
  }

  .privacy-copy p{
    font-size:.96rem;
  }

  .image-button{
    width:100%;
    max-width:320px;
  }

  .cta-visual{
    min-height:460px;
  }

 
  .floating-phone{
    width:84px;
    height:156px;
    top:110px;
  }

  .floating-phone img{
    width:50px;
    height:50px;
  }

  .phone-left{left:4px}
  .phone-right{right:4px}

  .funnel-core{
    width:112px;
    height:112px;
    bottom:42px;
  }


  .ring-1{
    width:280px;
    height:68px;
  }

  .ring-2{
    width:210px;
    height:46px;
    bottom:94px;
  }

  .access-phone{
    width:210px;
    height:400px;
  }

  .access-heart-card{
    width:100px;
    height:130px;
  }

  .access-heart-card img{
    width:62px;
    height:62px;
  }

  .access-heart-card.left{left:0}
  .access-heart-card.right{right:0}

  .access-hero-ring{
    width:280px;
    height:68px;
    bottom:86px;
  }

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

.publications{
  padding-top:12px;
  padding-bottom:24px;
}

.publications-label{
  text-align:center;
  margin-bottom:10px;
}

.publication-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:28px;
}

.publication-card{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(10,18,34,.92), rgba(8,14,26,.92));
  box-shadow:var(--shadow);
}

.publication-image{
  aspect-ratio:16 / 10;
  overflow:hidden;
  border-bottom:1px solid rgba(167,208,255,.16);
  background:rgba(255,255,255,.02);
}

.publication-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.publication-copy{
  padding:22px;
}

.publication-copy h3{
  margin:0 0 10px;
  font-size:1.28rem;
  line-height:1.25;
  letter-spacing:-.03em;
}

.publication-meta{
  margin:0 0 12px;
  color:#9ec4ff;
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.publication-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.publications-sell{
  margin-top:24px;
  padding:22px 24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}

.publications-sell p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:1.02rem;
  text-align:center;
}

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

@media (max-width: 640px){
  .publication-copy{
    padding:18px;
  }

  .publication-copy h3{
    font-size:1.12rem;
  }

  .publication-meta{
    font-size:.84rem;
  }

  .publications-sell{
    padding:18px;
  }

  .publications-sell p{
    font-size:.96rem;
    line-height:1.7;
  }
}