/* PumpCraft — landing site styles. Dark medieval theme (iron / wood / gold). */

:root {
  --bg:        #0d0b09;
  --bg-2:      #14100c;
  --panel:     #1b1611;
  --panel-2:   #211a13;
  --line:      #3a2f22;
  --steel:     #c6bcab;
  --text:      #ece4d4;
  --muted:     #a99f8c;
  --gold:      #d8b45a;
  --gold-2:    #b8912f;
  --red:       #9d2b2b;
  --blue:      #35507e;
  --radius:    12px;
  --maxw:      1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: #f0d78a; }

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 92px 0; }
.section.tight { padding: 64px 0; }

.eyebrow {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
}

.section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.lead { color: var(--muted); font-size: 18px; max-width: 720px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Cinzel", serif; font-weight: 700; font-size: 15px;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 26px; border-radius: 10px; cursor: pointer;
  border: 1px solid transparent; transition: transform .12s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #201603; border-color: #e7cd80;
  box-shadow: 0 8px 26px rgba(216,180,90,.28);
}
.btn-primary:hover { color: #201603; box-shadow: 0 12px 32px rgba(216,180,90,.42); }
.btn-ghost {
  background: rgba(255,255,255,.03); color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--text); border-color: var(--gold); }

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,11,9,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand span { font-family: "Cinzel", serif; font-weight: 700; font-size: 20px; letter-spacing: 1px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .btn { padding: 10px 18px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  background: #000;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/banner.png") center/cover no-repeat;
  opacity: .9;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,6,4,.92) 0%, rgba(8,6,4,.55) 42%, rgba(8,6,4,.15) 70%),
              linear-gradient(0deg, rgba(8,6,4,.95) 2%, rgba(8,6,4,0) 55%);
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; padding: 40px 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: rgba(0,0,0,.4);
  padding: 7px 14px; border-radius: 100px; font-size: 13px; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(40px, 7vw, 74px); text-shadow: 0 4px 30px rgba(0,0,0,.7); }
.hero h1 .accent { color: var(--gold); }
.hero p { margin: 20px 0 30px; font-size: 20px; color: #ddd3c2; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--muted); letter-spacing: .5px; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .15s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.card .ico {
  width: 52px; height: 52px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(216,180,90,.10); border: 1px solid var(--line); margin-bottom: 16px;
  font-size: 26px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.split img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { border: 1px solid var(--line); background: var(--panel); border-radius: 100px; padding: 7px 15px; font-size: 13px; color: var(--muted); }
.pill b { color: var(--gold); font-weight: 600; }

/* ---------- Roadmap ---------- */
.road { display: grid; gap: 16px; }
.road-item {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
}
.road-item .tag {
  font-family: "Cinzel", serif; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px; white-space: nowrap; height: fit-content;
}
.tag.live   { background: rgba(76,140,76,.18); color: #86c586; border: 1px solid #3f6b3f; }
.tag.soon   { background: rgba(216,180,90,.15); color: var(--gold); border: 1px solid var(--gold-2); }
.tag.plan   { background: rgba(120,120,120,.12); color: var(--muted); border: 1px solid var(--line); }
.road-item h3 { font-size: 18px; margin-bottom: 4px; }
.road-item p { color: var(--muted); font-size: 15px; }

/* ---------- CTA banner ---------- */
.cta {
  text-align: center; border: 1px solid var(--line); border-radius: 18px; padding: 60px 30px;
  background: radial-gradient(120% 140% at 50% 0%, rgba(216,180,90,.10), transparent 60%), var(--panel);
}
.cta h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.cta p { color: var(--muted); max-width: 560px; margin: 0 auto 26px; font-size: 17px; }

/* ---------- Forms (contact) ---------- */
.page-hero {
  padding: 70px 0 40px; border-bottom: 1px solid var(--line);
  background: radial-gradient(90% 120% at 20% 0%, rgba(53,80,126,.12), transparent 55%);
}
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.page-hero p { color: var(--muted); font-size: 18px; margin-top: 12px; max-width: 640px; }

.form-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 7px; letter-spacing: .3px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 9px;
  color: var(--text); padding: 13px 15px; font-family: inherit; font-size: 15px; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 6px; }

.contact-cards { display: grid; gap: 16px; }
.contact-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.contact-card .ico { font-size: 24px; margin-bottom: 10px; }
.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 15px; }
.contact-card p { color: var(--muted); }

.faq details {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; padding: 18px 0; font-family: "Cinzel", serif; font-size: 17px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 22px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 18px; font-size: 15px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer .brand span { font-size: 18px; }
.footer p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 320px; }
.footer h4 { font-family: "Cinzel", serif; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer li a { color: var(--muted); font-size: 14px; }
.footer li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: var(--muted); font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 18px 22px; gap: 16px;
  }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { min-height: 82vh; }
}
