:root{
  --bg:#090512;
  --bg-soft:#120a22;
  --bg-soft-2:#17102b;
  --panel:#160f28;
  --panel-2:#1f1536;
  --line:rgba(255,255,255,.08);
  --text:#f6f2ff;
  --muted:#b8add3;
  --muted-2:#998cb9;
  --primary:#8b5cf6;
  --primary-2:#6d28d9;
  --primary-3:#c4b5fd;
  --accent:#d8b4fe;
  --shadow:0 20px 60px rgba(0,0,0,.42);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --container:1240px;

  --topbar-height-desktop:92px;
  --topbar-height-mobile:78px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:120px;
}

body{
  margin:0;
  font-family:"Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(139,92,246,.12), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(216,180,254,.10), transparent 24%),
    linear-gradient(180deg, #0c0717 0%, #090512 100%);
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
  padding-top:0;
}

body.menu-open{
  overflow:hidden;
}

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

img,
svg{
  display:block;
  max-width:100%;
}

button,
input,
textarea,
select{
  font:inherit;
}

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

.page-glow{
  position:fixed;
  border-radius:999px;
  filter:blur(70px);
  pointer-events:none;
  z-index:0;
  opacity:.5;
}

.page-glow-1{
  width:280px;
  height:280px;
  background:rgba(139,92,246,.18);
  top:90px;
  left:-60px;
}

.page-glow-2{
  width:340px;
  height:340px;
  background:rgba(192,132,252,.10);
  top:300px;
  right:-100px;
}

.site-header{
  position:relative;
  z-index:5000;
}

main{
  position:relative;
  z-index:1;
}

.site-footer{
  position:relative;
  z-index:1;
}

.site-header{
  padding:calc(var(--topbar-height-desktop) + 28px) 0 80px;
  overflow:visible;
}

/* HEADER / MENIU FIX SUS PE TOT SITE-UL */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:var(--topbar-height-desktop);
  width:100%;
  max-width:none;
  padding:14px 16px;
  position:fixed;
  top:0;
  left:0;
  right:0;
  transform:none;
  z-index:6000;
  margin:0;
  background:rgba(9,5,18,1);
  border:none;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  transition:
    background .22s ease,
    box-shadow .22s ease,
    backdrop-filter .22s ease,
    -webkit-backdrop-filter .22s ease;
}

.topbar::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  background:rgba(255,255,255,.05);
  pointer-events:none;
}

.topbar.is-detached{
  background:rgba(9,5,18,.74);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 14px 34px rgba(0,0,0,.24);
}

.topbar-inner-spacer{
  display:none;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  position:relative;
  z-index:2;
}

.brand-icon{
  width:58px;
  height:58px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(139,92,246,.22), rgba(216,180,254,.12));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  flex-shrink:0;
}

.brand-icon svg{
  width:28px;
  height:28px;
  stroke:#fff;
  stroke-width:1.85;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.brand-kicker{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--primary-3);
  font-weight:600;
}

.brand-copy strong{
  font-size:19px;
  font-weight:900;
  line-height:1.1;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}

.main-nav a{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  transition:.2s ease;
}

.main-nav a:hover{
  color:#fff;
}

.topbar-actions{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  z-index:2;
}

.mobile-menu-toggle{
  display:none;
  width:52px;
  height:52px;
  border:none;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  cursor:pointer;
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  flex-shrink:0;
  position:relative;
  z-index:2;
}

.mobile-menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:.22s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2){
  opacity:0;
}

.mobile-menu-toggle.is-active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* MENIU MOBIL PESTE TOT */
.mobile-menu{
  display:none;
  width:100%;
  position:fixed;
  top:var(--topbar-height-desktop);
  left:0;
  right:0;
  transform:none;
  z-index:5999;
  margin:0;
}

.mobile-menu.open{
  display:block;
}

.mobile-menu-inner{
  width:100%;
  padding:20px 16px 22px;
  border-radius:0;
  background:rgba(9,5,18,.78);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:none;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}

.mobile-nav{
  display:grid;
  gap:10px;
}

