/* ==========================================================================
   THE STARTUP BLUEPRINT — Design tokens
   Concept: the visual language of a technical SEO audit / Lighthouse report.
   Ink navy + paper + signal green (the "good" score color), mono data labels,
   faint grid-paper backdrop, score-bar dividers instead of decorative rules.
   ========================================================================== */

:root {
  /* Color */
  --ink: #12172B;
  --ink-soft: #232B45;
  --paper: #F7F8F4;
  --paper-dim: #EEF0EA;
  --line: #D8DCE2;
  --muted: #5B6472;
  --signal: #1FAA59;
  --signal-dim: #E4F4EA;
  --amber: #E8A33D;
  --amber-dim: #FBEEDA;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Scale */
  --step--1: clamp(0.8rem, 0.78rem + 0.1vw, 0.875rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.18rem + 0.35vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.45rem + 0.75vw, 2.1rem);
  --step-3: clamp(2.1rem, 1.8rem + 1.5vw, 3.1rem);
  --step-4: clamp(2.6rem, 2.1rem + 2.5vw, 4.4rem);

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 6px;
  --radius-lg: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

body {
  margin: 0;
  background:
    linear-gradient(var(--paper) 0%, var(--paper) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(18,23,43,0.035) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(18,23,43,0.035) 40px);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-dim);
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; z-index: 200;
  font-family: var(--font-mono);
}
.skip-link:focus { left: var(--gutter); top: var(--gutter); }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  display: flex; align-items: baseline; gap: 0.4rem;
}
.logo .logo-mark {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 4px;
  padding: 0.05rem 0.35rem;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  margin: 0; padding: 0;
  font-size: 0.95rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--signal);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.45rem 0.6rem;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  position: relative; transition: transform 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-links { 
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    gap: 1.1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav .btn.nav-cta { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--ink); color: var(--paper);
}
.btn-primary:hover { background: var(--signal); border-color: var(--signal); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 0.6em; }
.hero-sub { font-size: 1.15rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-note {
  margin-top: 1.25rem; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--muted); letter-spacing: 0.02em;
}

/* Scorecard (signature element) */
.scorecard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 50px -25px rgba(18,23,43,0.25);
}
.scorecard-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.85rem; margin-bottom: 1.1rem;
}
.scorecard-head .dot-live {
  display: inline-flex; align-items: center; gap: 0.4em; color: var(--signal);
}
.scorecard-head .dot-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.metric-row { margin-bottom: 1.1rem; }
.metric-row:last-child { margin-bottom: 0; }
.metric-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.85rem; margin-bottom: 0.4rem;
}
.metric-label .metric-name { color: var(--ink-soft); font-weight: 600; }
.metric-label .metric-value { font-family: var(--font-mono); color: var(--signal); font-weight: 700; }
.metric-track {
  height: 8px; background: var(--paper-dim); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
}
.metric-fill {
  height: 100%; width: 0%; border-radius: 20px;
  background: linear-gradient(90deg, var(--signal), #58c988);
  transition: width 1.1s cubic-bezier(.2,.8,.2,1);
}

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 62ch; margin-bottom: 2.75rem; }
.section-head p { font-size: 1.05rem; }

/* score-bar divider — structural device used instead of decorative rules */
.scoreline {
  display: flex; align-items: center; gap: 0.6rem;
  margin: 0 0 1.25rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase;
}
.scoreline::after {
  content: ""; flex: 1; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 10px);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted);
}

/* ---------- Testimonials ---------- */
.testimonial-card { display: flex; flex-direction: column; gap: 1rem; }
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- FAQ Accordion ---------- */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item:last-child { border-bottom: none; }
.accordion-heading { margin: 0; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 1.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.accordion-trigger::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--signal);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion-trigger[aria-expanded="true"]::after {
  content: "−";
}
.accordion-trigger:hover { color: var(--signal); }
.accordion-panel {
  padding: 0 1.85rem 1.4rem;
}
.accordion-panel p { margin-bottom: 0; }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(18,23,43,0.3);
  border-color: #c3cbd6;
}
.card .tag {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--signal);
  background: var(--signal-dim);
  display: inline-block; padding: 0.25rem 0.6rem; border-radius: 20px;
  margin-bottom: 0.9rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Process (genuine sequence -> numbering justified) ---------- */
