@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root{
  --bg:#0d0d0e;
  --shell:rgba(13,13,14,.96);

  --surface:#141414;
  --surface-soft:#181818;
  --surface-raised:#1d1d1d;

  --ink:#f3efe7;
  --muted:rgba(243,239,231,.67);
  --faint:rgba(243,239,231,.46);

  --gold:#d7b56d;
  --gold-strong:#e0be79;
  --gold-soft:rgba(215,181,109,.09);

  --line:rgba(255,255,255,.075);
  --line-gold:rgba(215,181,109,.23);

  --max:1320px;

  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:8px;

  --shadow-sm:0 10px 24px rgba(0,0,0,.24);
  --shadow-md:0 18px 42px rgba(0,0,0,.34);

  --fast:.16s ease;
}

@media (min-width:1600px){
  :root{
    --max:1400px;
  }
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  min-height:100%;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.68;
  letter-spacing:-.01em;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6{
  margin:0 0 .55em;
  color:var(--ink);
  font-weight:600;
  letter-spacing:-.035em;
  line-height:1.12;
}

h1{
  font-size:clamp(2rem, 4vw, 3.35rem);
}

h2{
  font-size:clamp(1.5rem, 2.4vw, 2.25rem);
}

h3{
  font-size:1.08rem;
}

p{
  margin:0 0 1rem;
}

strong{
  color:var(--ink);
  font-weight:600;
}

a{
  color:var(--gold-strong);
  text-decoration-thickness:1px;
  text-underline-offset:3px;
  transition:color var(--fast), opacity var(--fast), border-color var(--fast);
}

a:hover{
  color:#edcf92;
}

/* Layout */

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 24px;
}

main{
  max-width:var(--max);
  margin:0 auto;
  padding:30px 24px 58px;
}

/* Header */

header.site{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--shell);
  backdrop-filter:blur(9px);
  border-bottom:1px solid var(--line);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:76px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  color:var(--ink);
  text-decoration:none;
}

.brand:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:4px;
  border-radius:10px;
}

.logo{
  width:54px;
  height:54px;
  flex:0 0 54px;
  border-radius:10px;
  background-image:url("/images/hawk-of-justice3-sitelogo.png");
  background-size:contain;
  background-position:center;
  background-repeat:no-repeat;
}

.brand h1{
  margin:0;
  color:var(--ink);
  font-size:1.08rem;
  font-weight:650;
  letter-spacing:-.025em;
}

.brand small{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:.78rem;
  font-weight:500;
}

/* Navigation */

header.site .nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:.2rem;
  flex-wrap:wrap;
}

/*
  Dropdown fix:
  The old top: calc(100% + 10px) created a dead hover gap.
  This keeps the dropdown touching the parent, then adds visual spacing internally.
*/

.nav-group{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.nav-group::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:10px;
}

.nav-dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  padding:8px;
  background:#151515;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow-md);
  display:none;
  z-index:80;
}

.nav-dropdown::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-10px;
  height:10px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown{
  display:block;
}

.nav-dropdown a{
  display:block;
  padding:9px 10px;
  border-radius:8px;
  color:rgba(243,239,231,.86);
  font-size:.88rem;
  font-weight:500;
  text-decoration:none;
  white-space:nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible{
  background:rgba(255,255,255,.045);
  color:var(--ink);
  outline:none;
}

/* Buttons */

.btn{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 13px;
  border:1px solid var(--line);
  border-radius:10px;
  background:transparent;
  color:rgba(243,239,231,.9);
  cursor:pointer;
  font-size:.88rem;
  font-weight:600;
  line-height:1.2;
  text-decoration:none;
  transition:
    background var(--fast),
    border-color var(--fast),
    color var(--fast),
    transform var(--fast);
}

.btn:hover{
  background:rgba(255,255,255,.035);
  border-color:rgba(255,255,255,.14);
  color:var(--ink);
  transform:translateY(-1px);
}

.btn:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

.btn.accent{
  color:var(--gold-strong);
  border-color:var(--line-gold);
  background:transparent;
}

.btn.accent:hover{
  background:var(--gold-soft);
  border-color:rgba(215,181,109,.4);
}

.btn.ghost{
  border-color:transparent;
  background:transparent;
  color:rgba(243,239,231,.74);
  font-weight:550;
}

.btn.ghost:hover,
.btn.ghost:focus-visible{
  background:rgba(255,255,255,.04);
  color:var(--ink);
}

.nav .btn.ghost.active{
  background:rgba(255,255,255,.055);
  color:var(--ink);
}

.btn.block{
  width:100%;
  padding:13px 16px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:2px 7px;
  border:1px solid rgba(215,181,109,.23);
  border-radius:999px;
  background:rgba(215,181,109,.1);
  color:var(--gold-strong);
  font-size:.67rem;
  font-weight:700;
  line-height:1.1;
}

/* Sections */

section{
  margin:34px 0;
}

.panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
}

