/* Antiwhelm umbrella — layout + components (calm base, opt-in glow) */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

/* ambient calm wash behind everything */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 18% 0%, rgba(56,189,248,0.06), transparent 70%),
    radial-gradient(50% 45% at 100% 100%, rgba(255,46,196,0.05), transparent 70%);
}

/* ---------- App shell: side panel + canvas ---------- */
.aw-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }

.aw-side {
  position: sticky; top: 0; height: 100vh;
  border-right: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
  display: flex; flex-direction: column; padding: 22px 16px;
}
.aw-brand { display: flex; align-items: center; gap: 10px; padding: 6px 8px 14px; }
.aw-brand:hover .aw-mark { transform: rotate(-8deg) scale(1.05); }
.aw-brand .aw-mark { transition: transform .2s var(--ease); }
/* "back to antiwhelm" parent crumb — the way home from any brand */
.aw-parent { display:inline-flex; align-items:center; gap:7px; margin: 0 8px 18px;
  font-size: var(--text-xs); color: var(--text-muted); font-weight:600; letter-spacing:.02em;
  border:1px solid var(--border); border-radius:99px; padding:5px 11px; width:max-content;
  transition: border-color .18s var(--ease), color .18s var(--ease); }
.aw-parent:hover { border-color: var(--accent); color: var(--text); }
.aw-parent .aw-a { width:6px;height:6px;border-radius:2px;background:var(--accent); }
.aw-brand .aw-mark {
  width: 28px; height: 28px; border-radius: 9px;
  background: conic-gradient(from 210deg, #38bdf8, #7fb89a, #f5b042, #ff2ec4, #38bdf8);
}
.aw-brand .aw-name { font-weight: 650; letter-spacing: -0.01em; font-size: var(--text-md); }
.aw-brand .aw-name span { color: var(--text-muted); font-weight: 500; }
/* gradient mark is the antiwhelm logo (see rule above) */

.aw-nav { display: flex; flex-direction: column; gap: 2px; }
/* Atla-style grouped nav with light dividers between sections */
.aw-nav-group { display:flex; flex-direction:column; gap:2px; padding-top: 10px; margin-top: 8px; border-top: 1px solid var(--border); }
.aw-nav-group:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.aw-nav-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); padding: 4px 11px 6px; }
.aw-nav a {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 11px; border-radius: 10px;
  color: var(--text-soft); font-size: var(--text-sm); font-weight: 500;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.aw-nav a .aw-dot { width: 7px; height: 7px; border-radius: 99px; background: var(--accent); flex: none; }
.aw-nav a:hover { background: var(--bg-card-hover); color: var(--text); }
.aw-nav a.active { background: var(--accent-soft); color: var(--text); }

.aw-side .aw-spacer { flex: 1; }
.aw-signin { display:block; text-align:center; font-size: var(--text-sm); font-weight:600;
  color: var(--text); border:1px solid var(--border-strong); border-radius: 11px;
  padding: 10px 12px; margin-bottom: 10px; transition: border-color .18s var(--ease), background .18s; }
.aw-signin:hover { border-color: var(--accent); background: var(--accent-soft); }
.aw-ask {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-strong); border-radius: 12px;
  padding: 11px 13px; color: var(--text-soft); font-size: var(--text-sm);
  background: var(--bg-card); cursor: text;
  transition: border-color .18s var(--ease);
}
.aw-ask:hover { border-color: var(--accent); }
.aw-ask .aw-k { margin-left: auto; font-size: var(--text-xs); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 6px; padding: 1px 6px; }

/* ---------- Canvas ---------- */
.aw-canvas { padding: clamp(28px, 5vw, 72px); max-width: 1180px; }