.process-log {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
  padding: 1.6rem 1.85rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.process-step .step-index {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--signal);
}
.process-step .step-index .step-num { display: block; font-size: 1.6rem; color: var(--ink); font-weight: 700; }
.process-step h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.process-step p { margin-bottom: 0; }
@media (max-width: 640px) { .process-step { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); font-size: var(--step-2); margin-bottom: 0.3em; }
.cta-band p { color: #C9CEDB; margin-bottom: 0; max-width: 45ch; }
.cta-band .btn-primary { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--white); border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink); margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.6rem; }
.footer-grid a { text-decoration: none; color: var(--muted); }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px dashed var(--line);
  font-family: var(--font-mono); font-size: 0.75rem;
}

/* ---------- Services page ---------- */
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
}
.service-card .price {
  font-family: var(--font-mono); font-size: 1.4rem; color: var(--ink);
  font-weight: 700;
}
.service-card .price small { font-family: var(--font-body); font-weight: 400; font-size: 0.7rem; color: var(--muted); }
.service-card .best-for {
  font-size: 0.8rem; color: var(--muted); font-style: normal;
}
.included, .excluded { margin: 0; padding: 0; list-style: none; }
.included li, .excluded li {
  padding-left: 1.4rem; position: relative; margin-bottom: 0.5rem; font-size: 0.92rem; color: var(--ink-soft);
}
.included li::before { content: "✓"; position: absolute; left: 0; color: var(--signal); font-weight: 700; }
.excluded li::before { content: "×"; position: absolute; left: 0; color: #B5504A; font-weight: 700; }
.service-card details summary {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted); cursor: pointer; margin-top: 0.25rem;
}
.service-card details[open] summary { color: var(--ink); }
.service-card details ul { margin-top: 0.75rem; }

.addon-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
table.addon-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
table.addon-table th, table.addon-table td {
  text-align: left; padding: 1rem 1.4rem; border-bottom: 1px solid var(--line);
}
table.addon-table th {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted); background: var(--paper-dim);
}
table.addon-table td.price-cell { font-family: var(--font-mono); font-weight: 700; }
table.addon-table tr:last-child td { border-bottom: none; }
table.addon-table tr:hover td { background: var(--paper-dim); }

/* Tabs (accordion-like on services page) */
.tabs-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.tab-btn {
  background: var(--white); border: 1px solid var(--line); border-radius: 30px;
  padding: 0.55rem 1.2rem; font-size: 0.85rem; font-weight: 600; color: var(--muted);
}
.tab-btn[aria-selected="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- About page ---------- */
.founder-block {
  display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.25rem;
}
@media (max-width: 700px) { .founder-block { grid-template-columns: 1fr; } }
.founder-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  background: linear-gradient(145deg, var(--ink), var(--ink-soft));
  display: flex; align-items: center; justify-content: center;
  color: var(--signal); font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700;
}
.value-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
.value-list li {
  display: grid; grid-template-columns: 44px 1fr; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
}
.value-list li:last-child { border-bottom: none; }
.value-list .v-mark {
  font-family: var(--font-mono); color: var(--signal); font-weight: 700; font-size: 1rem;
  border: 1px solid var(--signal); border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.timeline { border-left: 2px solid var(--line); padding-left: 1.75rem; margin-left: 0.5rem; display: grid; gap: 2rem; }
.timeline .t-item { position: relative; }
.timeline .t-item::before {
  content: ""; position: absolute; left: -1.95rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%; background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-dim);
}
.timeline .t-tag { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); text-transform: uppercase; }

/* ---------- Blog page ---------- */
.blog-toolbar {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.search-field {
  display: flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line); border-radius: 30px; background: var(--white);
  padding: 0.6rem 1.1rem; min-width: 260px;
  margin: 0;
}
.search-field input {
  border: none; outline: none; background: transparent; font-family: var(--font-body);
  font-size: 0.9rem; width: 100%; color: var(--ink);
}
.search-field form{
    display:flex;
    align-items:center;
    gap:0.6rem;
    width:100%;
    margin:0;
}