.panel .pad{
  padding:28px;
}

h2.section{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 17px;
  padding-bottom:13px;
  border-bottom:1px solid var(--line);
}

h2.section::before{
  content:"";
  width:20px;
  height:1px;
  flex:0 0 20px;
  background:var(--gold);
  opacity:.82;
  border-radius:999px;
}

p.lead{
  max-width:72ch;
  color:rgba(243,239,231,.82);
  font-size:1.05rem;
}

p.muted,
.muted,
.note{
  color:var(--muted);
}

.note{
  font-size:.82rem;
}

/* Hero */

.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  min-height:auto;
  padding:20px 0 8px;
  text-align:center;
}

.hero-main{
  width:100%;
  max-width:770px;
  margin:0 auto;
}

.hero-centered h2.section{
  justify-content:center;
  margin-bottom:14px;
  padding-bottom:0;
  border-bottom:0;
}

.hero-centered h2.section::before{
  display:none;
}

.hero h2.section{
  font-size:clamp(2rem, 4vw, 3.05rem);
  letter-spacing:-.045em;
  line-height:1.08;
}

.hero-logo{
  display:block;
  max-width:165px;
  height:auto;
  margin:0 auto 4px;
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:12px;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.025);
  color:var(--muted);
  font-size:.74rem;
  font-weight:500;
}

/* Hero offer cards */

.hero-offers{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
  width:100%;
  margin:1.55rem 0 1.6rem;
}

.hero-offer{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:112px;
  padding:1rem 1.1rem;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface-soft);
  text-align:left;
  text-decoration:none;
  transition:
    background var(--fast),
    border-color var(--fast),
    transform var(--fast);
}

.hero-offer strong{
  margin-bottom:.25rem;
  color:var(--ink);
  font-size:.95rem;
}

.hero-offer span{
  color:var(--muted);
  font-size:.84rem;
}

.hero-offer:hover{
  background:var(--surface-raised);
  border-color:var(--line-gold);
  transform:translateY(-2px);
}

/* Aside */

.hero-aside{
  width:100%;
  max-width:790px;
  align-self:center;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:var(--surface-soft);
  text-align:left;
}

.aside-title{
  margin:0 0 6px;
  color:var(--ink);
  font-size:.96rem;
}

.aside-list{
  margin:6px 0 0;
  padding-left:18px;
  color:var(--muted);
  font-size:.92rem;
}

/* Stats */

.stats{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:18px;
}

.stat{
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface-soft);
}

.stat .big{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--ink);
  font-size:.98rem;
  font-weight:600;
}

.stat .small{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:.8rem;
}

.ico{
  display:inline-block;
  width:18px;
  height:18px;
}

/* Grids */

ul.clean{
  display:grid;
  gap:16px;
  margin:0;
  padding:0;
  list-style:none;
}

.grid{
  display:grid;
  gap:16px;
}

.grid-two{
  grid-template-columns:1fr;
}

/* Cards */

.item,
.feature,
.check{
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface-soft);
}

.item{
  padding:18px;
  transition:
    background var(--fast),
    border-color var(--fast),
    transform var(--fast);
}

.item:hover{
  background:var(--surface-raised);
  border-color:var(--line-gold);
  transform:translateY(-2px);
}

.feature{
  overflow:hidden;
}

.feature header{
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.012);
}