.aw-hero { padding: 36px 0 12px; max-width: 760px; }
.aw-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); color: var(--text-soft);
  border: 1px solid var(--border); border-radius: 99px; padding: 5px 12px; margin-bottom: 22px;
}
.aw-eyebrow .aw-pulse { width: 7px; height: 7px; border-radius: 99px; background: #7fb89a;
  box-shadow: 0 0 0 0 rgba(127,184,154,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(127,184,154,.5)} 70%{box-shadow:0 0 0 8px rgba(127,184,154,0)} 100%{box-shadow:0 0 0 0 rgba(127,184,154,0)} }

.aw-hero h1 {
  font-size: var(--text-hero); line-height: 1.02; letter-spacing: -0.03em; font-weight: 660;
}
.aw-hero h1 em { font-style: normal; color: var(--text-muted); }
.aw-hero p { margin-top: 18px; font-size: var(--text-lg); color: var(--text-soft); max-width: 620px; }

.aw-hero-cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.aw-btn { font-size: var(--text-sm); font-weight: 600; padding: 11px 18px; border-radius: 11px; transition: transform .15s var(--ease), filter .18s, background .18s; }
/* primary CTA = the brand/logo accent color (yellow on Imprint, coral on Life Reports, etc.) */
.aw-btn.aw-primary { background: var(--accent); color: #0a0b0d; }
.aw-btn.aw-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
/* cream variant kept for when a neutral button is wanted */
.aw-btn.aw-cream { background: var(--text); color: #07080c; }
.aw-btn.aw-ghost { border: 1px solid var(--border-strong); color: var(--text-soft); }
.aw-btn.aw-ghost:hover { border-color: var(--text-soft); color: var(--text); }

.aw-hero .aw-creed { margin-top: 16px; font-size: var(--text-md); color: var(--accent); font-weight: 560; }

/* section headers for list/library views */
.aw-sec-head { margin-top: 56px; display:flex; align-items:baseline; gap: 16px; flex-wrap:wrap; }
.aw-sec-head h2 { font-size: var(--text-xl); letter-spacing:-0.02em; font-weight: 620; }
.aw-sec-head p { color: var(--text-muted); font-size: var(--text-sm); }
.aw-grid.aw-lib { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px){ .aw-grid.aw-lib { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 720px){ .aw-grid.aw-lib { grid-template-columns: 1fr; } }

/* ---------- Bento of the four buckets ---------- */
.aw-grid {
  margin-top: 48px; display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.aw-card {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); padding: 26px; min-height: 200px;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.aw-card::after { /* accent corner wash */
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.0;
  background: radial-gradient(90% 80% at 100% 0%, var(--accent-soft), transparent 60%);
  transition: opacity .25s var(--ease);
}
.aw-card:hover {
  transform: translateY(-3px); border-color: var(--accent);
  background: var(--bg-card-hover); box-shadow: var(--glow);
}
.aw-card:hover::after { opacity: 1; }

.aw-card .aw-tag { display:inline-flex; align-items:center; gap:8px; font-size: var(--text-xs);
  color: var(--accent); font-weight: 600; letter-spacing:.02em; }
.aw-card .aw-tag .aw-sq { width: 8px; height: 8px; border-radius: 3px; background: var(--accent); }
.aw-card h3 { margin-top: 14px; font-size: var(--text-xl); letter-spacing:-0.02em; font-weight: 620; }
.aw-card p { margin-top: 8px; color: var(--text-soft); font-size: var(--text-sm); max-width: 38ch; }
.aw-card .aw-brands { margin-top: auto; padding-top: 18px; display:flex; flex-wrap:wrap; gap:7px; }
.aw-card .aw-chip { font-size: var(--text-xs); color: var(--text-soft);
  border:1px solid var(--border-strong); border-radius: 99px; padding: 4px 10px; }
.aw-card .aw-go { position:absolute; top: 24px; right: 24px; color: var(--text-muted); transition: color .2s, transform .2s var(--ease); }
.aw-card:hover .aw-go { color: var(--accent); transform: translate(2px,-2px); }

/* products spans wide for rhythm */
.aw-card.aw-wide { grid-column: 1 / -1; min-height: 150px; flex-direction: row; align-items:center; gap: 28px; }
.aw-card.aw-wide .aw-body { flex: 1; }
.aw-card.aw-wide .aw-brands { margin: 0; }

/* ---------- breadcrumb ---------- */
.aw-crumb { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 8px; }
.aw-crumb a:hover { color: var(--accent); }
.aw-crumb span { color: var(--text-soft); }

/* ---------- product family (the repeatable topic format) ---------- */
.aw-products { margin-top: 18px; display:flex; flex-direction:column; gap: 12px; }
.aw-product { display:grid; grid-template-columns: 76px 1fr auto; align-items:center; gap: 22px;
  border:1px solid var(--border); border-radius: var(--radius); background: var(--bg-card);
  padding: 20px 24px; transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease); }
.aw-product:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--glow); }
.aw-product .aw-thumb { width:76px; height:76px; border-radius: 14px; display:grid; place-items:center;
  font-size: 30px; background: var(--accent-soft); border:1px solid var(--border); }
.aw-product .aw-tag { display:inline-flex; align-items:center; gap:8px; font-size: var(--text-xs);
  color: var(--accent); font-weight:600; letter-spacing:.02em; }
.aw-product .aw-tag .aw-sq { width:8px;height:8px;border-radius:3px;background:var(--accent); }
.aw-product h3 { margin-top:7px; font-size: var(--text-lg); letter-spacing:-0.015em; font-weight: 600; }
.aw-product p { margin-top:5px; color: var(--text-soft); font-size: var(--text-sm); max-width: 56ch; }
.aw-product .aw-meta { margin-top:10px; display:flex; gap:8px; flex-wrap:wrap; }
.aw-product .aw-meta span { font-size: var(--text-xs); color: var(--text-muted);
  border:1px solid var(--border-strong); border-radius:99px; padding:3px 9px; }
.aw-product .aw-buy { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.aw-product .aw-price { font-size: var(--text-lg); font-weight: 650; letter-spacing:-0.02em; }
.aw-product.aw-bundle { background: linear-gradient(180deg, var(--accent-soft), var(--bg-card)); border-color: var(--accent); }
@media (max-width: 720px){
  .aw-product { grid-template-columns: 1fr; text-align:left; }
  .aw-product .aw-buy { flex-direction:row; align-items:center; }
}

/* ---------- Manifesto (the About voice) ---------- */
.aw-manifesto { margin-top: 56px; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elevated)); padding: clamp(28px,4vw,48px); }
.aw-manifesto .aw-tag { display:inline-flex; align-items:center; gap:8px; font-size: var(--text-xs);
  color: var(--accent); font-weight:600; letter-spacing:.02em; }