.search-field form input{
    flex:1;
}

.search-field form span{
    flex-shrink:0;
}
.chip-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); background: var(--white); border-radius: 30px;
  padding: 0.4rem 0.95rem; font-size: 0.8rem; color: var(--muted); font-weight: 600;
}
.chip[aria-pressed="true"] { background: var(--signal-dim); border-color: var(--signal); color: #147a3d; }

.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
}
.post-thumb {
  height: 150px;
  background:
    repeating-linear-gradient(135deg, var(--paper-dim) 0 10px, var(--white) 10px 20px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em;
  overflow:hidden;
  aspect-ratio:16/9;
}
.post-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.post-card .post-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.post-card .post-meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); text-transform: uppercase; }
.post-card h3 { margin-bottom: 0.2rem; font-size: 1.05rem; }
.post-card .read-more { margin-top: auto; font-size: 0.85rem; font-weight: 700; text-decoration: none; color: var(--ink); display: inline-flex; align-items: center; gap: 0.4rem; }
.post-card .read-more:hover { color: var(--signal); }
.post-card[hidden] { display: none; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block; font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.5rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--paper-dim); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--signal); background: var(--white);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem;}


@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  display: none; background: var(--signal-dim); border: 1px solid var(--signal);
  color: #147a3d; padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 1.3rem;
}
.form-success.visible { display: block; }

.info-card {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 1.5rem;
}
.info-card h3 { color: var(--paper); }
.info-card p { color: #C9CEDB; }
.info-card .addr { font-family: var(--font-mono); font-size: 0.85rem; color: var(--signal); }

.slot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.slot-list li {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 0.75rem 1rem;
  font-size: 0.85rem; background: var(--white);
}
.slot-list .slot-tag {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--signal); background: var(--signal-dim);
  padding: 0.2rem 0.55rem; border-radius: 20px;
}

/* Utility */
.mt-0 { margin-top: 0; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ========================================
   TRUST STRIP
======================================== */

.trust-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-slider {
    overflow: hidden;
    width: 100%;
}

.trust-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.trust-track span {
    flex-shrink: 0;
    margin-right: 80px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================================
   Single Post Breadcrumb
========================================== */

.breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.breadcrumb li:not(:last-child)::after {
    content: "→";
    margin-left: 0.5rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb li[aria-current="page"] {
    color: var(--ink);
}

.author-social-list{
display:flex;
gap:1rem;
list-style:none;
padding:0;
margin-top:1.5rem;
flex-wrap:wrap;
}

.author-social-list li{
margin:0;
}

.author-social-list a{
width:44px;
height:44px;
border:1px solid var(--line);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:var(--ink);
text-decoration:none;
transition:.3s;
background:var(--white);
}

.author-social-list a:hover{
background:var(--ink);
color:var(--white);
border-color:var(--ink);
}

.author-social-list i{
font-size:18px;
}

.post-author-section{
    padding:70px 0;
}

.author-box{
    max-width:900px;
    margin:auto;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:20px;
    padding:40px;
}

.author-header{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.author-avatar img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    display:block;
}

.author-info h3{
    margin:0;
    font-size:1.5rem;
}

.author-role{
    margin-top:6px;
    color:var(--muted);
    font-size:.95rem;
}

.author-box-body p{
    margin-bottom:1.5rem;
    line-height:1.8;
}

.post-author-section{
    padding:50px 0;
}

.social-icons{
    display:flex;
    align-items:center;
    gap:14px;
    list-style:none;
    padding:0;
    margin:1.5rem 0 0;
    flex-wrap:wrap;
}

.social-icons li{
    margin:0;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid var(--line);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--ink);
    background:var(--white);
    text-decoration:none;
    transition:all .25s ease;
}

.social-icons a:hover{
    background:var(--ink);
    color:var(--white);
    border-color:var(--ink);
}

.social-icons i{
    font-size:18px;
}