:root{
  --bg:#06070a;
  --bg-deep:#090b10;
  --panel-top:rgba(0,0,0,.45);
  --panel-bottom:rgba(0,0,0,.45);
  --panel-soft:rgba(0,0,0,.45);
  --text:#f2f4f8;
  --muted:#aeb5c0;
  --muted-strong:#c7cdd6;
  --gold:#D4A84B;
  --gold-strong:#D4A84B;
  --gold-soft:rgba(212,168,75,.14);
  --gold-border:rgba(212,168,75,.26);
  --gold-border-strong:rgba(212,168,75,.42);
  --white-border:rgba(255,255,255,.085);
  --shadow-lg:0 30px 80px rgba(0,0,0,.42);
  --shadow-md:0 18px 42px rgba(0,0,0,.32);
  --radius:28px;
  --radius-md:20px;
  --radius-sm:14px;
  --max:1200px;
}

*{box-sizing:border-box}

html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(4,5,7,.72), rgba(7,9,13,.78)),
    radial-gradient(1100px 680px at 76% 12%, rgba(212,168,75,.10), transparent 58%),
    radial-gradient(920px 620px at 14% 82%, rgba(212,168,75,.07), transparent 60%),
    url("/assets/site-background.jpg?v=20260325223154");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{
  width:min(100%, var(--max));
  margin:0 auto;
  padding:34px 22px 44px;
}

.page-shell{min-height:100%}

.topbar{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:22px;
  margin-bottom:18px;
}

.brand{
  display:inline-flex;
  align-items:center;
  position:relative;
  text-decoration:none;
}

.brand-mark{
  display:none;
}

.brand-text{
  display:none;
}

.brand-title-stack{
  position:relative;
  display:inline-grid;
  place-items:center;
  min-height:56px;
  padding:0 2px;
}

.brand-title-back,
.brand-title-front{
  grid-area:1 / 1;
  font-family:Inter, "Arial Black", "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight:900;
  letter-spacing:-.05em;
  line-height:1;
  white-space:nowrap;
  user-select:none;
  text-transform:none;
}

.brand-title-back{
  color:var(--gold);
  font-size:3.02rem;
  opacity:.68;
  transform:scale(1.015);
}

.brand-title-front{
  color:#f7f8fb;
  font-size:2.96rem;
  text-shadow:
    0 0 10px rgba(212,168,75,.34),
    0 0 1px rgba(255,255,255,.45);
  position:relative;
  z-index:2;
  opacity:.78;
}

.topnav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  flex-wrap:wrap;
}

.topnav a{
  color:var(--muted-strong);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:color .18s ease, opacity .18s ease;
  opacity:.82;
}

.topnav a:hover{
  color:var(--gold);
  opacity:1;
}

.card{
  position:relative;
  border:1px solid var(--gold-border);
  border-radius:var(--radius);
  background:linear-gradient(180deg, var(--panel-top), var(--panel-bottom));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    var(--shadow-lg);
  backdrop-filter:blur(10px);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(130deg, rgba(212,168,75,.06), transparent 26%),
    linear-gradient(320deg, rgba(212,168,75,.04), transparent 22%);
  pointer-events:none;
}

.eyebrow,
.section-kicker{
  display:inline-block;
  color:var(--gold);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:16px;
}

.hero-copy h1,
.section-heading h2,
.section-slab h2,
.footer h2,
.page-hero h1,
.content-section h2,
.card h1,
.card h2{
  font-family:Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  letter-spacing:-.03em;
}

.hero-card{
  display:block;
  padding:34px 36px;
  overflow:hidden;
}

.hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(3rem, 5.2vw, 5.2rem);
  line-height:.94;
  max-width:13.2ch;
  text-wrap:balance;
}

.hero-lead{
  margin:0 0 24px;
  max-width:64ch;
  color:var(--muted-strong);
  font-size:1.12rem;
  line-height:1.82;
}

.hero-actions,
.slab-actions,
.page-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:16px;
  font-weight:800;
  letter-spacing:.01em;
  transition:
    transform .16s ease,
    border-color .16s ease,
    background-color .16s ease,
    color .16s ease,
    box-shadow .16s ease;
}

.btn:hover{transform:translateY(-1px)}

.btn-primary{
  color:#fff2cc;
  border:1px solid var(--gold-border-strong);
  background:linear-gradient(180deg, rgba(212,168,75,.26), rgba(212,168,75,.14));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 14px 28px rgba(0,0,0,.26);
}

.btn-primary:hover{
  border-color:rgba(212,168,75,.56);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 30px rgba(0,0,0,.30);
}

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

.btn-secondary:hover{
  border-color:rgba(212,168,75,.28);
  color:var(--gold-strong);
}

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