.mobile-nav a{
  display:flex;
  align-items:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
  color:#f2ecff;
  font-size:15px;
  font-weight:700;
}

.mobile-menu-actions{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  cursor:pointer;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  padding:14px 22px;
  transition:.22s ease;
  white-space:nowrap;
}

.btn-large{
  padding:16px 26px;
  font-size:15px;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  color:#fff;
  box-shadow:0 16px 36px rgba(109,40,217,.38);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 42px rgba(109,40,217,.48);
}

.btn-secondary{
  background:rgba(255,255,255,.05);
  color:var(--text);
  border:1px solid var(--line);
}

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

.full{
  width:100%;
}

.hero{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) minmax(340px, .82fr);
  gap:28px;
  align-items:stretch;
}

.hero-copy{
  padding-top:18px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding:10px 14px;
  background:rgba(139,92,246,.12);
  border:1px solid rgba(196,181,253,.18);
  color:#dfd2ff;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.eyebrow-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg, #e9d5ff, #8b5cf6);
  box-shadow:0 0 0 6px rgba(216,180,254,.08);
}

.hero h1{
  margin:0;
  font-size:clamp(36px, 5vw, 66px);
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:900;
  max-width:900px;
}

.hero h1 span{
  color:#ceb7ff;
}

.hero-description{
  margin:22px 0 0;
  max-width:780px;
  color:var(--muted);
  font-size:18px;
  line-height:1.78;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:30px;
}

.stat-card{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.stat-number{
  font-size:24px;
  font-weight:900;
  color:#fff;
  line-height:1;
  margin-bottom:8px;
}

.stat-label{
  font-size:13px;
  color:var(--muted);
  line-height:1.5;
}

.hero-panel{
  position:relative;
  padding:28px;
  border-radius:var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(139,92,246,.18), rgba(109,40,217,.10));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-panel::before{
  content:"";
  position:absolute;
  top:-100px;
  right:-100px;
  width:240px;
  height:240px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.10), transparent 66%);
  pointer-events:none;
}

.panel-icon{
  width:78px;
  height:78px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(139,92,246,.30), rgba(216,180,254,.16));
  border:1px solid rgba(255,255,255,.10);
  margin-bottom:18px;
}

.panel-icon svg{
  width:40px;
  height:40px;
  stroke:#fff;
  stroke-width:1.85;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.hero-panel h2{
  margin:0 0 12px;
  font-size:30px;
  line-height:1.1;
  letter-spacing:-.02em;
  font-weight:900;
}

.hero-panel p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.76;
}

.feature-list{
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.feature-list li{
  position:relative;
  padding:14px 16px 14px 42px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.07);
  color:#efe8ff;
  font-size:14px;
  line-height:1.55;
}

.feature-list li::before{
  content:"";
  position:absolute;
  top:19px;
  left:16px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow:0 0 0 5px rgba(216,180,254,.08);
}

.section{
  padding:78px 0;
}

section[id],
div[id],
article[id]{
  scroll-margin-top:120px;
}

.alt-section{
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}

.section-head{
  max-width:900px;
  margin-bottom:28px;
}

.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--primary-3);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.section-head h2{
  margin:0;
  font-size:clamp(30px, 4vw, 48px);
  line-height:1.06;
  letter-spacing:-.03em;
  font-weight:900;
}

.section-head p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.78;
}

.grid{
  display:grid;
  gap:20px;
}

.grid-3{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.grid-4{
  grid-template-columns:repeat(4, minmax(0,1fr));
}

.info-card,
.resource-card,
.psych-card{
  border-radius:24px;
  padding:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.quick-entry-section{
  padding-top:52px;
}

.quick-entry-shell{
  position:relative;
  border-radius:36px;
  padding:34px;
  background:
    radial-gradient(circle at top left, rgba(139,92,246,.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  overflow:hidden;
}

.quick-entry-shell::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:260px;
  height:260px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(216,180,254,.10), transparent 68%);
  pointer-events:none;
}

.quick-entry-head{
  max-width:760px;
  margin:0 auto 30px;
  position:relative;
  z-index:1;
}

.quick-entry-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
  align-items:stretch;
  position:relative;
  z-index:1;
}

.entry-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  border-radius:28px;
  padding:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025)),
    rgba(18,10,34,.72);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.entry-card:hover{
  transform:translateY(-4px);
  border-color:rgba(196,181,253,.22);
  box-shadow:0 24px 50px rgba(0,0,0,.30);
}

