/* ============================================================
   Ada Newsroom — Main Stylesheet
   3Desk | adadesk.ai
   ============================================================ */

/* ------------------------------------------------------------
   BRAND
   ------------------------------------------------------------ */
.brand-d { color: #FF8200; }
.visually-hidden { display: none; }

/* ------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #FAFAF9;
  color: #1C1917;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }

/* ------------------------------------------------------------
   SHARED UTILITIES
   ------------------------------------------------------------ */
.cat-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C3AED;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: #EDE7FB;
  color: #7C3AED;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name { font-size: 14px; color: #44403C; font-weight: 500; }
.author-sep  { font-size: 14px; color: #A8A29E; }
.author-date { font-size: 14px; color: #78716C; white-space: nowrap; }

/* ------------------------------------------------------------
   NAV / HEADER
   ------------------------------------------------------------ */
header { border-bottom: 1px solid #ECEBE8; background: #FAFAF9; }
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
nav img { height: 28px; width: auto; display: block; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 8px; }

.nav-pill {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 7px 16px;
  border-radius: 100px;
  background: #F1F0ED;
  color: #57534E;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-pill:hover { background: #7C3AED; color: #FFFFFF; }
.nav-pill.active { background: #7C3AED; color: #FFFFFF; }

.nav-pill-3desk {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 7px 16px;
  border-radius: 100px;
  background: #F1F0ED;
  color: #57534E;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-pill-3desk:hover { background: #E9E7E3; }

/* ------------------------------------------------------------
   NEWSLETTER FOOTER BAR
   ------------------------------------------------------------ */
.footer-news { border-top: 1px solid #ECEBE8; background: #FFFFFF; margin-top: 80px; }
.footer-news-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-news-title { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: #1C1917; }
.footer-news-sub   { font-size: 13px; color: #78716C; margin-top: 4px; }
.footer-news-form  { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-news-form input[type="email"] {
  width: 260px;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid #ECEBE8;
  border-radius: 100px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1C1917;
  background: #FAFAF9;
  outline: none;
  transition: border-color 0.15s;
}
.footer-news-form input[type="email"]:focus { border-color: #7C3AED; }
.footer-news-form button {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border: none;
  border-radius: 100px;
  background: #7C3AED;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.15s;
}
.footer-news-form button:hover { background: #6D28D9; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer { border-top: 1px solid #ECEBE8; background: #FAFAF9; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
}
footer img { height: 22px; width: auto; display: block; }
.footer-center { font-size: 13px; color: #78716C; text-align: center; flex: 1; min-width: 200px; }
.footer-right {
  font-size: 13px;
  color: #78716C;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-right a  { color: #7C3AED; font-weight: 500; }
.footer-center a { color: #7C3AED; font-weight: 500; text-decoration: none; }
.footer-center a:hover { text-decoration: underline; }
.footer-sep      { color: #D6D3D1; }
.footer-social { display: inline-flex; align-items: center; gap: 0.3em; color: #7C3AED; transition: color 0.15s; }
.footer-social:hover { color: #6D28D9; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ------------------------------------------------------------
   HOMEPAGE
   ------------------------------------------------------------ */
main { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.hero { padding: 72px 0 40px; max-width: 760px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1C1917;
}
.hero p {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: #57534E;
  letter-spacing: -0.01em;
  max-width: 680px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 0 44px;
  border-bottom: 1px solid #ECEBE8;
}
.filter-pill {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 9px 17px;
  border-radius: 100px;
  background: #F1F0ED;
  color: #57534E;
  transition: background 0.15s;
  cursor: pointer;
}
.filter-pill:hover { background: #E9E7E3; }
.filter-pill.active { background: #7C3AED; color: #FFFFFF; }

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ECEBE8;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  margin-top: 48px;
  transition: box-shadow 0.2s;
}
.featured-card:hover { box-shadow: 0 4px 24px rgba(124,58,237,0.10); }

.featured-img {
  min-height: 380px;
  background: repeating-linear-gradient(135deg, #F3F0FB 0 14px, #EAE4F8 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.featured-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: 20% center; }
.featured-img-placeholder {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #A78BFA;
  background: rgba(250,250,249,0.85);
  padding: 6px 12px;
  border-radius: 6px;
}

.featured-body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body h2 {
  margin-top: 16px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #1C1917;
}
.featured-body p {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #57534E;
  letter-spacing: -0.01em;
}
.author-row { margin-top: 28px; display: flex; align-items: center; gap: 12px; }

.article-grid {
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.article-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #ECEBE8;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.article-card:hover { box-shadow: 0 4px 24px rgba(124,58,237,0.10); }

.article-img {
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(135deg, #F3F0FB 0 14px, #EAE4F8 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-img-placeholder {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #A78BFA;
  background: rgba(250,250,249,0.85);
  padding: 5px 10px;
  border-radius: 6px;
}
.article-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.article-body h3 {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1C1917;
}
.article-body p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #57534E;
  letter-spacing: -0.01em;
  flex: 1;
}
.article-meta { margin-top: 22px; display: flex; align-items: center; gap: 10px; }
.article-meta .author-name { font-size: 13px; }
.article-meta .author-sep  { font-size: 13px; }
.article-meta .author-date { font-size: 13px; white-space: nowrap; }

.empty-state { padding: 80px 0; text-align: center; color: #78716C; font-size: 16px; }

/* ------------------------------------------------------------
   POST LAYOUT
   ------------------------------------------------------------ */
.post-excerpt { margin-bottom: 0; }
.post-hero {
  background: repeating-linear-gradient(135deg, #F3F0FB 0 14px, #EAE4F8 14px 28px);
  max-width: 740px;
  margin: 32px auto;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-hero img { width: 100%; height: auto; display: block; }
.post-hero-placeholder {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #A78BFA;
  background: rgba(250,250,249,0.85);
  padding: 8px 14px;
  border-radius: 6px;
}
.post-container { max-width: 740px; margin: 0 auto; padding: 0 32px; }
.post-header { padding: 56px 0 40px; }
.post-title {
  margin-top: 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1C1917;
}
.post-excerpt { margin-top: 20px; font-size: 19px; line-height: 1.55; color: #57534E; letter-spacing: -0.01em; }
.post-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 0;
}
.post-meta .author-avatar { width: 38px; height: 38px; }

.post-body { padding: 44px 0 80px; font-size: 18px; line-height: 1.72; color: #1C1917; letter-spacing: -0.01em; }
.post-body h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin: 44px 0 16px; }
.post-body h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin: 36px 0 12px; }
.post-body p  { margin-bottom: 24px; }
.post-body a  { color: #7C3AED; text-decoration: underline; }
.post-body ul, .post-body ol { margin: 0 0 24px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body table { width: 100%; border-collapse: collapse; margin: 0 0 28px; font-size: 16px; }
.post-body table thead th { background: #F5F3FF; color: #4C1D95; font-weight: 600; text-align: left; padding: 12px 16px; border-bottom: 2px solid #DDD6FE; }
.post-body table tbody td { padding: 12px 16px; border-bottom: 1px solid #E5E7EB; vertical-align: top; color: #1C1917; }
.post-body table tbody tr:last-child td { border-bottom: none; }
.post-body table tbody tr:nth-child(even) { background: #FAFAFA; }
.post-body .table-caption { font-size: 14px; color: #6B7280; margin-top: -20px; margin-bottom: 28px; font-style: italic; }

.post-body blockquote {
  border-left: 3px solid #7C3AED;
  padding-left: 20px;
  margin: 32px 0;
  color: #57534E;
  font-style: italic;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #7C3AED;
  margin: 32px 0 20px;
}
.back-link:hover { color: #6D28D9; }

/* ------------------------------------------------------------
   FAQ (shared: post sidebar + standalone page)
   ------------------------------------------------------------ */
.faq-section { padding: 32px 0 8px; border-top: 1px solid #ECEBE8; }
.faq-title   { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: #1C1917; margin-bottom: 18px; }
.faq-item    { border: 1px solid #ECEBE8; border-radius: 12px; background: #FFFFFF; margin-bottom: 10px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1C1917;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after  { content: "+"; color: #7C3AED; font-size: 20px; flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 18px; font-size: 15px; line-height: 1.6; color: #57534E; }

/* ------------------------------------------------------------
   RELATED ARTICLES (post)
   ------------------------------------------------------------ */
.related-section { padding: 48px 0 40px; }
.related-title   { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: #1C1917; margin-bottom: 20px; }
.related-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.related-card {
  display: block;
  background: #FFFFFF;
  border: 1px solid #ECEBE8;
  border-radius: 12px;
  padding: 18px;
  transition: box-shadow 0.2s;
}
.related-card:hover { box-shadow: 0 4px 24px rgba(124,58,237,0.10); }
.related-card .cat-tag { font-size: 10px; }
.related-card h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1C1917;
  line-height: 1.3;
  margin-top: 8px;
}
.related-card p { font-size: 12px; color: #78716C; margin-top: 10px; }

/* ------------------------------------------------------------
   FAQ PAGE (standalone)
   ------------------------------------------------------------ */
.faq-page { max-width: 740px; margin: 0 auto; padding: 56px 32px 100px; }
.faq-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C3AED;
  margin-bottom: 14px;
  display: block;
}
.faq-page h1 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1C1917;
  margin-bottom: 14px;
}
.faq-page-intro { font-size: 15px; line-height: 1.6; color: #57534E; }
.faq-search {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid #ECEBE8;
  border-radius: 100px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  color: #1C1917;
  background: #FFFFFF;
  outline: none;
  margin: 28px 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-search::placeholder { color: #C4BFB8; }
.faq-search:focus { border-color: #7C3AED; box-shadow: 0 0 0 3px rgba(124,58,237,0.08); }
.faq-source { padding: 0 20px 18px; font-size: 13px; color: #A8A29E; }
.faq-source a { color: #7C3AED; font-weight: 500; }
.faq-source a:hover { color: #6D28D9; }
.faq-empty { display: none; text-align: center; padding: 48px 0; color: #78716C; font-size: 15px; }
.faq-empty.visible { display: block; }

/* ------------------------------------------------------------
   LOCATOR QUESTIONNAIRE
   ------------------------------------------------------------ */
.survey-page { max-width: 640px; margin: 0 auto; padding: 56px 32px 100px; }
.survey-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7C3AED;
  margin-bottom: 14px;
  display: block;
}
.survey-page h1 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1C1917;
  margin-bottom: 14px;
}
.survey-intro { font-size: 15px; line-height: 1.6; color: #57534E; margin-bottom: 8px; }
.survey-meta  {
  font-size: 13px;
  color: #A8A29E;
  margin-bottom: 40px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.survey-meta span { color: #D6D3D1; }

.question-card {
  background: #FFFFFF;
  border: 1px solid #ECEBE8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
.question-num  { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: #7C3AED; margin-bottom: 8px; display: block; }
.question-text { font-size: 15px; font-weight: 600; color: #1C1917; line-height: 1.4; margin-bottom: 4px; letter-spacing: -0.01em; }
.question-hint { font-size: 13px; color: #A8A29E; margin-bottom: 14px; line-height: 1.5; }
.required      { color: #7C3AED; margin-left: 2px; }

textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px 14px;
  border: 1px solid #ECEBE8;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1C1917;
  background: #FAFAF9;
  resize: vertical;
  outline: none;
  line-height: 1.55;
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea::placeholder { color: #C4BFB8; }
textarea:focus { border-color: #7C3AED; box-shadow: 0 0 0 3px rgba(124,58,237,0.08); background: #fff; }

input[type="email"], input[type="text"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ECEBE8;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1C1917;
  background: #FAFAF9;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input[type="email"]::placeholder,
input[type="text"]::placeholder { color: #C4BFB8; }
input[type="email"]:focus,
input[type="text"]:focus { border-color: #7C3AED; box-shadow: 0 0 0 3px rgba(124,58,237,0.08); background: #fff; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #ECEBE8;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.radio-option:hover { border-color: #C4B5FD; background: #FAFAF9; }
.radio-option:last-of-type { margin-bottom: 0; }
.radio-option input[type="radio"] { width: 16px; height: 16px; accent-color: #7C3AED; cursor: pointer; flex-shrink: 0; }
.radio-option span { font-size: 14px; color: #1C1917; cursor: pointer; line-height: 1.4; flex: 1; }
.other-text {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ECEBE8;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #1C1917;
  background: #FAFAF9;
  outline: none;
  margin-top: 8px;
  display: none;
  transition: border-color 0.15s;
}
.other-text.visible { display: block; }
.other-text:focus { border-color: #7C3AED; background: #fff; }

.submit-row { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7C3AED;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 12px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s;
}
.submit-btn:hover { background: #6D28D9; }
.submit-note { font-size: 13px; color: #A8A29E; }

.success-msg { display: none; text-align: center; padding: 80px 32px; }
.success-msg.visible { display: block; }
.success-icon {
  width: 52px;
  height: 52px;
  background: #EDE7FB;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: #7C3AED;
}
.success-msg h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; color: #1C1917; margin-bottom: 10px; }
.success-msg p  { font-size: 15px; color: #57534E; line-height: 1.6; max-width: 440px; margin: 0 auto; }
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #7C3AED;
  margin-top: 24px;
}
.back-home:hover { color: #6D28D9; }
.success-link { color: #7C3AED; font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.success-link:hover { color: #6D28D9; }

/* ------------------------------------------------------------
   404 PAGE
   ------------------------------------------------------------ */
.nf-wrap { max-width: 640px; margin: 0 auto; padding: 90px 32px 140px; text-align: center; }
.nf-logo { width: 340px; max-width: 88%; height: auto; display: block; margin: 0 auto; }
.nf-bowl  { fill: none; stroke: #7C3AED; stroke-width: 40; }
.nf-stem  {
  stroke: #7C3AED;
  stroke-width: 40;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: nfStemPop 0.7s cubic-bezier(0.5,-0.3,0.7,1) 1.3s forwards;
}
.nf-spark       { stroke: #A78BFA; stroke-width: 16; stroke-linecap: round; }
.nf-spark-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: nfSparkPulse 0.5s ease-out 2.1s;
}
@keyframes nfStemPop {
  40%  { transform: translateY(-30px); opacity: 1; }
  100% { transform: translateY(-90px) scaleY(0.3); opacity: 0; }
}
@keyframes nfSparkPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}
.nf-msg    { font-size: 18px; line-height: 1.6; color: #1C1917; letter-spacing: -0.01em; margin-top: 40px; min-height: 30px; }
.nf-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #7C3AED;
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: nfBlink 0.9s step-end infinite;
}
@keyframes nfBlink { 50% { opacity: 0; } }
.nf-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #7C3AED;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 0.5s;
}
.nf-home:hover  { color: #6D28D9; }
.nf-home.visible { opacity: 1; }

/* ------------------------------------------------------------
   PRIVACY PAGE
   ------------------------------------------------------------ */
.privacy-page { max-width: 640px; margin: 0 auto; padding: 56px 32px 100px; }
.privacy-page h1 { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; color: #1C1917; margin-bottom: 24px; }
.privacy-body { font-size: 15px; line-height: 1.7; color: #57534E; }
.privacy-body p { margin-bottom: 16px; }
.privacy-body a { color: #7C3AED; }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  nav { padding: 14px 20px; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; flex-wrap: wrap; }

  main { padding: 0 20px; }
  .hero { padding: 48px 0 32px; }

  .featured-card { grid-template-columns: 1fr; }
  .featured-img  { min-height: 240px; }
  .featured-body { padding: 28px; }

  .post-container { padding: 0 20px; }
  .post-header    { padding: 40px 0 28px; }
  .post-hero      { height: 260px; }

  .footer-inner { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .footer-center { text-align: left; }

  .faq-page { padding: 40px 20px 80px; }

  .survey-page { padding: 40px 20px 80px; }

  .nf-wrap { padding: 60px 20px 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .nf-stem        { animation: none; opacity: 0; }
  .nf-spark-group { animation: none; }
  .nf-cursor      { animation: none; }
}