.hero-point{
  border:none;
  border-top:1px solid rgba(212,168,75,.16);
  border-radius:0;
  padding:14px 0 0;
  background:none;
  box-shadow:none;
}

.hero-point-title{
  display:block;
  margin-bottom:6px;
  color:var(--gold);
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.02em;
}

.hero-point-text{
  display:block;
  color:var(--muted);
  font-size:.9rem;
  line-height:1.55;
}

.hero-stats{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.hero-stat{
  padding:18px 0 0;
}

.hero-stat-value{
  display:block;
  margin-bottom:8px;
  color:var(--text);
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1;
}







.section{margin-top:38px}

.section-heading{margin-bottom:22px}

.section-heading h2{
  margin:0 0 12px;
  font-size:clamp(1.9rem, 3vw, 2.8rem);
  line-height:1.02;
}

.section-heading p{
  margin:0;
  max-width:66ch;
  color:var(--muted);
  line-height:1.82;
}

.feature-grid,
.workflow-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.feature-card,
.workflow-step,
.content-section{
  padding:24px;
}

.feature-card,
.workflow-step,
.content-section{
  background:rgba(0,0,0,.82);
}


.feature-card h3,
.workflow-step h3,
.content-section h2{
  margin:0 0 16px;
  font-size:1.18rem;
  color:var(--gold);
  display:inline-block;
  padding-bottom:8px;
  border-bottom:1px solid rgba(212,168,75,.55);
}

.feature-card p,
.workflow-step p,
.content-section p{
  margin:0;
  color:var(--muted);
  line-height:1.78;
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  margin-bottom:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:var(--gold);
  font-weight:900;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.section-slab .slab{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:32px;
}

.section-slab h2{
  margin:0 0 12px;
  font-size:clamp(1.8rem, 3vw, 2.4rem);
}

.section-slab p{
  margin:0;
  color:var(--muted);
  line-height:1.82;
  max-width:60ch;
}

.footer{
  margin-top:38px;
  padding:30px;
}

.footer-top{margin-bottom:18px}

.footer h2{
  margin:0 0 10px;
  font-size:1.7rem;
}

.footer-copy{
  margin:0;
  color:var(--muted);
  line-height:1.78;
}

.footer-links,
.link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 16px;
  margin-top:22px;
}

.footer-links a,
.link-tile{
  display:block;
  padding:18px 22px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.012));
  color:var(--muted-strong);
  font-size:1.02rem;
  transition:
    transform .16s ease,
    border-color .16s ease,
    color .16s ease,
    background-color .16s ease,
    box-shadow .16s ease;
}

.footer-links a:hover,
.link-tile:hover{
  transform:translateY(-1px);
  border-color:rgba(212,168,75,.38);
  color:var(--gold);
  background:rgba(212,168,75,.05);
  box-shadow:0 12px 26px rgba(0,0,0,.22);
}

.page-main{
  display:grid;
  gap:26px;
}

.page-hero{
  padding:32px;
}

.page-hero h1{
  margin:0 0 12px;
  font-size:clamp(2.1rem, 4vw, 3.1rem);
  line-height:1.02;
}

.page-intro{
  margin:0;
  max-width:62ch;
  color:var(--muted-strong);
  line-height:1.82;
  font-size:1.04rem;
}

.page-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

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

.page-grid.one-up{
  grid-template-columns:1fr;
}

.page-links{
  padding:28px;
}

.notice-card{
  margin-top:14px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(212,168,75,.26);
  background:rgba(212,168,75,.06);
  color:var(--muted-strong);
  line-height:1.7;
}

.legal-list{
  margin:0;
  padding-left:22px;
  color:var(--muted-strong);
  line-height:1.8;
}

.inline-link{
  color:var(--gold);
}

.muted-block{
  margin-top:10px !important;
  color:var(--muted-strong);
}

.small{
  font-size:.84rem;
  color:var(--muted);
}

.footer-small,
.page-meta{
  margin-top:22px;
}

.card h1{
  margin:0 0 16px;
  color:var(--gold);
  font-size:clamp(2rem, 3vw, 2.7rem);
}

.card h2{
  margin:20px 0 10px;
  font-size:1.28rem;
}

.card p{
  color:var(--muted-strong);
  line-height:1.82;
}

.card ul,
.card ol{
  color:var(--muted-strong);
  line-height:1.82;
  padding-left:22px;
}

.card li + li{
  margin-top:6px;
}

.card a{
  color:var(--gold);
}

