:root {
  --emerald-950: #031f18;
  --emerald-900: #063427;
  --emerald-800: #0b3d2e;
  --gold: #d4af37;
  --gold-light: #f0d87a;
  --ink: #101814;
  --muted: #607069;
  --cream: #f8f6ef;
  --white: #ffffff;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 24px 70px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3,31,24,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  letter-spacing: .22em;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}
.brand img { width: 42px; height: 42px; }
.nav-links { display: flex; gap: 28px; color: rgba(255,255,255,.82); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }

.hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(212,175,55,.20), transparent 28%),
    linear-gradient(135deg, var(--emerald-950), var(--emerald-800));
  color: white;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin-top: 0;
}
h1 { font-size: clamp(3rem, 7vw, 6.4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.hero p { max-width: 700px; color: rgba(255,255,255,.78); font-size: 1.15rem; }
.hero-logo {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.hero-logo img { border-radius: 20px; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: #1c1707; }
.button-secondary { border: 1px solid rgba(255,255,255,.32); color: white; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 90px 0;
}
.section-intro { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.cards {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: white;
  border: 1px solid rgba(11,61,46,.10);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(10,40,30,.07);
}
.card.featured {
  background: linear-gradient(145deg, var(--emerald-900), var(--emerald-800));
  color: white;
  border-color: var(--line);
}
.card p { color: var(--muted); }
.card.featured p { color: rgba(255,255,255,.72); }
.card .label {
  display: inline-block;
  color: var(--gold);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.page-hero {
  background: linear-gradient(135deg, var(--emerald-950), var(--emerald-800));
  color: white;
  padding: 100px 0 76px;
}
.page-hero > div { width: min(960px, calc(100% - 32px)); margin: auto; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 720px; }

.tool-shell {
  min-height: 68vh;
  background: #06140f;
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tool-toolbar {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tool-placeholder {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.7);
  background:
    radial-gradient(circle at center, rgba(20,120,90,.35), transparent 33%),
    linear-gradient(#06140f, #020806);
  padding: 30px;
}

.contact-box {
  max-width: 760px;
  background: white;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 14px 40px rgba(10,40,30,.08);
}
.footer {
  background: var(--emerald-950);
  color: rgba(255,255,255,.7);
  border-top: 1px solid var(--line);
}
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo { max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; font-size: .9rem; }
}
@media (max-width: 560px) {
  .brand span { display: none; }
  .nav-links { gap: 12px; font-size: .82rem; }
  .footer-inner { flex-direction: column; }
}