:root {
  --bg: #0b0a09;
  --bg2: #100f0e;
  --panel: #151311;
  --panel2: #1b1815;
  --line: #2a2724;
  --ivory: #f1ede6;
  --muted: #9c958a;
  --soft: #c7c0b5;
  --accent: #e9e3d8;
  --gold: #caa75a;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(202, 167, 90, 0.06), transparent 60%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.14; margin: 0; letter-spacing: 0.01em; }
a { color: inherit; }
em { font-style: italic; color: var(--soft); }
.wrap { width: min(940px, 92vw); margin: 0 auto; }
.center { text-align: center; }

/* topbar */
.eg-topbar {
  position: sticky; top: 0; z-index: 20;
  padding: 14px 0;
  background: rgba(11, 10, 9, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.eg-topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.eg-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.eg-brand img { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); }
.eg-brand span { display: flex; flex-direction: column; line-height: 1.1; }
.eg-brand strong { font-size: 1.04rem; letter-spacing: 0.18em; text-transform: uppercase; }
.eg-brand small { color: var(--muted); font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; }

/* buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.96rem;
  border: 1px solid transparent; transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1.04rem; }
.btn-solid { background: var(--accent); color: #0b0a09; }
.btn-solid:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--ivory); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--soft); }
.btn-line { background: transparent; color: var(--soft); border-color: var(--line); padding: 9px 16px; font-size: 0.86rem; }
.btn-line:hover { border-color: var(--soft); }

/* sections */
main > section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.kicker {
  display: inline-block; color: var(--gold); font-size: 0.72rem;
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 14px;
}
.title { font-size: clamp(1.7rem, 4vw, 2.5rem); }

/* hero */
.eg-hero { padding: 86px 0 72px; text-align: center; border-bottom: 1px solid var(--line); }
.eg-hero h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); margin-bottom: 18px; }
.lead { color: var(--soft); font-size: clamp(1.05rem, 2.4vw, 1.3rem); max-width: 640px; margin: 0 auto; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 30px 0 14px; }
.hero-note { color: var(--muted); font-size: 0.88rem; letter-spacing: 0.02em; }

/* recog */
.recog ul { list-style: none; padding: 0; margin: 22px auto 0; max-width: 620px; text-align: left; }
.recog li { position: relative; padding: 10px 0 10px 30px; border-bottom: 1px solid var(--line); color: var(--soft); }
.recog li::before { content: "\2014"; position: absolute; left: 0; color: var(--gold); }
.recog.soft, .soft { color: var(--muted); }
p.recog.soft { margin-top: 24px; }

/* grids + cards */
.grid { display: grid; gap: 18px; margin-top: 30px; }
.grid-1 { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; text-align: left;
}
.card .ic { font-size: 1.6rem; margin-bottom: 10px; color: var(--gold); }
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }

/* quote */
.quote { font-family: var(--serif); font-size: clamp(1.3rem, 3.4vw, 1.9rem); line-height: 1.35; max-width: 760px; margin: 0 auto; }
.quote-by { color: var(--gold); margin-top: 16px; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; }

/* plans */
.plans .grid-2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.plan {
  background: linear-gradient(180deg, var(--panel2), var(--panel));
  border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; text-align: left;
  display: flex; flex-direction: column; gap: 6px;
}
.plan.featured { border-color: var(--gold); box-shadow: var(--shadow); position: relative; }
.pill {
  align-self: flex-start; background: var(--gold); color: #0b0a09; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 6px;
}
.pname { font-family: var(--serif); font-size: 1.5rem; }
.pwho { color: var(--muted); font-size: 0.92rem; }
.pprice { font-size: 2.2rem; font-weight: 700; margin-top: 8px; }
.pprice small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pday { color: var(--gold); font-size: 0.86rem; margin-bottom: 6px; }
.plan ul { list-style: none; padding: 0; margin: 12px 0 18px; }
.plan li { padding: 7px 0 7px 24px; position: relative; color: var(--soft); border-bottom: 1px solid var(--line); }
.plan li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); }
.plan .btn { text-align: center; margin-top: auto; }

/* faq */
.faq-head { margin-bottom: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-top: 12px;
  background: var(--panel);
}
.faq summary { cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); margin: 0 0 16px; }

/* final */
.final { text-align: center; border-bottom: none; }
.final .lead { margin: 16px auto 28px; }

/* footer */
.eg-foot { padding: 34px 0 48px; text-align: center; color: var(--muted); font-size: 0.9rem; }
.eg-foot a { color: var(--soft); }

@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  main > section { padding: 48px 0; }
}
