/* Vertara — shared atelier styling (umbrella + product pages) */
:root {
  --bg: #0c0f17;
  --surface: #141926;
  --surface-2: #0a0d14;
  --text: #e9e7df;
  --muted: #9aa3b2;
  --gold: #c9a24b;
  --gold-hi: #dab65f;
  --line: rgba(255, 255, 255, 0.09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 80% -10%, #16203a 0%, var(--bg) 55%) no-repeat, var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.serif { font-family: Georgia, "Times New Roman", serif; }

/* nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .2px; text-decoration: none; color: var(--text); }
.brand svg { width: 26px; height: 26px; }
.brand .tag { color: var(--muted); font-weight: 500; }
nav .links { display: flex; gap: 26px; font-size: 14px; }
nav .links a { color: var(--muted); text-decoration: none; }
nav .links a:hover { color: var(--text); }

/* hero */
.hero { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; padding: 72px 0 56px; }
.hero.center { grid-template-columns: 1fr; text-align: center; place-items: center; }
.hero h1 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; font-size: 44px; line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.5px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { font-size: 18px; color: var(--muted); margin: 0 0 28px; max-width: 40ch; }
.hero.center p.lead { margin-left: auto; margin-right: auto; }
.eyebrow { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }

.cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero.center .cta { justify-content: center; }
.btn {
  display: inline-block; padding: 12px 20px; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 15px; border: 1px solid transparent; transition: .15s;
}
.btn-gold { background: var(--gold); color: #1a1407; }
.btn-gold:hover { background: var(--gold-hi); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* radar motif */
.radar { display: grid; place-items: center; }
.radar svg { width: 100%; max-width: 260px; height: auto; }
.sweep { transform-origin: 130px 130px; animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .sweep { animation: none; } }

/* sections */
section { padding: 48px 0; border-top: 1px solid var(--line); }
h2 { font-family: Georgia, serif; font-weight: 600; font-size: 26px; margin: 0 0 8px; }
.sub { color: var(--muted); margin: 0 0 30px; max-width: 60ch; }

/* generic cards / steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.card .n { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.card h3 { margin: 10px 0 6px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* product cards (umbrella) */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; }
.product.soon { opacity: .62; }
.product .status { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.product .status.live { color: var(--gold); }
.product .status.wip { color: var(--muted); }
.product h3 { font-family: Georgia, serif; font-size: 22px; margin: 12px 0 8px; }
.product p { color: var(--muted); margin: 0 0 20px; flex: 1; }
.product .go { margin-top: auto; }

/* principles strip */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principles div { font-size: 14.5px; color: var(--muted); }
.principles strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }

pre {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 22px; overflow-x: auto; font-size: 14px; line-height: 1.9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #cdd3dd;
}
pre .c { color: var(--muted); }
pre .g { color: var(--gold); }

.price { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.price .card h3 { font-size: 19px; }
.price .ptag { font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: .5px; }
.price ul { margin: 14px 0 20px; padding-left: 18px; color: var(--muted); font-size: 14.5px; }
.price li { margin: 6px 0; }

footer { border-top: 1px solid var(--line); padding: 36px 0 60px; color: var(--muted); font-size: 14px; }
footer .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding: 48px 0 36px; }
  .hero .radar { order: -1; }
  .hero h1 { font-size: 34px; }
  .steps, .price, .products, .principles { grid-template-columns: 1fr; }
}