@media (max-width: 980px){
  .hero-card,
  .section-slab .slab{
    grid-template-columns:1fr;
    display:grid;
  }

  .feature-grid,
  .workflow-grid,
  .hero-points,
  .page-grid{
    grid-template-columns:1fr 1fr;
  }

  .page-grid.one-up{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .container{
    padding:22px 14px 32px;
  }

  .topbar{
    grid-template-columns:1fr;
    justify-items:start;
  }

  .topnav{
    gap:14px;
  }

  .hero-card,
  .page-hero,
  .page-links{
    padding:24px 18px;
  }

  .feature-grid,
  .workflow-grid,
  .footer-links,
  .link-grid,
  .hero-points,
  .page-grid,
  .page-grid.two-up{
    grid-template-columns:1fr;
  }

  .footer,
  .feature-card,
  .workflow-step,
  .content-section{
    padding:20px;
  }

  .btn{
    width:100%;
  }

  .hero-actions,
  .slab-actions,
  .page-actions{
    flex-direction:column;
  }
}

.footer-minimal{
  margin-top:18px;
  padding:18px 0 28px;
  border:none;
  background:transparent;
  box-shadow:none;
}

.footer-links-minimal{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  justify-content:flex-start;
}

.footer-links-minimal a{
  display:inline;
  padding:0;
  margin:0;
  min-width:0;
  border:none;
  border-radius:0;
  background:none;
  box-shadow:none;
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
}

.footer-links-minimal a:hover{
  color:var(--gold);
}

.footer-minimal .small,
.footer-minimal .footer-small,
.footer-minimal .footer-top,
.footer-minimal .footer-copy{
  display:none;
}

.home-splash{
  position:relative;
  min-height:calc(100vh - 190px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 0 10px;
  overflow:hidden;
}

.home-splash-glow{
  position:absolute;
  left:50%;
  top:50%;
  width:min(92vw, 980px);
  height:min(92vw, 980px);
  transform:translate(-50%, -50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(212,168,75,.22) 0%, rgba(212,168,75,.10) 38%, rgba(212,168,75,.04) 58%, rgba(212,168,75,0) 74%);
  filter:blur(18px);
  pointer-events:none;
}

.home-splash-icon{
  position:relative;
  z-index:1;
  display:block;
  width:min(41vw, 380px);
  max-width:100%;
  height:auto;
  border-radius:22.5%;
  overflow:hidden;
  box-shadow:
    0 22px 50px rgba(0,0,0,.42),
    0 0 42px rgba(212,168,75,.14);
  filter:none;
}

@media (max-width: 720px){
  .home-splash{
    min-height:calc(100vh - 170px);
    padding:12px 0 6px;
  }

  .home-splash-icon{
    width:min(44vw, 310px);
  }

  .home-splash-glow{
    width:min(104vw, 760px);
    height:min(104vw, 760px);
  }
}



.landing-hero{
  min-height:calc(100vh - 170px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px 0 10px;
}

.landing-hero-inner{
  width:min(100%, 760px);
  margin:0 auto;
  text-align:center;
}

.landing-app-icon{
  display:block;
  width:min(41vw, 380px);
  max-width:100%;
  height:auto;
  margin:0 auto 24px;
  border-radius:22.5%;
  box-shadow:
    0 18px 44px rgba(0,0,0,.42),
    0 0 38px rgba(212,168,75,.14);
}

.landing-kicker{
  margin:0 0 14px;
  color:var(--gold);
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.landing-title{
  margin:0;
  color:var(--text);
  font-size:clamp(2.6rem, 6vw, 4.4rem);
  line-height:1.02;
  letter-spacing:-.04em;
}

.landing-subhead{
  width:min(100%, 760px);
  margin:0 auto 0;
  color:var(--muted);
  font-size:clamp(1.05rem, 2vw, 1.32rem);
  line-height:1.6;
}

.landing-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:24px;
}

.landing-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
}

.landing-btn-primary{
  color:#15120b;
  background:linear-gradient(180deg, #e4bd63 0%, #d4a84b 100%);
  box-shadow:0 12px 28px rgba(0,0,0,.22);
}

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

.landing-inline-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 18px;
  margin-top:22px;
}

.landing-inline-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
}

.landing-inline-links a:hover{
  color:var(--gold);
}

.footer-plain{
  margin-top:8px;
  padding:10px 0 28px;
  border:none;
  background:transparent;
  box-shadow:none;
}

.footer-plain::before{
  display:none;
}

.footer-plain-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 18px;
}

.footer-plain-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
}

.footer-plain-links a:hover{
  color:var(--gold);
}

@media (max-width: 720px){
  .landing-hero{
    min-height:calc(100vh - 150px);
    padding:10px 0 2px;
  }

  .landing-app-icon{
    width:min(58vw, 260px);
    margin-bottom:18px;
  }

  .landing-title{
    font-size:clamp(2.15rem, 12vw, 3.3rem);
  }

  .landing-subhead{
    font-size:1.02rem;
  }

  .landing-actions{
    flex-direction:column;
    align-items:center;
  }

  .landing-btn{
    width:min(100%, 320px);
  }
}