.feature header h3{
  margin:0;
  color:var(--ink);
  font-size:1.02rem;
}

.feature .content{
  padding:18px 20px;
  color:var(--muted);
}

.feature .actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:14px 20px 18px;
  border-top:1px solid var(--line);
}

/* Checklists */

.checks{
  display:grid;
  gap:12px;
}

.check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:13px 14px;
}

.tick{
  width:20px;
  height:20px;
  flex:0 0 20px;
}

.check strong{
  color:var(--ink);
  font-size:.95rem;
}

.check .muted{
  font-size:.9rem;
}

/* Steps */

.steps{
  display:grid;
  gap:14px;
}

.step{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  flex:0 0 28px;
  margin-top:2px;
  border:1px solid rgba(215,181,109,.24);
  border-radius:999px;
  background:rgba(215,181,109,.12);
  color:var(--gold-strong);
  font-size:.84rem;
  font-weight:700;
}

.step-body h3{
  margin:0 0 4px;
  color:var(--ink);
  font-size:.98rem;
}

.step-body p{
  margin:0;
  color:var(--muted);
  font-size:.93rem;
}

/* Forms */

form{
  display:grid;
  gap:10px;
  margin-top:14px;
}

input,
textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#101010;
  color:var(--ink);
  outline:none;
  font:inherit;
  font-size:.95rem;
  transition:
    border-color var(--fast),
    background var(--fast),
    box-shadow var(--fast);
}

input::placeholder,
textarea::placeholder{
  color:rgba(243,239,231,.4);
}

input:focus,
textarea:focus{
  border-color:rgba(215,181,109,.4);
  background:#131313;
  box-shadow:0 0 0 3px rgba(215,181,109,.08);
}

textarea{
  min-height:120px;
  resize:vertical;
}

/* Footer */

footer.site{
  padding:14px 0 16px;
  border-top:1px solid var(--line);
  background:transparent;
  color:var(--muted);
  font-size:.8rem;
}

.footer-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:18px;
}

.footer-left{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.footer-brand{
  color:var(--ink);
  font-weight:600;
  white-space:nowrap;
}

.footer-tagline{
  color:var(--muted);
  font-size:.78rem;
}

.footer-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:8px;
  font-size:.78rem;
}

.footer-nav a{
  padding:3px 6px;
  border:1px solid transparent;
  border-radius:8px;
  color:var(--muted);
  text-decoration:none;
}

.footer-nav a:hover{
  border-color:var(--line);
  background:rgba(255,255,255,.035);
  color:var(--ink);
}

.footer-meta{
  margin-top:4px;
  text-align:center;
}

.footer-meta p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:.76rem;
}

.footer-meta a{
  color:var(--gold-strong);
  text-decoration:none;
  border-bottom:1px solid rgba(215,181,109,.34);
}

.footer-meta a:hover{
  border-bottom-color:rgba(215,181,109,.7);
}

/* Helpers */

.cta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}

.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;
}

/* Responsive */

@media (min-width:980px){
  .stats{
    grid-template-columns:repeat(3, 1fr);
  }

  .grid-two{
    grid-template-columns:repeat(2, 1fr);
  }

  .feature-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
  }
}

@media (max-width:900px){
  .feature-grid{
    grid-template-columns:1fr;
  }

  header.site .nav{
    justify-content:flex-start;
  }
}

@media (max-width:720px){
  .wrap{
    padding:16px 18px;
  }

  main{
    padding:24px 18px 48px;
  }

  .topbar{
    align-items:flex-start;
    flex-direction:column;
  }

  header.site .nav{
    width:100%;
    gap:6px;
  }

  .nav-group{
    width:auto;
  }

  .nav-dropdown{
    min-width:210px;
  }

  .hero{
    align-items:flex-start;
    text-align:left;
  }

  .hero-centered h2.section{
    justify-content:flex-start;
  }

  .hero-logo{
    margin-left:0;
  }

  .hero-offers{
    grid-template-columns:1fr;
  }

  .hero-cta,
  .chips{
    justify-content:flex-start;
  }

  .cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-bar{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-nav{
    justify-content:flex-start;
  }
}