/* OREeasy marketing site — shares the app's palette and type so the two read as one product. */

:root{
  --ground:#EDF0EA;
  --surface:#FFFFFF;
  --surface-2:#F5F6F1;
  --line:#D7DCD2;
  --line-soft:#E4E8DF;
  --ink:#16242B;
  --ink-soft:#3E5158;
  --ink-faint:#6D7F82;
  --accent:#C6472F;
  --accent-soft:#F6E2DC;
  --mint:#3D7F68;
  --mint-soft:#E3EFE7;
  --gold:#A9791F;
  --gold-soft:#F3E9CF;
  --radius:14px;
}
@media (prefers-color-scheme: dark){
  :root{
    --ground:#12191B;
    --surface:#182124;
    --surface-2:#1E282B;
    --line:#2C3A3E;
    --line-soft:#243033;
    --ink:#E8EDE7;
    --ink-soft:#AFC0B7;
    --ink-faint:#7F918F;
    --accent:#E9765C;
    --accent-soft:#3A211B;
    --mint:#6FB79A;
    --mint-soft:#1D2E28;
    --gold:#D3A54E;
    --gold-soft:#332916;
  }
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  background:var(--ground);
  color:var(--ink);
  font-family:"Public Sans","Helvetica Neue",Arial,sans-serif;
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;}
a{color:var(--accent);text-decoration:none;}
a:hover{text-decoration:underline;}
a:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:3px;}

.wrap{max-width:1000px;margin:0 auto;padding:0 22px;}
.narrow{max-width:720px;}

/* ---------- header ---------- */
.site-head{
  border-bottom:1px solid var(--line);
  background:var(--surface);
  position:sticky;top:0;z-index:20;
}
.head-inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:11px;color:var(--ink);}
.brand:hover{text-decoration:none;}
.brand svg{flex:none;}
.brand .name{font-family:Fraunces,Georgia,serif;font-weight:700;font-size:1.32rem;line-height:1;}
.brand .tag{
  font-size:.66rem;letter-spacing:.11em;text-transform:uppercase;
  color:var(--ink-faint);margin-top:3px;
}
.head-actions{display:flex;align-items:center;gap:10px;}

.btn{
  display:inline-block;border:1px solid transparent;border-radius:10px;
  padding:10px 18px;font-weight:600;font-size:.92rem;cursor:pointer;
  font-family:inherit;
}
.btn:hover{text-decoration:none;}
.btn-primary{background:var(--accent);color:#fff;}
.btn-primary:hover{filter:brightness(1.06);}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line);}
.btn-ghost:hover{background:var(--surface-2);}
.btn-lg{padding:14px 26px;font-size:1rem;}

/* ---------- type ---------- */
h1,h2,h3{font-family:Fraunces,Georgia,serif;font-weight:700;letter-spacing:-.012em;margin:0;text-wrap:balance;}
h1{font-size:clamp(2.2rem,5.6vw,3.4rem);line-height:1.06;}
h2{font-size:clamp(1.5rem,3.2vw,2rem);line-height:1.18;}
h3{font-size:1.08rem;font-weight:600;line-height:1.3;}
p{margin:0;}
.lede{font-size:1.12rem;color:var(--ink-soft);max-width:60ch;}
.eyebrow{
  font-family:"IBM Plex Mono",ui-monospace,Menlo,monospace;
  font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-faint);
}

section{padding:64px 0;}
section + section{border-top:1px solid var(--line-soft);}
.sec-head{display:flex;flex-direction:column;gap:12px;margin-bottom:32px;max-width:62ch;}

/* ---------- hero ---------- */
.hero{padding:76px 0 68px;}
.hero-inner{display:flex;flex-direction:column;gap:22px;max-width:44ch;}
.hero-cta{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:6px;}
.hero-note{font-size:.88rem;color:var(--ink-faint);}

/* ---------- counts table ---------- */
.counts{
  border:1px solid var(--line);border-radius:var(--radius);
  background:var(--surface);overflow:hidden;
}
.counts table{width:100%;border-collapse:collapse;font-size:.95rem;}
.counts th,.counts td{padding:11px 18px;text-align:left;}
.counts th{
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--ink-faint);font-weight:600;border-bottom:1px solid var(--line);
}
.counts td{border-bottom:1px solid var(--line-soft);}
.counts tbody tr:last-child td{border-bottom:none;}
.counts td.num{
  text-align:right;font-family:"IBM Plex Mono",ui-monospace,monospace;
  font-variant-numeric:tabular-nums;font-size:.9rem;
}
.counts tfoot td{
  border-top:1px solid var(--line);font-weight:700;background:var(--surface-2);
}
.counts-scroll{overflow-x:auto;}