.aw-manifesto .aw-tag .aw-sq { width:8px; height:8px; border-radius:3px; background: var(--accent); }
.aw-manifesto ul { list-style:none; margin-top: 22px; display:flex; flex-direction:column; gap: 12px; }
.aw-manifesto li { font-size: clamp(22px, 3vw, 32px); line-height:1.1; letter-spacing:-0.025em; font-weight: 580; color: var(--text-soft); }
.aw-manifesto li.aw-lead { color: var(--text); }
.aw-manifesto li.aw-lead em { font-style:normal; color: var(--accent); }

.aw-foot { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--border);
  display:flex; justify-content:space-between; color: var(--text-muted); font-size: var(--text-xs); flex-wrap:wrap; gap:10px; }

/* ---------- Featured book hero (Habits flagship) ---------- */
.aw-feature { position:relative; overflow:hidden; margin-top: 28px;
  border:1px solid var(--accent); border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-card) 60%);
  display:grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 32px; align-items:center; }
.aw-feature .aw-cover { width:200px; height:260px; border-radius: 12px; background:#000;
  border:1px solid var(--border-strong); display:grid; place-items:center; color:#fff;
  font: 800 22px/1.1 var(--font); letter-spacing:-0.03em; text-align:center; padding:20px; box-shadow: var(--glow); }