.entry-card-primary{
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    linear-gradient(180deg, rgba(139,92,246,.22), rgba(109,40,217,.10));
  border-color:rgba(196,181,253,.22);
}

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

.entry-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(139,92,246,.20), rgba(216,180,254,.12));
  border:1px solid rgba(255,255,255,.08);
  flex-shrink:0;
}

.entry-icon svg{
  width:26px;
  height:26px;
  stroke:#fff;
  stroke-width:1.9;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.entry-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(139,92,246,.16);
  border:1px solid rgba(196,181,253,.18);
  color:#efe8ff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}

.entry-badge.muted{
  background:rgba(255,255,255,.06);
  color:#ddd1ff;
  border-color:rgba(255,255,255,.08);
}

.entry-card-body{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

.entry-card h3{
  margin:0 0 12px;
  font-size:26px;
  line-height:1.12;
  font-weight:900;
  letter-spacing:-.02em;
}

.entry-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.74;
}

.entry-card-actions{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}

.entry-card-actions .btn{
  min-height:52px;
}

.entry-card h3,
.info-card h3,
.resource-card h3,
.psych-card h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
  font-weight:900;
}

.entry-card p,
.info-card p,
.resource-card p,
.psych-card p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:15px;
  line-height:1.72;
}

.assessment-box{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(340px,.8fr);
  gap:24px;
  align-items:stretch;
  border-radius:32px;
  padding:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(139,92,246,.10), rgba(109,40,217,.05));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.assessment-copy h2{
  margin:0;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:900;
}

.assessment-copy p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}

.mini-points{
  margin-top:22px;
  display:grid;
  gap:12px;
}

.mini-point{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:#f1ebff;
  font-size:14px;
  line-height:1.55;
}

.assessment-panel{
  border-radius:24px;
  padding:22px;
  background:rgba(8,5,16,.42);
  border:1px solid rgba(255,255,255,.07);
}

.question-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.question-item:last-of-type{
  margin-bottom:20px;
}

.question-item span{
  width:30px;
  height:30px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(139,92,246,.16);
  color:#fff;
  font-size:13px;
  font-weight:900;
  flex-shrink:0;
}

.question-item p{
  margin:0;
  color:#eee7ff;
  font-size:14px;
  line-height:1.6;
}

.info-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(139,92,246,.16);
  border:1px solid rgba(196,181,253,.18);
  margin-bottom:16px;
}

.info-icon svg{
  width:24px;
  height:24px;
  stroke:#fff;
  stroke-width:1.85;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.report-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.85fr);
  gap:24px;
  align-items:stretch;
}

.report-copy h2{
  margin:0;
  font-size:42px;
  line-height:1.06;
  letter-spacing:-.03em;
  font-weight:900;
}

.report-copy p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}

.signal-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}

.signal-points div{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:#f1ebff;
  font-size:14px;
  line-height:1.5;
}

.report-form-shell{
  border-radius:28px;
  padding:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(139,92,246,.12), rgba(109,40,217,.05));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.signal-form{
  display:grid;
  gap:16px;
}

.form-row{
  display:grid;
  gap:8px;
}

.form-row label{
  color:#ece5ff;
  font-size:14px;
  font-weight:700;
}

.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(8,5,16,.52);
  color:#fff;
  padding:15px 16px;
  outline:none;
}

.form-row input::placeholder,
.form-row textarea::placeholder{
  color:#9e92bd;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  border-color:rgba(196,181,253,.34);
  box-shadow:0 0 0 4px rgba(139,92,246,.10);
}

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