/* ---------- steps: a real sequence, so numbered ---------- */
.steps{display:flex;flex-direction:column;gap:0;}
.step{
  display:grid;grid-template-columns:38px 1fr;gap:16px;
  padding:16px 0;border-bottom:1px solid var(--line-soft);align-items:baseline;
}
.step:last-child{border-bottom:none;}
.step .n{
  font-family:"IBM Plex Mono",ui-monospace,monospace;font-size:.8rem;
  color:var(--ink-faint);font-variant-numeric:tabular-nums;
}
.step .b{display:flex;flex-direction:column;gap:4px;}
.step .d{color:var(--ink-soft);font-size:.97rem;}

/* ---------- pricing ---------- */
.plans{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;}
.plan{
  border:1px solid var(--line);border-radius:var(--radius);
  background:var(--surface);padding:26px;
  display:flex;flex-direction:column;gap:14px;
}
.plan.featured{border-color:var(--accent);}
.plan .pname{font-family:Fraunces,Georgia,serif;font-size:1.2rem;font-weight:600;}
.price{display:flex;align-items:baseline;gap:7px;}
.price .amt{
  font-family:"IBM Plex Mono",ui-monospace,monospace;
  font-size:1.9rem;font-weight:600;font-variant-numeric:tabular-nums;
}
.price .per{font-size:.85rem;color:var(--ink-faint);}
.plan ul{margin:0;padding-left:19px;display:flex;flex-direction:column;gap:7px;color:var(--ink-soft);font-size:.95rem;}
.status{
  align-self:flex-start;font-size:.7rem;letter-spacing:.09em;text-transform:uppercase;
  font-weight:700;padding:4px 9px;border-radius:3px;
}
.status.now{background:var(--mint-soft);color:var(--mint);}
.status.soon{background:var(--gold-soft);color:var(--gold);}

/* ---------- faq ---------- */
.faq{display:flex;flex-direction:column;gap:0;}
.qa{padding:18px 0;border-bottom:1px solid var(--line-soft);display:flex;flex-direction:column;gap:7px;}
.qa:last-child{border-bottom:none;}
.qa .q{font-weight:700;font-size:1rem;}
.qa .a{color:var(--ink-soft);font-size:.97rem;max-width:66ch;}

/* ---------- footer ---------- */
.site-foot{
  border-top:1px solid var(--line);background:var(--surface);
  padding:40px 0 52px;font-size:.86rem;color:var(--ink-soft);
}
.foot-inner{display:flex;flex-direction:column;gap:18px;}
.foot-links{display:flex;flex-wrap:wrap;gap:18px;}
.foot-legal{display:flex;flex-direction:column;gap:9px;max-width:74ch;line-height:1.6;}
.foot-legal .strong{font-weight:600;color:var(--ink);}

/* ---------- legal pages ---------- */
.legal{padding:52px 0 72px;}
.legal h1{font-size:clamp(1.8rem,4vw,2.4rem);margin-bottom:8px;}
.legal .updated{
  font-family:"IBM Plex Mono",ui-monospace,monospace;
  font-size:.78rem;color:var(--ink-faint);margin-bottom:34px;
}
.legal h2{font-size:1.22rem;margin:38px 0 12px;}
.legal p,.legal li{color:var(--ink-soft);font-size:1rem;}
.legal p{margin:0 0 14px;max-width:70ch;}
.legal ul{margin:0 0 16px;padding-left:22px;display:flex;flex-direction:column;gap:8px;max-width:70ch;}
.legal .callout{
  border-left:3px solid var(--accent);background:var(--surface);
  padding:16px 20px;border-radius:0 8px 8px 0;margin:0 0 20px;max-width:70ch;
}
.legal .callout p:last-child{margin-bottom:0;}

@media (max-width:640px){
  body{font-size:16px;}
  section{padding:48px 0;}
  .hero{padding:52px 0 46px;}
  .head-inner{flex-wrap:wrap;}
  .brand .tag{display:none;}
}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important;}}