.aw-feature .aw-kick { font-size: var(--text-xs); letter-spacing:.16em; text-transform:uppercase; color: var(--accent); font-weight:700; }
.aw-feature h2 { margin-top:10px; font-size: clamp(28px,4vw,44px); letter-spacing:-0.03em; line-height:1.02; font-weight:640; }
.aw-feature p { margin-top:12px; color: var(--text-soft); font-size: var(--text-md); max-width: 54ch; }
.aw-feature .aw-hero-cta { margin-top: 20px; }
@media (max-width: 720px){ .aw-feature { grid-template-columns: 1fr; } .aw-feature .aw-cover { width:100%; height:200px; } }

/* ---------- 12 habits grid ---------- */
.aw-habits12 { margin-top: 18px; display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width:1100px){ .aw-habits12 { grid-template-columns: repeat(3,1fr);} }
@media (max-width:720px){ .aw-habits12 { grid-template-columns: repeat(2,1fr);} }
.aw-habit { position:relative; border:1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); padding: 18px; min-height: 132px; display:flex; flex-direction:column;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease); }
.aw-habit:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--bg-card-hover); }
.aw-habit .aw-num { font: 700 11px/1 var(--font); color: var(--text-muted); letter-spacing:.1em; }
.aw-habit h4 { margin-top: 10px; font-size: var(--text-lg); letter-spacing:-0.02em; font-weight:600; }
.aw-habit .aw-fam { margin-top:auto; padding-top:12px; font-size: var(--text-xs); color: var(--text-muted); }
.aw-habit.aw-soon { opacity: .62; }
.aw-habit.aw-soon h4 { color: var(--text-soft); }
.aw-habit .aw-live { position:absolute; top:16px; right:16px; font-size:10px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color: var(--accent); }

/* ---------- About (trillion-dollar) ---------- */
.aw-about-hero { padding: 40px 0 8px; max-width: 880px; }
.aw-about-hero h1 { font-size: clamp(40px,6vw,76px); line-height:1.0; letter-spacing:-0.035em; font-weight:650; }
.aw-about-hero p { margin-top:20px; font-size: var(--text-lg); color: var(--text-soft); max-width: 680px; }
.aw-stats { margin-top: 44px; display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.aw-stat { border:1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); padding: 22px; }
.aw-stat .aw-n { font-size: clamp(30px,4vw,44px); font-weight:680; letter-spacing:-0.03em; }
.aw-stat .aw-l { margin-top:6px; color: var(--text-muted); font-size: var(--text-sm); }
@media (max-width:720px){ .aw-stats { grid-template-columns: repeat(2,1fr);} }

.aw-founder { margin-top: 56px; display:grid; grid-template-columns: 280px 1fr; gap: 36px;
  border-top:1px solid var(--border); padding-top: 48px; align-items:start; }
.aw-founder .aw-photo { width:280px; height:340px; border-radius: var(--radius); overflow:hidden;
  background: linear-gradient(160deg, var(--bg-card-hover), var(--bg-elevated));
  border:1px solid var(--border-strong); display:grid; place-items:center; color: var(--text-muted);
  font-size: var(--text-sm); }
.aw-founder .aw-photo img { width:100%; height:100%; object-fit:cover; }
.aw-founder .aw-ftag { font-size: var(--text-xs); letter-spacing:.16em; text-transform:uppercase; color: var(--accent); font-weight:700; }
.aw-founder h2 { margin-top:10px; font-size: clamp(26px,3.4vw,40px); letter-spacing:-0.025em; font-weight:640; }
.aw-founder .aw-bio { margin-top:16px; color: var(--text-soft); font-size: var(--text-md); max-width: 60ch; }
.aw-founder .aw-bio p { margin-bottom: 14px; }
.aw-founder .aw-links { margin-top: 20px; display:flex; gap:10px; flex-wrap:wrap; }
@media (max-width:760px){ .aw-founder { grid-template-columns: 1fr; } .aw-founder .aw-photo { width:100%; height:300px; } }

