/* ============================================================================
     Eastall Software Systems Stylesheets | MyESS (public funnel + forms)
     Version: 1.0.0 2026
     Loads on top of the base stylesheet (v1.2026-1-0-0.css); uses its tokens.
============================================================================ */

:root                     { --dot:rgba(255,255,255,.05); --grad-sep:#ffffff; }
:root[data-theme="light"] { --dot:rgba(0,0,0,.05);       --grad-sep:#0e1116; }

.grad-text{
  background:linear-gradient(95deg,
    var(--grad-sep) 0%, var(--ess-blue) 16.67%, var(--grad-sep) 33.33%,
    var(--ess-red) 50%, var(--grad-sep) 66.67%, var(--ess-yellow) 83.33%, var(--grad-sep) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent; -webkit-text-fill-color:transparent;
}

/* ── Funnel shell ───────────────────────────────────────────────────────── */
.my-out{ flex:1 1 auto; display:grid; place-items:center; padding:clamp(32px,6vw,72px) 20px;
  background:radial-gradient(var(--dot) 1px, transparent 1.7px) 0 0 / 24px 24px, var(--bg); }
.my-out-inner{ width:100%; max-width:560px; }
.my-out-brand{ display:block; text-align:center; margin-bottom:26px; }
.my-out-brand img{ height:52px; width:auto; }

.my-hero{ text-align:center; margin-bottom:30px; }
.my-hero h1{ margin:0 0 12px; font-size:clamp(1.9rem,5vw,2.8rem); font-weight:900; letter-spacing:-.02em; color:var(--text-hi); }
.my-hero p{ margin:0; color:var(--grey-m); font-size:1.03rem; }

/* Two big choices on the landing page */
.my-choice{ display:grid; gap:16px; }
.my-choice-card{ display:block; background:var(--menu); border:1px solid var(--panel-brd); border-radius:18px;
  padding:24px; box-shadow:0 1px 2px rgba(0,0,0,.16); transition:transform .12s, border-color .15s, box-shadow .2s; }
.my-choice-card:hover{ transform:translateY(-2px); border-color:var(--btn-brd-h); box-shadow:var(--shadow); }
.my-choice-ic{ width:44px; height:44px; border-radius:12px; display:grid; place-items:center;
  background:var(--overlay-2); color:var(--ess-blue); margin-bottom:14px; }
.my-choice-ic .material-symbols-rounded{ font-size:24px; }
.my-choice-card h2{ margin:0 0 6px; font-size:1.12rem; font-weight:800; color:var(--text-hi); }
.my-choice-card p{ margin:0 0 14px; color:var(--grey-m); font-size:.94rem; line-height:1.55; }
.my-choice-go{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:.9rem; color:var(--ess-blue); }
.my-choice-go .material-symbols-rounded{ font-size:18px; transition:transform .15s; }
.my-choice-card:hover .my-choice-go .material-symbols-rounded{ transform:translateX(3px); }

/* ── Card + forms ───────────────────────────────────────────────────────── */
.my-card{ background:var(--menu); border:1px solid var(--panel-brd); border-radius:20px;
  box-shadow:var(--shadow); padding:clamp(22px,4vw,34px); }
.my-card-head{ text-align:center; margin-bottom:22px; }
.my-card-head h1{ margin:0 0 6px; font-size:1.5rem; font-weight:900; letter-spacing:-.01em; color:var(--text-hi); }
.my-card-head p{ margin:0; color:var(--grey-m); font-size:.95rem; }
.my-card-foot{ text-align:center; margin-top:18px; color:var(--grey-m); font-size:.9rem; }
.my-card-foot a{ color:var(--ess-blue); font-weight:700; }
.my-card-foot a:hover{ text-decoration:underline; }

.my-field{ margin-bottom:15px; }
.my-field label{ display:block; font-weight:700; font-size:.85rem; color:var(--grey-d); margin-bottom:7px; }
.my-field input, .my-field select{
  width:100%; font:inherit; color:var(--text); background:var(--overlay-3);
  border:1px solid var(--panel-brd); border-radius:11px; padding:12px 14px;
  transition:border-color .15s, box-shadow .15s, background .15s; }
.my-field input:focus, .my-field select:focus{
  outline:none; border-color:var(--ess-blue); box-shadow:0 0 0 3px rgba(35,118,245,.22); background:var(--bg); }
.my-row2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.my-submit{ width:100%; padding:13px; font-size:.98rem; margin-top:6px; }
.my-hint{ margin:7px 0 0; color:var(--grey-m); font-size:.8rem; line-height:1.5; }

.my-checks, .my-agrees{ display:flex; flex-direction:column; gap:10px; }
.my-agrees{ margin:4px 0 18px; }
.my-checks label, .my-agrees label{ display:flex; align-items:flex-start; gap:9px; color:var(--grey-d); font-size:.9rem; font-weight:600; cursor:pointer; }
.my-checks input, .my-agrees input{ accent-color:var(--ess-blue); margin-top:2px; flex:none; }
.my-agrees a{ color:var(--ess-blue); }
.my-agrees a:hover{ text-decoration:underline; }

/* 6 digit verification code */
.my-code{ text-align:center; font-size:1.9rem !important; font-weight:800; letter-spacing:.5em;
  text-indent:.5em; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; }
.my-resend{ text-align:center; margin-top:12px; }
.my-linkbtn{ background:none; border:0; color:var(--ess-blue); font:inherit; font-weight:700; font-size:.88rem; cursor:pointer; }
.my-linkbtn:hover{ text-decoration:underline; }

/* Vanity input with a fixed suffix */
.my-vanity{ display:flex; align-items:stretch; }
.my-vanity input{ border-top-right-radius:0; border-bottom-right-radius:0; }
.my-vanity-suffix{ display:flex; align-items:center; padding:0 13px; border:1px solid var(--panel-brd); border-left:0;
  border-radius:0 11px 11px 0; background:var(--overlay-2); color:var(--grey-m); font-size:.86rem; font-weight:600; white-space:nowrap; }
.my-vanity-box{ text-align:center; background:var(--overlay-3); border:1px solid var(--panel-brd);
  border-radius:12px; padding:14px; margin:0 0 18px; }
.my-vanity-box b{ display:block; margin-top:4px; color:var(--text-hi); font-size:1rem;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; word-break:break-all; }

/* Step dots */
.my-steps{ display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom:22px; }
.my-steps span{ width:28px; height:28px; border-radius:50%; display:grid; place-items:center;
  font-size:.8rem; font-weight:800; color:var(--grey-m); background:var(--overlay-3); border:1px solid var(--panel-brd); }
.my-steps span.on{ color:#fff; background:var(--grad-btn); border-color:transparent; }
.my-steps span.done{ color:#fff; background:var(--ess-blue); border-color:transparent; }

/* Alerts */
.my-alert{ border-radius:12px; padding:12px 15px; font-size:.89rem; font-weight:600; margin-bottom:18px;
  border:1px solid transparent; line-height:1.5; }
.my-alert.err{ color:var(--ess-red); background:rgba(232,48,56,.10); border-color:rgba(232,48,56,.4); }
.my-alert.info{ color:var(--ess-blue); background:rgba(35,118,245,.10); border-color:rgba(35,118,245,.35); }
.my-alert a{ color:inherit; text-decoration:underline; }

/* Organization picker (multiple matches in /find/) */
.my-org-list{ display:flex; flex-direction:column; gap:10px; }
.my-org{ display:grid; grid-template-columns:1fr auto; align-items:center; gap:4px 12px;
  background:var(--overlay-3); border:1px solid var(--panel-brd); border-radius:13px; padding:14px 16px;
  transition:background .13s, border-color .13s; }
.my-org:hover{ background:var(--overlay-2); border-color:var(--btn-brd-h); }
.my-org-name{ font-weight:700; color:var(--text-hi); }
.my-org-url{ grid-column:1; color:var(--grey-m); font-size:.82rem;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; }
.my-org .material-symbols-rounded{ grid-row:1 / span 2; color:var(--ess-blue); }

.my-done{ text-align:center; margin-bottom:8px; }
.my-done .material-symbols-rounded{ font-size:56px; color:#4ade80; }

/* ── Funnel footer: copyright, theme, legal ─────────────────────────────── */
.my-foot{ margin-top:auto; background:var(--bg-2); }
.my-foot-inner{ max-width:1120px; margin:0 auto; padding:16px 24px;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:16px; }
.my-foot-copy{ color:var(--grey-m); font-size:.8rem; }
.my-foot-theme{ display:flex; justify-content:center; }
.my-foot-legal{ display:flex; justify-content:flex-end; gap:20px; }
.my-foot-legal a{ color:var(--grey-m); font-size:.8rem; font-weight:600; white-space:nowrap; transition:color .13s; }
.my-foot-legal a:hover{ color:var(--text-hi); }

@media (max-width:720px){
  .my-row2{ grid-template-columns:1fr; }
  .my-foot-inner{ grid-template-columns:1fr; justify-items:center; text-align:center; gap:14px; }
  .my-foot-legal{ justify-content:center; }
}