.psych-avatar{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(139,92,246,.24), rgba(216,180,254,.14));
  border:1px solid var(--line);
  color:#fff;
  font-size:20px;
  font-weight:900;
  flex-shrink:0;
}

.psych-role{
  color:#d8c9ff;
  font-size:14px;
  font-weight:700;
}

.psych-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:10px;
}

.psych-list li{
  position:relative;
  padding-left:22px;
  color:#efe9ff;
  font-size:14px;
  line-height:1.55;
}

.psych-list li::before{
  content:"";
  position:absolute;
  top:8px;
  left:0;
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--primary));
}

.text-link{
  display:inline-flex;
  margin-top:8px;
  color:#e5d7ff;
  font-weight:800;
  font-size:14px;
}

.cta-box{
  border-radius:32px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(139,92,246,.16), rgba(109,40,217,.08));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.cta-copy{
  max-width:760px;
}

.cta-copy h2{
  margin:0;
  font-size:38px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:900;
}

.cta-copy p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.78;
}

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

.site-footer{
  padding:28px 0 36px;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer-inner strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

.footer-inner p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.footer-links a{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.footer-links a:hover{
  color:#fff;
}

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

  .grid-4{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .quick-entry-grid{
    grid-template-columns:1fr;
  }

  .report-layout,
  .assessment-box{
    grid-template-columns:1fr;
  }

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

@media (max-width: 980px){
  .desktop-nav,
  .desktop-actions{
    display:none;
  }

  .mobile-menu-toggle{
    display:flex;
  }

  .grid-3,
  .signal-points,
  .hero-stats{
    grid-template-columns:1fr;
  }

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

@media (max-width: 760px){
  html{
    scroll-padding-top:104px;
  }

  .container{
    width:min(100% - 22px, var(--container));
  }

  .site-header{
    padding:calc(var(--topbar-height-mobile) + 22px) 0 58px;
  }

  .topbar{
    min-height:var(--topbar-height-mobile);
    padding:12px 11px;
  }

  .mobile-menu{
    top:var(--topbar-height-mobile);
  }

  .mobile-menu-inner{
    padding:16px 11px 18px;
  }

  .brand-icon{
    width:50px;
    height:50px;
    border-radius:18px;
  }

  .brand-copy strong{
    font-size:17px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero-description,
  .section-head p,
  .cta-copy p,
  .assessment-copy p,
  .report-copy p{
    font-size:15px;
    line-height:1.72;
  }

  .hero-panel,
  .assessment-box,
  .report-form-shell,
  .cta-box,
  .entry-card,
  .info-card,
  .resource-card,
  .psych-card{
    padding:22px;
  }

  .quick-entry-section{
    padding-top:40px;
  }

  .quick-entry-shell{
    padding:20px;
    border-radius:26px;
  }

  .quick-entry-head{
    margin-bottom:22px;
  }

  .entry-card{
    padding:18px;
    border-radius:22px;
  }

  .entry-card-top{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
    margin-bottom:14px;
  }

  .entry-icon{
    width:52px;
    height:52px;
    border-radius:16px;
  }

  .entry-card h3{
    font-size:22px;
  }

  .entry-card p{
    font-size:14px;
    line-height:1.66;
  }

  .entry-card-actions{
    margin-top:18px;
    padding-top:16px;
  }

  .entry-card-actions .btn{
    min-height:50px;
    width:100%;
  }

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

  .assessment-copy h2,
  .report-copy h2,
  .cta-copy h2{
    font-size:30px;
  }

  .hero-actions,
  .cta-actions{
    display:grid;
    width:100%;
  }

  .hero-actions .btn,
  .cta-actions .btn{
    width:100%;
  }

  section[id],
  div[id],
  article[id]{
    scroll-margin-top:104px;
  }
}

.quick-entry-section,
.quick-entry-shell,
.quick-entry-grid,
.entry-card,
.assessment-box,
.report-layout,
.report-form-shell,
.cta-box,
.hero,
.hero-panel,
.info-card,
.resource-card,
.psych-card{
  position:relative;
  z-index:1;
}