/* ---------- Membership / pricing (better than Apple) ---------- */
.aw-pillars { margin-top: 22px; display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
@media (max-width:900px){ .aw-pillars { grid-template-columns: repeat(2,1fr);} }
.aw-pillar { border:1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); padding: 22px; }
.aw-pillar .aw-ic { font-size: 22px; }
.aw-pillar h3 { margin-top:12px; font-size: var(--text-lg); letter-spacing:-0.015em; font-weight:600; }
.aw-pillar p { margin-top:7px; color: var(--text-soft); font-size: var(--text-sm); }

.aw-tiers { margin-top: 22px; display:grid; grid-template-columns: repeat(3,1fr); gap:16px; align-items:start; }
@media (max-width:900px){ .aw-tiers { grid-template-columns: 1fr; } }
.aw-tier { border:1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); padding: 26px; display:flex; flex-direction:column; }
.aw-tier.aw-best { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--bg-card)); box-shadow: var(--glow); }
.aw-tier .badge { align-self:flex-start; font-size:10px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color: var(--accent); border:1px solid var(--accent); border-radius:99px; padding:3px 10px; margin-bottom:14px; }
.aw-tier h3 { font-size: var(--text-xl); letter-spacing:-0.02em; font-weight:640; }
.aw-tier .aw-price { margin-top:10px; font-size: clamp(30px,4vw,40px); font-weight:680; letter-spacing:-0.03em; }
.aw-tier .aw-price small { font-size: var(--text-sm); color: var(--text-muted); font-weight:500; }
.aw-tier .aw-desc { margin-top:8px; color: var(--text-soft); font-size: var(--text-sm); }
.aw-tier ul { list-style:none; margin-top:18px; display:flex; flex-direction:column; gap:10px; }
.aw-tier li { font-size: var(--text-sm); color: var(--text-soft); display:flex; gap:9px; align-items:flex-start; }
.aw-tier li::before { content:"✓"; color: var(--accent); font-weight:700; }
.aw-tier .aw-btn { margin-top: 22px; text-align:center; }
.aw-tier .aw-note { margin-top:12px; font-size: var(--text-xs); color: var(--text-muted); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .aw-shell { grid-template-columns: 1fr; }
  .aw-side { position: static; height: auto; flex-direction: row; align-items:center; gap: 14px; overflow-x:auto; }
  .aw-side .aw-brand { padding: 6px 4px; }
  .aw-side .aw-nav { flex-direction: row; }
  .aw-side .aw-spacer, .aw-side .aw-ask { display:none; }
  .aw-grid { grid-template-columns: 1fr; }
  .aw-card.aw-wide { flex-direction: column; align-items: flex-start; }
}

/* ====================================================================
 * SHELL v2 CHROME — matches Atla: top bar · colored left bar ·
 * profile + settings dropdown (org + light/dark) · footer.
 * Frame: .aw-shell > .aw-side + .aw-main(>.aw-topbar + .aw-content).
 * (.aw-canvas kept as a padded back-compat content area.)
 * ==================================================================== */

/* colored accent bar down the left edge of the sidebar (per product) */
.aw-side { position: sticky; }
.aw-side::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px;
  background: var(--accent); opacity:.9; }

/* main column + top bar */
.aw-main { display:flex; flex-direction:column; min-width:0; min-height:100vh; }
.aw-topbar { position: sticky; top:0; z-index:6; display:flex; align-items:center;
  justify-content:space-between; gap:16px; height:56px; padding:0 clamp(16px,3vw,32px);
  border-bottom:1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 80%, transparent); backdrop-filter: blur(10px); }
.aw-topbar .aw-title { font-size: var(--text-md); font-weight:600; letter-spacing:-0.01em; color: var(--text); }
.aw-topbar .aw-title small { color: var(--text-muted); font-weight:500; margin-left:8px; }
.aw-topbar-right { display:flex; align-items:center; gap:10px; }
.aw-content { padding: clamp(28px,5vw,72px); max-width:1180px; width:100%; }

