/* zodzen v2 styles */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@700;800&display=swap');

@font-face{
  font-family:"Aileron";
  src:url("fonts/Aileron-Regular.ttf") format("truetype");
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Aileron";
  src:url("fonts/Aileron-Bold.ttf") format("truetype");
  font-weight:700;font-style:normal;font-display:swap;
}

:root{
  --bg:#e4e2dd;
  --ink:#000;
  --muted:rgba(0,0,0,.55);
  --hair:rgba(0,0,0,.18);
  --display:"Inter Tight","Aileron",system-ui,sans-serif;
  --body:"Aileron",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

*{box-sizing:border-box;-webkit-text-size-adjust:100%;}
html,body{margin:0;padding:0;}
body{
  min-height:100dvh;background:var(--bg);color:var(--ink);
  font-family:var(--body);
  display:grid;grid-template-rows:auto 1fr auto;
}

button{all:unset;box-sizing:border-box;cursor:pointer;color:var(--ink);}
input{all:unset;box-sizing:border-box;color:var(--ink);width:100%;}
a{color:var(--ink);text-decoration:none;border-bottom:1px solid transparent;}
a:hover{border-bottom-color:var(--ink);}
strong{font-weight:700;}
[hidden]{display:none!important;}
h1,h2,h3,.display{font-family:var(--display);letter-spacing:-0.03em;}

/* header */
.site-head{display:flex;align-items:center;justify-content:flex-end;gap:22px;height:56px;padding:0 24px;}
.head-link{font-size:13px;letter-spacing:.4px;text-transform:lowercase;padding:6px 0;line-height:1;}

/* main */
.center{display:grid;place-items:start center;text-align:center;padding:2vh 20px 48px;}
.wordmark{width:min(520px,84vw);height:auto;display:block;margin:26px auto 0;}
.wordmark.small{width:min(220px,44vw);margin:6px auto 0;}
.prompt{font-size:15px;margin:40px 0 8px;letter-spacing:.3px;}
.prompt.tight{margin-top:20px;}

/* underline input rows */
.line{
  display:grid;grid-template-columns:1fr auto;align-items:center;
  border-bottom:1.6px solid var(--ink);padding:6px 0 8px;gap:10px;position:relative;
}
.line.noarrow{grid-template-columns:1fr;}
.line input{background:transparent;font-size:17px;letter-spacing:.35px;padding-bottom:2px;min-height:44px;}
.line input::placeholder{color:rgba(0,0,0,.4);}
.arrow{width:30px;height:28px;display:inline-flex;align-items:center;justify-content:center;}
.arrow svg{display:block;}

form.z{width:100%;max-width:340px;margin:0 auto;text-align:left;}
form.z .line{margin-bottom:12px;}
form.z small{font-size:11px;opacity:.7;display:block;margin:-6px 0 12px;}
form.z label{font-size:12px;display:block;margin:4px 0 12px;text-align:left;}
form.z label input[type="checkbox"]{all:revert;margin-right:6px;}
.submit-row{display:flex;justify-content:flex-end;margin-top:2px;}

.msg{margin-top:10px;font-size:13px;min-height:16px;text-align:center;}
.msg.err{color:#a00;}
.hint{margin-top:16px;font-size:12px;text-align:center;}

/* landing reveal: result inside the circle asset */
.result-wrap{
  position:relative;width:min(600px,92vw);margin:22px auto 0;
  opacity:0;transform:translateY(6px);transition:opacity .5s ease,transform .5s ease;
}
.result-wrap.on{opacity:1;transform:none;}
.result-circle{
  position:absolute;inset:-8% -3%;width:106%;height:116%;
  object-fit:contain;pointer-events:none;opacity:.75;
}
.result{font-size:15.5px;line-height:1.55;margin:0;padding:26px 44px;}
.more{display:inline-block;font-family:var(--display);font-weight:700;font-size:14px;margin-top:10px;}
.more:hover{border-bottom:1px solid var(--ink);}

/* preview cards */
.preview{
  width:min(720px,92vw);margin:30px auto 0;text-align:left;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;
  opacity:0;transform:translateY(8px);transition:opacity .5s ease .1s,transform .5s ease .1s;
}
.preview.on{opacity:1;transform:none;}
.card{
  padding:15px 16px;background:rgba(255,255,255,.28);
  border:0.5px solid var(--hair);border-radius:10px;
}
.card .k{font-size:10px;text-transform:uppercase;letter-spacing:.14em;color:#5c5b57;margin-bottom:6px;}
.card .v{font-family:var(--display);font-weight:700;font-size:17px;margin-bottom:6px;}
.card p{margin:0;font-size:12.5px;line-height:1.55;color:#3c3b38;}
.cta-row{margin:26px auto 0;text-align:center;}
.cta{
  display:inline-block;font-family:var(--display);font-weight:700;font-size:14px;
  border-bottom:1.6px solid var(--ink);padding-bottom:2px;
}
.cta:hover{opacity:.65;}
.cta-sub{font-size:11px;color:var(--muted);margin-top:9px;}

/* city autocomplete */
.city-suggestions{
  position:absolute;top:100%;left:0;right:0;background:#fff;
  border:0.5px solid var(--hair);border-radius:8px;margin-top:4px;
  max-height:180px;overflow-y:auto;box-shadow:0 4px 12px rgba(0,0,0,.1);z-index:1000;display:none;
}
.city-suggestions.show{display:block;}
.city-suggestion{padding:10px 12px;cursor:pointer;border-bottom:1px solid #f0f0f0;font-size:14px;}
.city-suggestion:last-child{border-bottom:none;}
.city-suggestion:hover{background:#f6f6f4;}
.city-suggestion.loading{text-align:center;color:#999;font-style:italic;cursor:default;}

/* footer */
.footer{text-align:center;padding:14px 10px 20px;font-size:11px;color:var(--muted);text-transform:lowercase;}
.footer a{color:rgba(0,0,0,.7);}
.footer button{color:var(--ink);text-transform:lowercase;font-size:11px;border-bottom:1px solid transparent;}
.footer button:hover{border-bottom-color:var(--ink);}

/* privacy modal */
.privacy-modal{position:fixed;inset:0;display:grid;place-items:center;background:rgba(0,0,0,.12);z-index:1000002;}
.privacy-panel{width:min(520px,92vw);background:var(--bg);color:var(--ink);padding:16px 14px 14px;border:1px solid var(--ink);}
.privacy-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px;}
.privacy-head h3{margin:0;font-size:15px;text-transform:lowercase;}
.privacy-head .close{font-size:22px;line-height:1;padding:2px 6px;border:1px solid var(--ink);}
.privacy-body p{margin:8px 0;font-size:13.5px;line-height:1.5;text-transform:lowercase;}

@media(prefers-reduced-motion:reduce){
  .result-wrap,.preview{transition:none;}
}
@media(max-width:480px){
  .wordmark{width:80vw;}
  form.z{max-width:300px;}
  .result{font-size:14px;padding:22px 26px;}
}

/* daily practice */
.affirm{
  font-family:var(--display);font-weight:700;font-size:19px;
  letter-spacing:-0.02em;line-height:1.4;margin:16px 0 20px!important;
}
.practice{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;}
.pcard{
  padding:15px 16px;background:rgba(255,255,255,.28);
  border:0.5px solid var(--hair);border-radius:10px;
}
.pcard .k{font-size:10px;text-transform:uppercase;letter-spacing:.14em;color:#5c5b57;margin-bottom:6px;}
.pcard .v{font-family:var(--display);font-weight:700;font-size:16px;margin-bottom:6px;}
.pcard p{margin:0!important;font-size:12.5px!important;line-height:1.55;color:#3c3b38;}
.practice-note{font-size:11px!important;opacity:.55;margin-top:12px!important;}

/* streak + signed-in marker */
.streak{font-size:12px!important;opacity:.55;margin:-4px 0 12px!important;letter-spacing:.02em;}
.site-head .who{
  font-size:11px;letter-spacing:.06em;text-transform:lowercase;
  opacity:.5;margin-right:auto;padding-left:2px;
}
.site-head{opacity:1;}

.daydate{font-size:12px!important;opacity:.55;margin:-4px 0 2px!important;letter-spacing:.02em;}

/* dashboard */
.dash{width:min(660px,92vw);margin:0 auto;text-align:left;}

.ident{padding:22px 0 4px;}
.dash h2{font-size:28px;font-weight:800;margin:0 0 2px;text-transform:lowercase;line-height:1.1;}
.dash .sub{font-size:14px;opacity:.6;margin:0;}

.block{
  margin-top:14px;padding-top:18px;
  border-top:1px solid rgba(0,0,0,.14);
}
.eyebrow{
  display:flex;align-items:baseline;justify-content:space-between;gap:12px;
  font-size:10px;font-weight:700;text-transform:lowercase;
  letter-spacing:.16em;opacity:.5;margin-bottom:14px;
}
.eyebrow .meta{font-weight:400;letter-spacing:.08em;opacity:.8;}

/* today: the most prominent thing on the page */
.today{
  padding:20px;border:0.5px solid rgba(0,0,0,.22);border-radius:12px;
  background:rgba(255,255,255,.4);
  margin:0 0 14px;
}
.today-weather{font-size:15.5px;line-height:1.7;margin:0;}
.affirm{
  font-family:var(--display);font-weight:700;font-size:20px;
  letter-spacing:-0.025em;line-height:1.35;margin:18px 0 20px;
}
.practice{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:10px;}
.pcard{padding:14px 15px;background:rgba(0,0,0,.035);border-radius:9px;}
.pcard .k{font-size:9.5px;text-transform:uppercase;letter-spacing:.16em;color:#5c5b57;margin-bottom:5px;}
.pcard .v{font-family:var(--display);font-weight:700;font-size:15px;margin-bottom:5px;}
.pcard p{margin:0;font-size:12.5px;line-height:1.55;color:#3c3b38;}
.practice-note{font-size:11px;opacity:.5;margin:14px 0 0;}
.streak{font-size:12px;opacity:.55;margin:0;letter-spacing:.02em;}

/* monthly reading */
.reading p{font-size:15px;line-height:1.75;margin:0 0 14px;}
.reading p:first-child{font-weight:700;}
.reading p:last-child{
  margin-bottom:0;padding-top:14px;
  border-top:1px solid rgba(0,0,0,.12);font-weight:700;
}

/* chart */
.three{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:10px;}
.threenote{font-size:12.5px;opacity:.6;margin:10px 0 0;}
.reader{
  border-top:1px solid rgba(0,0,0,.1);margin-top:14px;padding-top:12px;
}
.reader:first-of-type{margin-top:18px;}
.reader summary{
  cursor:pointer;list-style:none;
  font-family:var(--display);font-weight:700;font-size:15px;
  letter-spacing:-0.015em;text-transform:lowercase;
  display:flex;align-items:center;justify-content:space-between;
}
.reader summary::-webkit-details-marker{display:none;}
.reader summary::after{content:"+";font-weight:400;font-size:17px;opacity:.4;}
.reader[open] summary::after{content:"–";}
.reader summary:hover{opacity:.7;}
.reader p{font-size:14.5px;line-height:1.7;margin:12px 0 0;}
.reader .credo{font-style:italic;opacity:.85;}
.reader .meta-line{font-size:12.5px;opacity:.6;}

/* beta prompt + account */
.beta{padding:18px;border:0.5px solid rgba(0,0,0,.25);border-radius:10px;background:rgba(255,255,255,.3);}
.beta .price{font-family:var(--display);font-weight:700;font-size:17px;}
.beta p{font-size:13.5px;margin:0;}
.rowline{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;}
.acct{font-size:13px;margin:0 0 8px;}
.acct.fine{font-size:11.5px;opacity:.55;}
#delete-btn{color:#a00;border-bottom:1px solid transparent;}
#delete-btn:hover{border-bottom-color:#a00;}

@media(max-width:480px){
  .dash h2{font-size:24px;}
  .today{padding:16px;}
  .affirm{font-size:18px;}
}

/* natal chart page */
.chart-h1{
  font-family:var(--display);font-weight:800;font-size:30px;
  letter-spacing:-0.035em;margin:20px 0 8px;text-transform:lowercase;text-align:center;
}
.chart-lead{
  font-size:15px;line-height:1.65;opacity:.8;margin:0 auto 26px;
  max-width:440px;text-align:center;
}
.ptable{display:grid;gap:0;}
.prow{
  display:grid;grid-template-columns:1.1fr 1.3fr .7fr;gap:10px;align-items:baseline;
  padding:9px 0;border-bottom:1px solid rgba(0,0,0,.09);font-size:14px;
}
.prow:last-child{border-bottom:none;}
.prow .c1{font-weight:700;}
.prow .c2{opacity:.85;}
.prow .c3{font-size:12px;opacity:.55;text-align:right;}
.rx{font-size:11px;opacity:.6;letter-spacing:.04em;}
.bars{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:12px 18px;}
.bar .bl{display:flex;justify-content:space-between;font-size:12px;margin-bottom:5px;}
.bar .bl span:first-child{text-transform:lowercase;opacity:.8;}
.bar .bl span:last-child{opacity:.5;}
.btrack{height:5px;background:rgba(0,0,0,.1);border-radius:3px;overflow:hidden;}
.bfill{height:100%;background:#000;opacity:.7;}
#again{font-size:12.5px;border-bottom:1px solid transparent;opacity:.7;}
#again:hover{border-bottom-color:#000;opacity:1;}
@media(max-width:480px){
  .chart-h1{font-size:25px;}
  .prow{grid-template-columns:1fr 1fr;font-size:13px;}
  .prow .c3{grid-column:2;text-align:left;}
}

/* chart interpretations */
.pitem{border-bottom:1px solid rgba(0,0,0,.09);padding:11px 0;}
.pitem:last-child{border-bottom:none;}
.pitem .prow{border-bottom:none;padding:0;}
.pmean{margin:6px 0 0;font-size:12.5px;line-height:1.6;color:#3c3b38;}
.pmean.blurred{filter:blur(4px);user-select:none;pointer-events:none;}
.unlocknote{
  margin:16px 0 0;font-size:12.5px;line-height:1.6;opacity:.75;
  padding-top:14px;border-top:1px solid rgba(0,0,0,.12);
}

/* chart: wheel and meaning items */
.wheel{
  width:100%;display:flex;justify-content:center;
  padding:8px 0;
}
.wheel svg{width:100%;height:auto;max-width:560px;}
.plist{display:grid;gap:0;}
.item{padding:13px 0;border-bottom:1px solid rgba(0,0,0,.09);}
.item:last-child{border-bottom:none;}
.ihead{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;}
.iname{font-family:var(--display);font-weight:700;font-size:15px;letter-spacing:-0.015em;}
.ival{font-size:13px;opacity:.7;}
.ival .rx{font-size:10.5px;opacity:.7;letter-spacing:.06em;}
.ival .ih{font-size:11.5px;opacity:.6;margin-left:6px;}
.ibody{margin:6px 0 0;font-size:13.5px;line-height:1.6;color:#3c3b38;}
.ibody.blurred{filter:blur(4px);user-select:none;pointer-events:none;}
.lockrow{
  margin:14px 0 0;padding:14px 16px;font-size:13px;line-height:1.6;
  background:rgba(255,255,255,.32);border:0.5px solid var(--hair);border-radius:10px;
}

/* aspect legend */
.legend{
  margin:0 0 16px;padding:12px 14px;
  background:rgba(255,255,255,.28);border:0.5px solid var(--hair);border-radius:10px;
}
.lrow{display:grid;grid-template-columns:88px 1fr;gap:10px;padding:4px 0;font-size:12.5px;line-height:1.55;}
.lrow .lname{font-weight:700;text-transform:lowercase;}
.lrow .ltext{color:#3c3b38;}
@media(max-width:480px){
  .lrow{grid-template-columns:1fr;gap:2px;}
}

/* go deeper bar */
.deeper{
  display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  padding:18px 20px;border:0.5px solid rgba(0,0,0,.28);border-radius:12px;
  background:rgba(255,255,255,.4);
}
.deeper .dtitle{
  font-family:var(--display);font-weight:800;font-size:18px;
  letter-spacing:-0.03em;margin-bottom:5px;
}
.deeper p{margin:0;font-size:13.5px;line-height:1.6;color:#3c3b38;max-width:420px;}

/* logo links never underline */
a:has(> .wordmark),
a:has(> .logo){border-bottom-color:transparent!important;}
a .wordmark,a .logo{display:block;}

/* headings that must exist for crawlers without changing the design */
.wordmark-h1{margin:0;padding:0;font-size:0;line-height:0;}
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
h1.prompt{
  font-size:16px;font-weight:400;margin:8px 0 14px;
  letter-spacing:.3px;font-family:var(--body);
}
h1.pagetitle{
  font-family:var(--display);font-size:28px;font-weight:800;
  margin:26px 0 4px;text-transform:lowercase;letter-spacing:-0.03em;line-height:1.1;
}

/* generated content pages */
.article{max-width:660px;}
.article .credo.big{
  font-family:var(--display);font-weight:700;font-size:19px;
  letter-spacing:-0.02em;line-height:1.45;font-style:italic;margin:0 0 12px;
}
.article p{font-size:15px;line-height:1.75;margin:0 0 14px;}
.article p:last-child{margin-bottom:0;}
.article .shadowline{opacity:.85;}
.linkgrid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:8px;margin-top:6px;
}
.linkgrid a{
  display:block;padding:9px 12px;font-size:13px;
  background:rgba(255,255,255,.3);border:0.5px solid var(--hair);
  border-radius:8px;border-bottom:0.5px solid var(--hair);
}
.linkgrid a:hover{background:rgba(255,255,255,.55);border-bottom-color:var(--hair);}
.hublinks{
  display:flex;flex-wrap:wrap;justify-content:center;gap:6px 18px;
  padding:18px 16px 0;font-size:12px;
}
.hublinks a{color:rgba(0,0,0,.6);}
.homeintro{margin-top:34px;padding-top:6px;border-top:1px solid rgba(0,0,0,.12);text-align:left;}

/* guide pages */
.crumbs{font-size:11.5px;opacity:.55;margin:22px 0 0;letter-spacing:.02em;}
.crumbs a{color:rgba(0,0,0,.6);}
.signlist{display:grid;gap:0;}
.signrow{
  display:grid;grid-template-columns:1.1fr 1.4fr 1fr;gap:12px;align-items:baseline;
  padding:13px 0;border-bottom:1px solid rgba(0,0,0,.09);
  border-bottom-color:rgba(0,0,0,.09)!important;
}
.signrow:last-child{border-bottom:none;}
.signrow:hover{opacity:.65;}
.signrow .sname{font-family:var(--display);font-weight:700;font-size:16px;}
.signrow .sdates{font-size:13px;opacity:.75;}
.signrow .smeta{font-size:12px;opacity:.55;text-align:right;}
@media(max-width:480px){
  .signrow{grid-template-columns:1fr 1fr;}
  .signrow .smeta{grid-column:2;text-align:right;}
}
