/* Creator Circle — shared stylesheet */
:root {
  --bg: #06080D;
  --bg-soft: #0C111A;
  --ink: #F0F5FA;
  --ink-soft: #9DAFC2;
  --accent: #2F92DB;
  --accent-dark: #5FB8F7;
  --line: #1C2735;
  --card: #0C111A;
  --radius: 14px;
  --maxw: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: .6em; }
h3 { font-size: 1.2rem; margin-bottom: .4em; }
p { color: var(--ink-soft); }
a { color: var(--accent-dark); }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

/* Header */
header {
  border-bottom: 1px solid var(--line);
  background: rgba(6,8,13,.88);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--maxw); margin: 0 auto;
}
.logo {
  font-family: "Fraunces", Georgia, serif; font-weight: 700;
  font-size: 1.25rem; color: var(--ink); text-decoration: none;
}
.logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: .95rem;
}
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-block; background: var(--accent); color: #fff !important;
  text-decoration: none; padding: 12px 24px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; border: none; cursor: pointer;
  transition: background .15s ease;
}
.btn { box-shadow: 0 0 22px rgba(62,166,240,.35); }
.btn:hover { background: var(--accent-dark); box-shadow: 0 0 30px rgba(95,184,247,.55); }
.btn.big { padding: 15px 32px; font-size: 1.05rem; }
.btn.ghost {
  background: transparent; color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}
.btn.ghost { box-shadow: none; }
.btn.ghost:hover { background: var(--ink); color: var(--bg) !important; }

/* Sections */
section { padding: 72px 0; }
.hero { padding: 96px 0 80px; text-align: center; }
.hero .kicker {
  display: inline-block; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent-dark); font-weight: 600;
  margin-bottom: 18px; opacity: .85;
}
.hero p.lead {
  font-size: 1.2rem; max-width: 640px; margin: 22px auto 34px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .subnote { margin-top: 16px; font-size: .88rem; color: var(--ink-soft); }

.soft { background: var(--bg-soft); }
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.card h3 { margin-bottom: .5em; }
.num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700;
  font-size: .95rem; margin-bottom: 14px;
}

/* For / not for */
.fornot .card ul { list-style: none; margin-top: 10px; }
.fornot .card li {
  padding: 9px 0 9px 30px; position: relative; color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.fornot .card li:last-child { border-bottom: none; }
.fornot .yes li::before { content: "✓"; position: absolute; left: 0; color: #56C98B; font-weight: 700; }
.fornot .no li::before { content: "✕"; position: absolute; left: 0; color: #E86A6A; font-weight: 700; }

/* FAQ */
details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 12px;
}
details summary {
  cursor: pointer; font-weight: 600; font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 30px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--accent); font-size: 1.3rem; line-height: 1;
}
details[open] summary::after { content: "–"; }
details p { margin-top: 12px; }

/* Form */
form .field { margin-bottom: 18px; }
label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 10px; font: inherit; background: var(--card); color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent);
}
.hint { font-size: .82rem; color: var(--ink-soft); margin-top: 5px; }

/* Article pages */
.article { padding: 64px 0; }
.article h1 { margin-bottom: .4em; }
.article .meta { font-size: .88rem; color: var(--ink-soft); margin-bottom: 2.2em; }
.article h2 { margin-top: 1.8em; }
.article h3 { margin-top: 1.4em; }
.article p, .article li { margin-bottom: 1em; color: var(--ink-soft); }
.article ul, .article ol { padding-left: 1.3em; margin-bottom: 1em; }
.article blockquote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 20px;
  margin: 1.5em 0; font-style: italic; color: var(--ink);
}
.article .cta-box {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; margin-top: 2.5em; text-align: center;
}
.article .cta-box p { margin-bottom: 1.2em; }