/* profile + settings at the bottom of the sidebar */
.aw-userbar { position: relative; display:flex; align-items:center; gap:10px;
  margin-top:10px; padding:10px 8px; border-top:1px solid var(--border); }
.aw-avatar { width:30px; height:30px; border-radius:8px; flex:none; display:grid; place-items:center;
  color:#fff; font:700 12px/1 var(--font); background: var(--accent); }
.aw-userbar .who { min-width:0; line-height:1.2; }
.aw-userbar .who .nm { font-size: var(--text-sm); font-weight:600; color:var(--text);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.aw-userbar .who .em { font-size: var(--text-xs); color:var(--text-muted);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.aw-gear { margin-left:auto; width:28px; height:28px; flex:none; border-radius:8px; border:1px solid var(--border);
  background:transparent; color:var(--text-muted); cursor:pointer; display:grid; place-items:center;
  transition: border-color .15s var(--ease), color .15s var(--ease); font-size:14px; }
.aw-gear:hover { border-color: var(--accent); color: var(--text); }

/* settings dropdown (org · light/dark · sign out) */
.aw-settings-menu { position:absolute; bottom:54px; right:8px; left:8px; z-index:30;
  background: var(--bg-card); border:1px solid var(--border-strong); border-radius:12px;
  padding:6px; box-shadow:0 12px 40px rgba(0,0,0,.45); display:none; }
.aw-settings-menu.open { display:block; }
.aw-settings-menu .lbl { font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-muted); padding:8px 10px 4px; }
.aw-settings-menu .row { display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:9px 10px; border-radius:8px; font-size:var(--text-sm); color:var(--text-soft); cursor:pointer; }
.aw-settings-menu .row:hover { background: var(--bg-card-hover); color:var(--text); }
.aw-settings-menu .row .org { display:flex; align-items:center; gap:8px; color:var(--text); font-weight:500; }
.aw-settings-menu .row .org .b { width:18px;height:18px;border-radius:5px;background:var(--accent); }
.aw-settings-menu .sep { height:1px; background:var(--border); margin:4px 6px; }
.aw-switch { width:38px; height:22px; border-radius:99px; background:var(--border-strong); position:relative; flex:none; transition:background .18s; }
.aw-switch::after { content:""; position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%;
  background:#fff; transition:transform .18s var(--ease); }
[data-theme="light"] .aw-switch { background: var(--accent); }
[data-theme="light"] .aw-switch::after { transform: translateX(16px); }

/* footer that matches across sites */
.aw-shell .aw-foot { padding: 22px clamp(28px,5vw,72px); margin-top:auto; }

/* ====================================================================
 * LANDING / FUNNEL MODE — focused, conversion-optimized pages.
 * No left rail. Slim top bar (logo + ONE cta). One goal per page.
 * Reuses aw- tokens so it stays on-brand with the shell sites.
 * ==================================================================== */
.aw-page { min-height:100vh; }
.aw-navbar { position:sticky; top:0; z-index:20; display:flex; align-items:center; justify-content:space-between;
  height:60px; padding:0 clamp(16px,4vw,40px); border-bottom:1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(10px); }
.aw-navbar .aw-brand { padding:0; }
.aw-navbar nav { display:flex; gap:6px; align-items:center; }
.aw-navbar nav a.link { font-size:var(--text-sm); color:var(--text-soft); padding:8px 12px; border-radius:9px; }
.aw-navbar nav a.link:hover { color:var(--text); background:var(--bg-card-hover); }
@media (max-width:640px){ .aw-navbar nav .link { display:none; } }

.aw-wrap { max-width:1080px; margin:0 auto; padding:0 clamp(16px,4vw,32px); }
.aw-lhero { text-align:center; padding: clamp(48px,9vw,104px) 0 clamp(28px,5vw,56px); }
.aw-lhero h1 { font-size: clamp(36px,6.5vw,68px); line-height:1.03; letter-spacing:-0.035em; font-weight:680; max-width:18ch; margin:0 auto; }
.aw-lhero p.sub { margin:20px auto 0; font-size:var(--text-lg); color:var(--text-soft); max-width:54ch; }
.aw-lcta { margin-top:30px; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.aw-btn.aw-lg { padding:15px 28px; font-size:var(--text-md); border-radius:13px; }
.aw-trust { margin-top:22px; display:flex; gap:18px; justify-content:center; align-items:center; flex-wrap:wrap;
  color:var(--text-muted); font-size:var(--text-sm); }
.aw-trust .stars { color:var(--accent); letter-spacing:2px; }
.aw-shot { margin:40px auto 0; max-width:920px; border:1px solid var(--border-strong); border-radius:18px;
  overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,.45); }
.aw-shot img { width:100%; display:block; }

.aw-logos { display:flex; gap:30px; justify-content:center; align-items:center; flex-wrap:wrap;
  padding:28px 0; opacity:.7; color:var(--text-muted); font-size:var(--text-sm); font-weight:600; }

.aw-section { padding: clamp(48px,8vw,88px) 0; border-top:1px solid var(--border); }
.aw-section.center { text-align:center; }
.aw-section h2 { font-size: clamp(26px,4vw,40px); letter-spacing:-0.03em; font-weight:640; }
.aw-section .lede { margin-top:12px; color:var(--text-soft); font-size:var(--text-md); max-width:60ch; }
.aw-section.center .lede { margin-left:auto; margin-right:auto; }

/* big repeated CTA block */
.aw-cta-big { text-align:center; border:1px solid var(--accent); border-radius:var(--radius);
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-card)); padding: clamp(36px,6vw,64px); box-shadow:var(--glow); }
.aw-cta-big h2 { font-size:clamp(28px,4.5vw,46px); letter-spacing:-0.03em; font-weight:660; }
.aw-cta-big p { margin-top:10px; color:var(--text-soft); }
.aw-cta-big .aw-lcta { margin-top:24px; }
.aw-reassure { margin-top:14px; font-size:var(--text-sm); color:var(--text-muted); }

/* FAQ (objection handling) */
.aw-faq { max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:10px; }
.aw-faq details { border:1px solid var(--border); border-radius:12px; background:var(--bg-card); padding:16px 18px; }
.aw-faq summary { cursor:pointer; font-weight:600; font-size:var(--text-md); list-style:none; }
.aw-faq summary::-webkit-details-marker { display:none; }
.aw-faq details[open] summary { color:var(--accent); }
.aw-faq p { margin-top:10px; color:var(--text-soft); font-size:var(--text-sm); }

/* testimonials */
.aw-testi { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media (max-width:820px){ .aw-testi { grid-template-columns:1fr; } }
.aw-quote { border:1px solid var(--border); border-radius:var(--radius); background:var(--bg-card); padding:22px; }
.aw-quote p { font-size:var(--text-md); color:var(--text); }
.aw-quote .by { margin-top:14px; font-size:var(--text-sm); color:var(--text-muted); }

/* native promo / sponsor slot (e.g. inside whatdeployed) — on-brand, not garish */
.aw-promo { display:flex; gap:16px; align-items:center; border:1px dashed var(--border-strong);
  border-radius:var(--radius); background:var(--accent-soft); padding:18px 20px; }
.aw-promo .badge { font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--text-muted);
  border:1px solid var(--border-strong); border-radius:99px; padding:3px 8px; flex:none; }
.aw-promo .body { flex:1; min-width:0; }
.aw-promo h4 { font-size:var(--text-md); font-weight:650; }
.aw-promo p { margin-top:3px; font-size:var(--text-sm); color:var(--text-soft); }

/* letter-block product logo (e.g. Atla blue "A", Imprint yellow "i").
   Uses the site accent as the block color; set data-letter on the mark. */
.aw-mark.aw-letter { background: var(--accent); display:grid; place-items:center; }
.aw-mark.aw-letter::after { content: attr(data-letter); color:#0a0a0a; font:800 15px/1 var(--font); }