/* Footer */
footer {
  border-top: 1px solid var(--line); padding: 44px 0 36px;
  font-size: .88rem; color: var(--ink-soft);
}
footer .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer a { color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--ink); }
footer nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* Letter-style landing (v2) */
.letter { max-width: 620px; margin: 0 auto; padding: 0 24px; }
.rule { border: none; border-top: 1px solid var(--line); max-width: 620px; margin: 0 auto; }
.note p { font-size: 1.08rem; margin-bottom: 1.1em; }
.note .sig { font-family: "Fraunces", Georgia, serif; font-size: 1.3rem; color: var(--ink); margin-top: 1.4em; }
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; text-align: left; }
@media (max-width: 640px) { .twocol { grid-template-columns: 1fr; gap: 22px; } }
.twocol h3 { font-size: 1.05rem; margin-bottom: 10px; }
.twocol ul { list-style: none; }
.twocol li { padding: 6px 0 6px 26px; position: relative; color: var(--ink-soft); font-size: .97rem; }
.twocol .yes li::before { content: "✓"; position: absolute; left: 0; color: #56C98B; font-weight: 700; }
.twocol .no li::before { content: "✕"; position: absolute; left: 0; color: #E86A6A; font-weight: 700; }
.steps-line { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--ink-soft); font-size: .97rem; }
.steps-line .arrow { color: var(--accent); font-weight: 700; }

/* Dark-neon additions */
.logo img { height: 26px; width: auto; vertical-align: -5px; margin-right: 8px; }
.hero-badge { width: 170px; height: 170px; margin: 0 auto 10px; display: block; }
.steps-line .arrow { color: var(--accent-dark); }

/* ============================================================
   PREMIUM POLISH PASS
   ============================================================ */

/* Softer global radii + refined nav */
:root { --radius: 16px; }
.nav-links { gap: 30px; }
.nav-links a { letter-spacing: .01em; transition: color .15s ease; }
.nav .btn { letter-spacing: .01em; }

/* Gradient CTA button */
.btn { background: linear-gradient(135deg, #3AA0EB, #2C7FCE); box-shadow: 0 8px 24px -10px rgba(47,146,219,.7); }
.btn:hover { background: linear-gradient(135deg, #5FB8F7, #3892E2); box-shadow: 0 10px 30px -8px rgba(95,184,247,.75); }

/* Refined content links — no more default blue underlines */
.article a:not(.btn), .note a:not(.btn), .letter a:not(.btn), .cta-box a:not(.btn) {
  color: var(--accent-dark); text-decoration: none;
  border-bottom: 1px solid rgba(95,184,247,.28);
  transition: color .15s ease, border-color .15s ease;
}
.article a:not(.btn):hover, .note a:not(.btn):hover, .letter a:not(.btn):hover, .cta-box a:not(.btn):hover {
  color: #fff; border-bottom-color: var(--accent-dark);
}

/* Hero ambient glow + badge glow */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -14%; left: 50%; transform: translateX(-50%);
  width: 720px; max-width: 130%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(47,146,219,.15), transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-badge { filter: drop-shadow(0 0 46px rgba(47,146,219,.38)); }

/* Premium base card */
.card {
  background: linear-gradient(180deg, #0E1420, #0A0F18);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 16px 36px -24px rgba(0,0,0,.85);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card h3 { font-family: "Fraunces", Georgia, serif; }
.card h3 a { color: var(--ink); text-decoration: none; border: none; }
.card h3 a:hover { color: var(--accent-dark); }

/* Clickable premium card grid (tools + guides index) */
.linkcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .linkcards { grid-template-columns: 1fr; } }
.linkcard {
  display: block; position: relative; text-decoration: none;
  background: linear-gradient(180deg, #0E1420, #0A0F18);
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px;
  box-shadow: 0 16px 36px -26px rgba(0,0,0,.9);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.linkcard:hover {
  transform: translateY(-3px);
  border-color: rgba(95,184,247,.45);
  box-shadow: 0 26px 46px -26px rgba(47,146,219,.5);
}
.linkcard .tag {
  display: inline-block; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 600; opacity: .85; margin-bottom: 12px;
}
.linkcard h3 { font-family: "Fraunces", Georgia, serif; color: var(--ink); font-size: 1.18rem; margin: 0 0 .35em; }
.linkcard p { color: var(--ink-soft); font-size: .94rem; margin: 0; padding-right: 18px; }
.linkcard .arrow {
  position: absolute; top: 26px; right: 24px; color: var(--accent-dark);
  opacity: 0; transform: translateX(-5px); transition: opacity .18s ease, transform .18s ease; font-size: 1.1rem;
}
.linkcard:hover .arrow { opacity: 1; transform: translateX(0); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .eyebrow {
  display: inline-block; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 600; opacity: .85; margin-bottom: 12px;
}
.section-head p { max-width: 560px; margin: 12px auto 0; }

/* FAQ + CTA + forms: subtle gradient to match cards */
details { background: linear-gradient(180deg, #0E1420, #0A0F18); }
.article .cta-box {
  background: radial-gradient(120% 140% at 50% 0%, rgba(47,146,219,.10), transparent 55%), linear-gradient(180deg, #0E1420, #0A0F18);
  box-shadow: 0 16px 40px -28px rgba(0,0,0,.9);
}
.tool-box { box-shadow: 0 20px 50px -30px rgba(0,0,0,.9); }

/* Divider rule a touch softer */
.rule { border-top-color: rgba(255,255,255,.06); }

/* Section rhythm */
.hero { padding-top: 108px; }

/* ============================================================
   RESOURCE-SITE LAYOUT (homepage reframe)
   ============================================================ */
.hero.compact { padding: 84px 0 4px; text-align: center; }
.hero.compact h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.hero.compact .lead { font-size: 1.15rem; max-width: 620px; margin: 20px auto 26px; }
.hero.compact .quicklinks { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: .95rem; }
.hero.compact .quicklinks a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.hero.compact .quicklinks a:hover { color: var(--ink); border-bottom-color: var(--accent-dark); }

.section-head.row { display: flex; align-items: baseline; justify-content: space-between; text-align: left; margin-bottom: 24px; gap: 16px; }
.section-head.row h2 { margin: 0; }
.section-head.row .seeall { font-size: .92rem; color: var(--ink-soft); text-decoration: none; white-space: nowrap; border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.section-head.row .seeall:hover { color: var(--ink); border-bottom-color: var(--accent-dark); }

/* Calm community band */
.band {
  background: radial-gradient(130% 160% at 0% 0%, rgba(47,146,219,.10), transparent 55%), linear-gradient(180deg, #0E1420, #0A0F18);
  border: 1px solid var(--line); border-radius: 20px; padding: 40px 44px;
  display: flex; gap: 34px; align-items: center;
  box-shadow: 0 20px 50px -32px rgba(0,0,0,.9);
}
.band img { width: 116px; height: 116px; flex: 0 0 auto; filter: drop-shadow(0 0 30px rgba(47,146,219,.3)); }
.band .body { flex: 1; }
.band .body h2 { font-size: 1.5rem; margin-bottom: .35em; }
.band .body p { margin-bottom: 1.1em; max-width: 60ch; }
.band .meta-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 640px) {
  .band { flex-direction: column; text-align: center; padding: 34px 24px; }
  .band .body p { margin-left: auto; margin-right: auto; }
}
